mirror of
https://gitea.0xace.cc/ansible-galaxy/redis.git
synced 2025-07-03 13:03:08 +00:00
fix templating with blockinline and include within redis.conf
This commit is contained in:
16
handlers/main.yaml
Normal file
16
handlers/main.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
- name: Restart redis
|
||||
throttle: 1
|
||||
ansible.builtin.systemd:
|
||||
state: restarted
|
||||
daemon_reload: yes
|
||||
name: redis-server
|
||||
when: start_redis is not changed
|
||||
|
||||
- name: Restart redis-sentinel
|
||||
throttle: 1
|
||||
ansible.builtin.systemd:
|
||||
state: restarted
|
||||
daemon_reload: yes
|
||||
name: redis-sentinel
|
||||
when: start_redis_sentinel is not changed
|
Reference in New Issue
Block a user