From 26fa3016fdb7c053e44de6a48ddd2694261ef021 Mon Sep 17 00:00:00 2001 From: Thomas Gebert Date: Thu, 24 Jul 2025 15:48:08 +0200 Subject: [PATCH] Remove password parser --- password-change-tool/change-user-password.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/password-change-tool/change-user-password.sh b/password-change-tool/change-user-password.sh index c13cd55..53418a2 100644 --- a/password-change-tool/change-user-password.sh +++ b/password-change-tool/change-user-password.sh @@ -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