93 lines
2.8 KiB
YAML
Raw Normal View History

---
# Mount shares that all systems should have.
- name: General | Account Management | Mounts | Create Test Folder
file:
path: "/mnt/test"
state: directory
mode: '0755'
when: not leet_drive_details.stat.exists
- name: General | Account Management | Mounts | Test SSHFS
2021-02-07 15:19:33 -06:00
shell: "sshfs {{ leet_ssh }}: /mnt/test -o allow_other"
2021-02-07 08:11:28 -06:00
register: sshfs_test
ignore_errors: yes
when: not leet_drive_details.stat.exists
2021-02-07 09:05:57 -06:00
2021-02-07 08:08:43 -06:00
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: "{{ leet_drive }}"
2021-02-01 08:17:50 -06:00
state: directory
mode: '0755'
2021-02-06 07:00:47 -06:00
#TODO Remove this
- name: General | Account Management | Mounts | Create 1337 fstab Comment
lineinfile:
path: /etc/fstab
regexp: '^# MANAGED BY ANSIBLE | Leet Share'
line: '# MANAGED BY ANSIBLE | Leet Share'
2021-02-06 07:00:47 -06:00
state: absent
insertbefore: '^{{ leet_ssh }}'
when: ansible_system == "Linux"
2021-02-06 07:00:47 -06:00
#TODO Remove this
- name: General | Account Management | Mounts | Create 1337 fstab Entry
lineinfile:
path: /etc/fstab
regexp: '^{{ leet_ssh }}'
line: "{{ leet_ssh }}: /mnt/leet fuse.sshfs defaults,_netdev,allow_other,delay_connect 0 0"
2021-02-06 07:00:47 -06:00
state: absent
backup: yes
when: ansible_system == "Linux"
2021-02-07 04:53:50 -06:00
#TODO Remove this
2021-02-07 04:53:50 -06:00
- name: General | Account Management | Mounts | Create 1337 fstab Entry
blockinfile:
path: /etc/fstab
block: |
{{ leet_ssh }}: /mnt/leet fuse.sshfs defaults,_netdev,allow_other,delay_connect 0 0
2021-02-07 04:53:50 -06:00
marker: '# {mark} MANAGED BY ANSIBLE | 1337 Share'
2021-02-07 08:12:17 -06:00
state: absent
2021-02-07 04:53:50 -06:00
backup: yes
when: ansible_system == "Linux"
2021-02-06 07:00:47 -06:00
# Linux uses fstab
- name: General | Account Management | Mounts | Create 1337 fstab Entry
blockinfile:
path: /etc/fstab
block: |
{{ leet_ssh }}: /mnt/leet fuse.sshfs defaults,_netdev,allow_other 0 0
marker: '# {mark} MANAGED BY ANSIBLE | 1337 Share'
state: present
backup: yes
when: ansible_system == "Linux" and
(not sshfs_test.failed or leet_drive_details.stat.exists)
2021-02-06 07:00:47 -06:00
- name: General | Account Management | Mounts | Mount All (Linux)
shell: mount -a
2021-02-02 21:12:44 -06:00
args:
2021-02-02 21:10:56 -06:00
warn: false
2021-02-07 08:11:28 -06:00
when: ansible_system == "Linux" and not sshfs_test.failed
2021-02-03 12:50:29 -06:00
2021-02-06 07:00:47 -06:00
# FreeBSD has to do this via root cron job, fstab is unhappy
- name: General | Account Management | Mounts | Unmount 1337 (FreeBSD)
2021-02-06 07:00:47 -06:00
shell: umount -f /mnt/leet
args:
warn: false
2021-02-07 08:11:28 -06:00
when: ansible_system == "FreeBSD" and not sshfs_test.failed
2021-02-06 07:00:47 -06:00
ignore_errors: yes
- name: General | Account Management | Mounts | Remount 1337 (FreeBSD)
2021-02-06 07:00:47 -06:00
shell: "{{ sshfs_leet_cmd }}"
2021-02-07 15:19:33 -06:00
when: ansible_system == "FreeBSD" and not sshfs_test.failed
# Ensure correct cron jobs and other dependencies are done properly.
- name: General | Account Management | Mounts | Refresh Variable leet_drive_details
stat:
path: "{{ leet_drive }}/Temp/ansible"
register: leet_drive_details