2a7d8624cb
Signed-off-by: Mykola Faryma <mykolaf@mellanox.com>
22 lines
318 B
Bash
Executable File
22 lines
318 B
Bash
Executable File
#!/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 $@
|