From d92ec3fd510c6cf7635940d38f367fee17b26b56 Mon Sep 17 00:00:00 2001 From: "pulsar89.5" Date: Sun, 30 Mar 2025 07:45:21 +0200 Subject: [PATCH] fix: Change installation task for CoreOS --- handlers/main.yml | 7 +++++++ tasks/installation-atomic_container.yml | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) 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