added some more fatal exit codes

This commit is contained in:
Gunter Labes 2009-07-13 19:55:39 +00:00
parent 6557de32b2
commit 79f34fa53a

View File

@ -81,6 +81,6 @@ do
# check for return code if not zero or 98 (port in use) the server should be restarted
case $EXIT_CODE in
0) exit ;;
98) dietail ;; #Could not bind to port
98|127|128) dietail ;; #Could not bind to port #Command not found #Invalid argument to exit
esac
done