21 lines
505 B
YAML
Raw Normal View History

---
# Mount shares that all systems should have.
2021-02-02 21:28:17 -06:00
- name: General | Account Management | Mounts | Create 1337 Folder
2021-02-01 08:17:50 -06:00
file:
path: /mnt/leet
state: directory
mode: '0755'
2021-02-02 21:28:17 -06:00
- name: General | Account Management | Mounts | Create fstab Entries
blockinfile:
path: /etc/fstab
block: |
ling@leet: /mnt/leet fuse.sshfs defaults,_netdev,allow_other,delay_connect 0 0
backup: yes
2021-02-02 21:28:17 -06:00
- name: General | Account Management | Mounts | Mount All
shell: mount -a
2021-02-02 21:12:44 -06:00
args:
2021-02-02 21:10:56 -06:00
warn: false