diff --git a/handlers/main.yml b/handlers/main.yml index c13356a..eb93844 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -1,6 +1,13 @@ --- # handlers file for drone_runner_exec +- name: Apply installation + ansible.builtin.command: + argv: + - /usr/bin/rpm-ostree + - apply-live + become: true + - name: Restart drone-runner-exec.service ansible.builtin.systemd: enabled: true diff --git a/tasks/installation-atomic_container.yml b/tasks/installation-atomic_container.yml index 8c8e808..998d1e8 100644 --- a/tasks/installation-atomic_container.yml +++ b/tasks/installation-atomic_container.yml @@ -4,7 +4,7 @@ - name: Install prerequisites ansible.builtin.command: argv: "{{ rpm_ostree + drone_runner_exec_prerequisites }}" - creates: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/borgmatic + creates: "{{ [creates_path] | product(drone_runner_exec_prerequisites) | map('join') | list }}" become: true vars: rpm_ostree: @@ -13,6 +13,7 @@ - --allow-inactive - --assumeyes - --idempotent + creates_path: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/borgmatic notify: Apply installation - name: Flush handlers