Merge remote-tracking branch 'origin/Tache3' into Tache3

# Conflicts:
#	ansible/playbook.yml
This commit is contained in:
Alexandre Chevalier
2026-02-13 23:38:17 +01:00
5 changed files with 70 additions and 5 deletions

View File

@@ -53,11 +53,19 @@
port: "{{ http_port }}"
proto: tcp
- name: Create docker project directory
file:
path: "{{ docker_dir_path }}"
state: directory
mode: '0755'
# Munin Configuration
#https://stackoverflow.com/questions/77941169/ansible-add-line-update-etc-hosts-when-outdated
- name: Install Munin Node
ansible.builtin.lineinfile:
path: /etc/munin/munin-node.conf
regexp: '^allow'
line: "allow ^127\\.0\\.0\\.1$"
- name: Restart munin-node
systemd:
name: munin-node
state: restarted
enabled: yes
- name: Create docker compose directory
file: