From 33af7561882425e6e1a2d3ed56e46f2c5a10033f Mon Sep 17 00:00:00 2001 From: spmfox Date: Tue, 15 Apr 2025 15:00:52 -0400 Subject: support for remote jobs, support for more host config, quadlet logic tweaking --- roles/host/tasks/mounts.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 roles/host/tasks/mounts.yml (limited to 'roles/host/tasks/mounts.yml') diff --git a/roles/host/tasks/mounts.yml b/roles/host/tasks/mounts.yml new file mode 100644 index 0000000..05ddcc0 --- /dev/null +++ b/roles/host/tasks/mounts.yml @@ -0,0 +1,9 @@ +- name: Manage mounts + ansible.posix.mount: + path: "{{ item.path }}" + src: "{{ item.src }}" + fstype: "{{ item.fstype }}" + opts: "{{ item.opts }}" + state: "{{ item.state }}" + loop: "{{ host_mounts }}" + when: host_mounts is defined -- cgit