18 lines
360 B
YAML
18 lines
360 B
YAML
---
|
|
- name: Reload rpm-ostree configuration
|
|
ansible.builtin.command:
|
|
cmd: rpm-ostree reload
|
|
become: yes
|
|
|
|
- name: Enable rpm-ostree-automatic
|
|
ansible.builtin.systemd:
|
|
name: rpm-ostreed-automatic.timer
|
|
state: started
|
|
enabled: yes
|
|
become: yes
|
|
|
|
- name: Reload systemd units
|
|
ansible.builtin.systemd:
|
|
daemon_reload: yes
|
|
become: yes
|