mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
13 lines
347 B
YAML
13 lines
347 B
YAML
---
|
|
- hosts: myrddin.prole.org
|
|
become: true
|
|
tasks:
|
|
- name: Try to mount all filesystems
|
|
ansible.builtin.command: mount -a
|
|
- name: Check if required mount is present
|
|
ansible.builtin.command: findmnt -n /opt/prole/logs/chrisfu
|
|
register: mount_check
|
|
failed_when: false
|
|
- debug:
|
|
var: mount_check.stdout
|