19 lines
374 B
YAML
19 lines
374 B
YAML
---
|
|
# tasks file for borgmatic
|
|
|
|
- name: Install stubby
|
|
ansible.builtin.command:
|
|
argv:
|
|
- /usr/bin/rpm-ostree
|
|
- install
|
|
- --allow-inactive
|
|
- --assumeyes
|
|
- --idempotent
|
|
- stubby
|
|
creates: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/stubby
|
|
become: true
|
|
notify: Apply installation
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|