Skip to content

Commit 65dfa4f

Browse files
authoredOct 23, 2024··
Reload daemons for Logstash restart (#347)
Reload unit files when restart Logstash via handler. We're running the handler for upgrades of the package, not only when changing configuration. This might make reloads a bit slower but it seems to be the only chance to deal with changes in the Logstash unit file. We're not managing this file with the collection, so changing it manually is fine. If someone does, we need to reload the unit file. We *could* introduce a separate handler. One for upgrades of the package that does the daemon reload and another without reload for regular configuration changes. @frankhetterich @afeefghannam89 @martialblog what do you think? I went for one handler which does it all but that's just a suggestion so far. Thank you, @frankhetterich for the bug report and the suggested fix. fixes #342
1 parent 15ad2ea commit 65dfa4f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎roles/logstash/handlers/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
ansible.builtin.service:
55
name: logstash
66
state: restarted
7+
daemon-reload: true
78
when:
89
- logstash_enable | bool
910
- not logstash_freshstart.changed | bool
@@ -12,4 +13,5 @@
1213
ansible.builtin.service:
1314
name: logstash
1415
state: restarted
16+
daemon-reload: true
1517
when: not logstash_config_autoreload and logstash_enable | bool

0 commit comments

Comments
 (0)
Please sign in to comment.