You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
307 B
YAML

- name: install dnf-automatic
dnf: name=dnf-automatic state=present
- name: configure dnf-automatic
lineinfile:
dest=/etc/dnf/automatic.conf
regexp="^apply_updates"
line="apply_updates = yes"
- name: enable dnf-automatic timer
service: name=dnf-automatic.timer state=started enabled=yes