No longer need .ansible-lint
All checks were successful
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-fedora) (push) Successful in 9s

This commit is contained in:
2025-08-14 12:45:04 -04:00
parent c9dc337c69
commit 435a5e9141
3 changed files with 55 additions and 5 deletions

View File

@ -23,6 +23,7 @@
- name: Verify mount status
ansible.builtin.command: "ls {{ item }}"
timeout: 5
changed_when: false
register: r_verify_mounts
loop: "{{ nfs_mount_list }}"
loop_control:
@ -36,6 +37,7 @@
- name: Lazily unmount the failed shares
ansible.builtin.command: "umount -f -l {{ item }}"
changed_when: false
register: r_lazy_unmount
async: 30
poll: 0