Munin nits: use one-line syntax for apt task, native group name.
authorMatt Birkholz <matt@birchwood-abbey.net>
Tue, 17 Sep 2024 19:38:13 +0000 (13:38 -0600)
committerMatt Birkholz <matt@birchwood-abbey.net>
Tue, 17 Sep 2024 19:38:13 +0000 (13:38 -0600)
README.org
roles_t/abbey-cloister/tasks/main.yml
roles_t/abbey-core/tasks/main.yml

index 88fc8b444f9c72de3b0037f5be5c9bdbf04639de..295b58d7932bfbf2d8b467a913139bcbc153ec28 100644 (file)
@@ -1336,10 +1336,9 @@ trends in resource usage.
 
 - name: Install Munin.
   become: yes
-  apt:
-    pkg: munin
+  apt: pkg=munin
 
-- name: Add {{ ansible_user }} to Munin group.
+- name: Add {{ ansible_user }} to munin group.
   become: yes
   user:
     name: "{{ ansible_user }}"
@@ -1695,10 +1694,9 @@ Each cloistered host is a Munin node.
 
 - name: Install Munin Node.
   become: yes
-  apt:
-    pkg: munin-node
+  apt: pkg=munin-node
 
-- name: Add {{ ansible_user }} to Munin group.
+- name: Add {{ ansible_user }} to munin group.
   become: yes
   user:
     name: "{{ ansible_user }}"
index 1ae7fe4871354db1b0c2ae41cf6db3910ce3e394..6b499eedf7b5739b22c0be7d842593158db0a5c5 100644 (file)
 
 - name: Install Munin Node.
   become: yes
-  apt:
-    pkg: munin-node
+  apt: pkg=munin-node
 
-- name: Add {{ ansible_user }} to Munin group.
+- name: Add {{ ansible_user }} to munin group.
   become: yes
   user:
     name: "{{ ansible_user }}"
index a44eb880557b71571da11c3dcd4cd8e99eec1d92..ddd939e0aaeb202671276d3663e06364be2084d1 100644 (file)
 
 - name: Install Munin.
   become: yes
-  apt:
-    pkg: munin
+  apt: pkg=munin
 
-- name: Add {{ ansible_user }} to Munin group.
+- name: Add {{ ansible_user }} to munin group.
   become: yes
   user:
     name: "{{ ansible_user }}"