mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-30 21:41:53 +08:00
7 lines
276 B
YAML
7 lines
276 B
YAML
---
|
|
- name: Restart dnf-automatic timer
|
|
ansible.builtin.systemd:
|
|
name: "{{ 'dnf5-automatic.timer' if (ansible_distribution_major_version | int >= 41 and ansible_distribution == 'Fedora') else 'dnf-automatic-install.timer' }}"
|
|
state: restarted
|
|
daemon_reload: yes
|