From 02c74ca1dbfee22cb25f115078809b0aa9aa2314 Mon Sep 17 00:00:00 2001 From: Brady Deetz Date: Sun, 12 Nov 2023 02:55:34 +0000 Subject: [PATCH 1/2] ignore protected mode config option --- templates/redis.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/redis.conf.j2 b/templates/redis.conf.j2 index 04e24a4f..ad109395 100644 --- a/templates/redis.conf.j2 +++ b/templates/redis.conf.j2 @@ -2,7 +2,7 @@ # General daemonize {{ redis_daemonize }} -protected-mode {{ redis_protected_mode }} +#protected-mode {{ redis_protected_mode }} pidfile {{ redis_pidfile }} dir {{ redis_dir }} port {{ redis_port }} @@ -104,4 +104,4 @@ aof-rewrite-incremental-fsync yes {% if redis_config_additional|length -%} # Additional {{ redis_config_additional -}} -{% endif -%} \ No newline at end of file +{% endif -%} From 9a3d61bd33f9e7efeedef66c6cfee7d506fd7389 Mon Sep 17 00:00:00 2001 From: Brady Deetz Date: Sun, 10 Dec 2023 02:05:12 -0600 Subject: [PATCH 2/2] fix includes --- tasks/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 11f3c34f..5e0324b8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,35 +1,35 @@ --- -- include: check_vars.yml +- include_tasks: check_vars.yml -- include: download.yml +- include_tasks: download.yml when: redis_install_from_source tags: - download -- include: dependencies.yml +- include_tasks: dependencies.yml when: redis_install_from_source tags: - install -- include: install.yml +- include_tasks: install.yml when: redis_install_from_source tags: - install -- include: install_from_repo.yml +- include_tasks: install_from_repo.yml when: not redis_install_from_source tags: - install -- include: server.yml +- include_tasks: server.yml when: not redis_sentinel tags: - config -- include: sentinel.yml +- include_tasks: sentinel.yml when: redis_sentinel tags: - config -- include: local_facts.yml +- include_tasks: local_facts.yml when: redis_local_facts|bool