From a342af9ed8621388e0b11e3e946937fa0e0938af Mon Sep 17 00:00:00 2001 From: Azlux Date: Fri, 4 Mar 2022 15:34:41 +0100 Subject: [PATCH] Fix ansible variable name --- ansible_playbook/install_log2ram.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible_playbook/install_log2ram.yml b/ansible_playbook/install_log2ram.yml index c7c997d..157b215 100644 --- a/ansible_playbook/install_log2ram.yml +++ b/ansible_playbook/install_log2ram.yml @@ -61,8 +61,8 @@ backrefs: true loop: - {regexp: '^SIZE=(.*)$', line: 'SIZE={{ log2ram_size }}'} - - {regexp: 'USE_RSYNC=(.*)$', line: 'SIZE={{ log2ram_use_rsync }}'} - - {regexp: '^MAIL=(.*)$', line: 'SIZE={{ log2ram_mail }}'} + - {regexp: 'USE_RSYNC=(.*)$', line: 'USE_RSYNC={{ log2ram_use_rsync }}'} + - {regexp: '^MAIL=(.*)$', line: 'MAIL={{ log2ram_mail }}'} - {regexp: '^PATH_DISK=(.*)$', line: 'PATH_DISK="{{ log2ram_path_disk }}"'} - {regexp: '^ZL2R=(.*)$', line: 'ZL2R={{ log2ram_use_z2lr|lower }}'} - {regexp: '^COMP_ALG=(.*)$', line: 'COMP_ALG={{ log2ram_comp_alg }}'}