role_drone_runner_exec/tasks/installation-atomic_container.yml

21 lines
553 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
# tasks file for borgmatic
- name: Install prerequisites
ansible.builtin.command:
argv: "{{ rpm_ostree + drone_runner_exec_prerequisites }}"
creates: "{{ [creates_path] | product(drone_runner_exec_prerequisites) | map('join') | list }}"
become: true
vars:
rpm_ostree:
- /usr/bin/rpm-ostree
- install
- --allow-inactive
- --assumeyes
- --idempotent
creates_path: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/borgmatic
notify: Apply installation
- name: Flush handlers
meta: flush_handlers