[PATCH 2/3] Use pure yaml format for tasks

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 roles/dnf-automatic/tasks/main.yml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/roles/dnf-automatic/tasks/main.yml b/roles/dnf-automatic/tasks/main.yml
index 2a41f19..eb15a93 100644
--- a/roles/dnf-automatic/tasks/main.yml
+++ b/roles/dnf-automatic/tasks/main.yml
@@ -7,19 +7,26 @@
 #
 
 - name: install dnf-automatic
-  dnf: name=dnf-automatic state=present
+  dnf:
+    name: dnf-automatic
+    state: present
   tags:
   - packages
   when: ansible_distribution == 'Fedora' and ansible_distribution_major_version|int > 21
 
 - name: install /etc/dnf/automatic.conf
-  template: src=automatic.conf.j2 dest=/etc/dnf/automatic.conf mode=0644
+  template:
+    src: automatic.conf.j2
+    dest: /etc/dnf/automatic.conf
+    mode: 0644
   tags:
   - config
   when: ansible_distribution == 'Fedora' and ansible_distribution_major_version|int > 21
 
 - name: enable and start dnf-automatic
-  command: systemctl enable dnf-automatic.timer creates=/etc/systemd/system/basic.target.wants/dnf-automatic.timer
+  command: systemctl enable dnf-automatic.timer
+  args:
+    creates: /etc/systemd/system/basic.target.wants/dnf-automatic.timer
   tags:
   - config
   when: ansible_distribution == 'Fedora' and ansible_distribution_major_version|int > 21
-- 
1.8.3.1
_______________________________________________
infrastructure mailing list
infrastructure@xxxxxxxxxxxxxxxxxxxxxxx
https://lists.fedoraproject.org/admin/lists/infrastructure@xxxxxxxxxxxxxxxxxxxxxxx




[Index of Archives]     [Fedora Development]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Yosemite News]     [KDE Users]

  Powered by Linux