8 lines
160 B
Text
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");
|
|
};
|