version 1.8, 2000/12/08 22:08:57
|
version 1.9, 2000/12/08 23:33:36
|
Line 326 if (-e $londfile) {
|
Line 326 if (-e $londfile) {
|
# Possibility #3: there is a live process that is not responding |
# Possibility #3: there is a live process that is not responding |
# for an unknown reason |
# for an unknown reason |
# Solution: kill process, remove .pid and restart |
# Solution: kill process, remove .pid and restart |
kill 2 => $londpid; |
`killall -9 lond`; |
unlink($londfile); |
unlink($londfile); |
$restartflag=1; |
$restartflag=1; |
} |
} |
Line 428 if (-e $loncfile) {
|
Line 428 if (-e $loncfile) {
|
# Possibility #3: there is a live process that is not responding |
# Possibility #3: there is a live process that is not responding |
# for an unknown reason |
# for an unknown reason |
# Solution: kill process, remove .pid and restart |
# Solution: kill process, remove .pid and restart |
kill 2 => $loncpid; |
`killall -9 lonc`; |
unlink($loncfile); |
unlink($loncfile); |
$restartflag=1; |
$restartflag=1; |
} |
} |