feat: add garage specific munin shell scripts

This commit is contained in:
VC
2024-07-05 11:53:37 +02:00
parent 31557c80a2
commit 1da49f8665
6 changed files with 142 additions and 4 deletions

View File

@@ -109,12 +109,17 @@
loop:
- users
# Useless junks for hypervisors
- name: Execute delete states for hypervisors
ansible.builtin.include_tasks: hypervisors.yml
when: "'hypervisors' in group_names"
# Specific LXC commands
- name: Execute specific LXC commands
ansible.builtin.include_tasks: lxc.yml
when: ansible_facts['virtualization_type'] == "lxc"
# Useless junks for hypervisors
- name: Execute delete states for hypervisors
ansible.builtin.include_tasks: hypervisors.yml
when: "'hypervisors' in group_names"
# Specific garage commands
- name: Execute specific garage commands
ansible.builtin.include_tasks: garage.yml
when: "'garagegw' in inventory_hostname"