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

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