--- # ============================================================================ # Podman + Quadlet prerequisites # ---------------------------------------------------------------------------- # Mirrors the pattern from the semaphore role. Ubuntu 24.04's podman is new # enough that Quadlet ships out of the box (>= 4.4). # ============================================================================ - name: Ensure Podman is installed ansible.builtin.package: name: - podman - podman-compose state: present become: true - name: Ensure Quadlet drop-in directory exists ansible.builtin.file: path: "{{ honcho_quadlet_dir }}" state: directory owner: root group: root mode: "0755" become: true