22 lines
318 B
Plaintext
22 lines
318 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
declare -r EXIT_SUCCESS="0"
|
||
|
declare -r EXIT_ERROR="1"
|
||
|
|
||
|
FORCE_REBOOT="no"
|
||
|
|
||
|
function ParseArguments() {
|
||
|
while [ $# -ge 1 ]; do
|
||
|
case "$1" in
|
||
|
-f|--force)
|
||
|
FORCE_REBOOT="yes"
|
||
|
;;
|
||
|
esac
|
||
|
shift
|
||
|
done
|
||
|
}
|
||
|
|
||
|
ParseArguments "$@"
|
||
|
|
||
|
exec /sbin/reboot $@
|