mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
virtlockd: treat SIGHUP like SIGUSR1
SIGHUP is commonly used to instruct a daemon to reload its config. For now we should handle it in virtlockd just like SIGUSR1, rather than having it kill the process. Signed-off-by: Michael Chapman <mike@very.puzzling.org> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
59d6e65d6c
commit
8355d42dd3
@ -590,6 +590,8 @@ virLockDaemonSetupSignals(virNetServerPtr srv)
|
||||
return -1;
|
||||
if (virNetServerAddSignalHandler(srv, SIGUSR1, virLockDaemonExecRestartHandler, NULL) < 0)
|
||||
return -1;
|
||||
if (virNetServerAddSignalHandler(srv, SIGHUP, virLockDaemonExecRestartHandler, NULL) < 0)
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -54,9 +54,9 @@ Display version information then exit.
|
||||
|
||||
=head1 SIGNALS
|
||||
|
||||
On receipt of B<SIGUSR1> virtlockd will re-exec() its binary, while
|
||||
maintaining all current locks and clients. This allows for live
|
||||
upgrades of the virtlockd service.
|
||||
On receipt of B<SIGUSR1> or B<SIGHUP> virtlockd will re-exec() its
|
||||
binary, while maintaining all current locks and clients. This allows
|
||||
for live upgrades of the virtlockd service.
|
||||
|
||||
=head1 FILES
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user