hifis-net / ansible-role-redis

:warning: PLEASE NOTE: This role has been migrated to our hifis.toolkit collection. :warning: Ansible role for setting up a highly available Redis cluster.
https://galaxy.ansible.com/hifis/toolkit
Other
3 stars 2 forks source link

Adapt Redis config template due to changes after restart of Redis service #19

Closed christianhueserhzdr closed 1 year ago

christianhueserhzdr commented 2 years ago

Mostly, quotations have been changed in redis.conf:

-loglevel notice
-dir "/var/lib/redis"
+loglevel "notice"
+dir /var/lib/redis/

-rdbcompression yes
+rdbcompression "yes"

-dbfilename "dump.rdb"
+dbfilename dump.rdb

-appendonly no
-appendfsync everysec
+appendonly "no"
+appendfsync "everysec"

-protected-mode yes
+protected-mode "yes"
tobiashuste commented 1 year ago

Is this still relevant, @christianhueserhzdr ?

christianhueserhzdr commented 1 year ago

No, there is no need to keep this issue open. I'll close it now. Thanks!