20 lines
397 B
YAML
20 lines
397 B
YAML
|
- name: Install dnf-automatic package
|
||
|
dnf:
|
||
|
name: dnf-automatic
|
||
|
state: present
|
||
|
|
||
|
- name: Update config file
|
||
|
lineinfile:
|
||
|
backup: true
|
||
|
path: /etc/dnf/automatic.conf
|
||
|
line: "apply_updates = yes"
|
||
|
regexp: "^apply_updates.*"
|
||
|
state: present
|
||
|
|
||
|
- name: Enable service
|
||
|
service:
|
||
|
name: dnf-automatic.timer
|
||
|
enabled: yes
|
||
|
state: started
|
||
|
|