Compare commits

..

No commits in common. "prod" and "v1.0" have entirely different histories.
prod ... v1.0

3 changed files with 10 additions and 38 deletions

View file

@ -1,16 +0,0 @@
# tasks file for mounting binds
- name: create bind directory
ansible.builtin.file:
path: "/var/lib/{{ item.mount }}"
state: directory
mode: '0755'
loop: "{{ bind_mounts }}"
- name: mount bind
ansible.builtin.mount:
path: "{{ item.mount }}"
src: "{{ item.src }}"
fstype: none
opts: bind
state: mounted
loop: "{{ bind_mounts }}"

View file

@ -1,10 +1,4 @@
# tasks file for mounting ext4
- name: mount ext4
ansible.builtin.mount:
path: "{{ item.mount }}"
src: "{{ item.device }}"
fstype: ext4
opts: noatime
state: mounted
loop: "{{ ext4_mounts }}"
- name: test
ansible.builtin.file:
path: /tmp/ext4-{{item.name}}
state: directory

View file

@ -3,10 +3,10 @@
- name: Set up mounts if variable is defined
block:
- include_tasks: ext4.yml
when: mounts.ext4 is defined
vars:
ext4_mounts: "{{ mounts.ext4 }}"
# - include_tasks: ext4.yml
# when: mounts.ext4
# with_items:
# - mounts.ext4
- include_tasks: nfs.yml
when: mounts.nfs is defined
@ -14,13 +14,7 @@
nfs_mounts: "{{ mounts.nfs }}"
# - include_tasks: sshfs.yml
# when: mounts.sshfs is defined
# vars:
# sshfs_mounts: "{{ mounts.sshfs }}"
- include_tasks: bind.yml
when: mounts.bind is defined
vars:
bind_mounts: "{{ mounts.bind }}"
# loop: "{{ mounts }}"
# when: item == "sshfs"
when: mounts is defined