diff options
| author | spmfox <spmfox@foxwd.com> | 2023-11-16 10:52:21 -0500 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2023-11-16 10:52:21 -0500 |
| commit | 46605d0b074c14c6f87b499bf5c1971e3b7d4a0e (patch) | |
| tree | e47d6594c089b4d9998c8196763ab4b862ad4b90 /host.yml | |
| parent | e4c804eca792ab1e8fa981b0ec7f6603c82a2833 (diff) | |
adding quotations
Diffstat (limited to 'host.yml')
| -rw-r--r-- | host.yml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,13 +4,13 @@ tasks: - name: Create containers user ansible.builtin.user: - name: containers + name: "containers" - name: Install systemd-container and podman ansible.builtin.package: name: - - systemd-container - - podman + - "systemd-container" + - "podman" state: present - name: Confirm systemd-linger is set for containers user @@ -61,14 +61,14 @@ - name: Create new tmp directory for podman ansible.builtin.file: - path: /var/containers/tmp + path: "/var/containers/tmp" owner: containers group: containers state: directory - name: Configure podman to use new tmp directory ansible.builtin.blockinfile: - path: /etc/containers/containers.conf + path: "/etc/containers/containers.conf" create: true block: | [engine] |
