Add startup_error() function to the -lite CLIs

This commit is contained in:
Tom Eastep 2010-11-29 15:44:03 -08:00
parent 195c0cdaca
commit 7d96ad2ffd
2 changed files with 18 additions and 0 deletions

View File

@ -177,6 +177,15 @@ verify_firewall_script() {
fi
}
#
# Fatal error
#
startup_error() {
echo " ERROR: $@" >&2
kill $$
exit 1
}
#
# Start Command Executor
#

View File

@ -176,6 +176,15 @@ verify_firewall_script() {
fi
}
#
# Fatal error
#
startup_error() {
echo " ERROR: $@" >&2
kill $$
exit 1
}
#
# Start Command Executor
#