When user mistakenly forgot to pass parameter for a flag, our scripts misparses
next flag as the parameter.
ex) Correct usage is '--ntp-domain <domain> --setup-nic', but passed
'--ntp-domain --setup-nic'.
Result of that, next flag will ignore by scripts.
To prevent such behavior, reject any parameter that start with '--'.
Fixes #2609
Signed-off-by: Takuya ASADA <syuu@scylladb.com>
Message-Id: <20170815114751.6223-1-syuu@scylladb.com>
33 lines
632 B
Bash
Executable File
33 lines
632 B
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Copyright (C) 2015 ScyllaDB
|
|
|
|
print_usage() {
|
|
echo "scylla_developer_mode_setup --developer-mode [0|1]"
|
|
echo " --developer-mode enable/disable developer mode"
|
|
exit 1
|
|
}
|
|
|
|
DEV_MODE=
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
"--developer-mode")
|
|
verify_args $@
|
|
DEV_MODE=$2
|
|
shift 2
|
|
;;
|
|
*)
|
|
print_usage
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ "$DEV_MODE" = "" ]; then
|
|
print_usage
|
|
fi
|
|
if [ "$DEV_MODE" != "0" ] && [ "$DEV_MODE" != "1" ]; then
|
|
print_usage
|
|
fi
|
|
|
|
echo "DEV_MODE=--developer-mode=$DEV_MODE" > /etc/scylla.d/dev-mode.conf
|