revbank/plugins/sighup
2023-11-02 03:12:17 +01:00

8 lines
160 B
Text

# Attempt to restart on SIGHUP
$SIG{HUP} = sub {
call_hooks("restart_exec");
no warnings qw(exec);
exec $0;
call_hooks("restart_survived");
};