Remove password parser

This commit is contained in:
Thomas Gebert 2025-07-24 15:48:08 +02:00
parent 492e906432
commit 26fa3016fd

View File

@ -119,14 +119,6 @@ while :; do
die 'ERROR: "-u|--user" requires a non-empty option argument.'
fi
;;
-p|--password) # Takes an option argument; ensure it has been specified.
if [ "$2" ]; then
NEW_PASSWORD=$2
shift
else
die 'ERROR: "-u|--user" requires a non-empty option argument.'
fi
;;
--) # End of all options.
shift
break