summarylogtreecommitdiffstats
path: root/netinstall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'netinstall.sh')
-rw-r--r--netinstall.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/netinstall.sh b/netinstall.sh
index 033a87a382ee..c6493c66e1db 100644
--- a/netinstall.sh
+++ b/netinstall.sh
@@ -10,16 +10,24 @@ function help() {
echo "usage: ${0} [OPTIONS]"
echo
echo "where OPTIONS are:"
+ echo " -b remove branding"
+ echo " -e apply empty configuration"
echo " -h show this help"
echo " -i INTERFACE install via INTERFACE"
echo " -k KEYFILE use KEYFILE"
echo " -p PACKAGE install PACKAGE"
- echo " -r reset configuration"
+ echo " -r apply default configuration"
echo " -s SCRIPT run script"
}
-while getopts "hi:k:p:rs:" opt; do
+while getopts "behi:k:p:rs:" opt; do
case ${opt} in
+ b)
+ OPTIONS+=(-b)
+ ;;
+ e)
+ OPTIONS+=(-e)
+ ;;
h)
help
exit 0