puppet: Rename exec resource of systemd_daemon_reload.

This makes it easier to put as a "notify" resource.
This commit is contained in:
Alex Vandiver 2024-02-02 00:49:08 -05:00 committed by Tim Abbott
parent 4947753bfd
commit 1ac6e24eaa
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
class zulip::systemd_daemon_reload {
exec { 'sh -c "! command -v systemctl > /dev/null || systemctl daemon-reload"':
exec { 'reload systemd':
command => 'sh -c "! command -v systemctl > /dev/null || systemctl daemon-reload"',
refreshonly => true,
}
}