renaming vars after roles name organization

This commit is contained in:
2025-09-23 21:56:57 +01:00
parent 499fccf977
commit 60b3b58c55
4 changed files with 5 additions and 7 deletions

View File

@@ -11,8 +11,6 @@
} }
} }
mode: '0644' mode: '0644'
when: docker_log_driver == 'json-file' when: docker_log_driver == 'json-file'
notify: notify:
- Restart Docker - Restart Docker

View File

@@ -1,2 +1,2 @@
--- ---
mylimbo_docker_log_driver: json-file docker_log_driver: json-file

View File

@@ -4,7 +4,7 @@
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/systemd/journald.conf path: /etc/systemd/journald.conf
regexp: 'SystemMaxUse=' regexp: 'SystemMaxUse='
line: "SystemMaxUse={{ mylimbo_journald_system_max_use }}" line: "SystemMaxUse={{ journald_system_max_use }}"
notify: notify:
- restart service - restart service
@@ -14,6 +14,6 @@
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/systemd/journald.conf path: /etc/systemd/journald.conf
regexp: 'SystemMaxFileSize=' regexp: 'SystemMaxFileSize='
line: "SystemMaxFileSize={{ mylimbo_journald_system_max_file_size }}" line: "SystemMaxFileSize={{ journald_system_max_file_size }}"
notify: notify:
- restart service - restart service

View File

@@ -1,2 +1,2 @@
mylimbo_journald_system_max_use: 100M journald_system_max_use: 100M
mylimbo_journald_system_max_file_size: 2M journald_system_max_file_size: 2M