Files
silverblue-playbook/roles/rpm-ostree/handlers/main.yml
2021-10-23 10:12:45 +02:00

18 lines
358 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