mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-27 16:11:03 +07:00
18 lines
397 B
YAML
18 lines
397 B
YAML
- name: Install packages for automatic upgrade
|
|
ansible.builtin.dnf:
|
|
name:
|
|
- dnf-automatic
|
|
- dnf-utils
|
|
|
|
- name: Copy automatic upgrade config file
|
|
ansible.builtin.copy:
|
|
src: automatic.conf
|
|
dest: /etc/dnf/automatic.conf
|
|
mode: 0644
|
|
|
|
- name: Enable automatic upgrade service
|
|
ansible.builtin.systemd:
|
|
name: dnf-automatic.timer
|
|
state: started
|
|
enabled: true
|