diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-10-27 16:19:39 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-10-27 16:19:39 -0700 |
commit | 7eb77325198a86ae8e34d4b96016ba7298f38471 (patch) | |
tree | 3f893a8b3f985302c469d9235af9d59fb31f3131 | |
parent | 97e23b56c529e4ee772f9cdd123753f25418bda7 (diff) | |
download | vyatta-cfg-system-7eb77325198a86ae8e34d4b96016ba7298f38471.tar.gz vyatta-cfg-system-7eb77325198a86ae8e34d4b96016ba7298f38471.zip |
Make standalone passwd reset change vyatta not root
Now that root is gone, only the vyatta account should be reset
-rwxr-xr-x | scripts/standalone_root_pw_reset | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/scripts/standalone_root_pw_reset b/scripts/standalone_root_pw_reset index f08bf7d6..d7507d3b 100755 --- a/scripts/standalone_root_pw_reset +++ b/scripts/standalone_root_pw_reset @@ -14,7 +14,7 @@ # All Rights Reserved. # # Author: Bob Gilligan <gilligan@vyatta.com> -# Description: Standalone script to set the root passwd to new value +# Description: Standalone script to set the admin passwd to new value # value. Note: This script can ONLY be run as a standalone # init program by grub. # @@ -23,6 +23,9 @@ # The Vyatta config file: CF=/opt/vyatta/etc/config/config.boot +# Admin user name +ADMIN=vyatta + change_password() { local user=$1 local pwd1="1" @@ -63,21 +66,18 @@ fi # OK, now we know we are running in standalone mode. Talk to the # user. # -echo "Do you wish to reset the root password" -echo -n "to the original default value (vyatta)? (Yes/No) [No]: " +echo "Do you wish to reset the admin password?" read response response=${response:0:1} - if [ "$response" != "y" -a "$response" != "Y" ]; then - echo "OK, the root password will not be reset." + echo "OK, the admin password will not be reset." echo -n "Rebooting in 5 seconds..." sleep 5 echo /sbin/reboot -f fi - -echo "Starting process to reset the root password..." +echo "Starting process to reset the admin password..." echo "Re-mounting root filesystem read/write..." mount -o remount,rw / @@ -89,14 +89,21 @@ then mount /opt/vyatta/etc/config/ fi +if ! grep -q " user $ADMIN " $CF +then + echo "Administrator account $ADMIN missing..." + exit 1 +fi + echo "Saving backup copy of config.boot..." cp $CF ${CF}.before_pwrecovery -echo "Setting the root password..." +echo "Setting the administrator ($ADMIN) password..." +change_password $ADMIN -echo $(date "+%b%e %T") $(hostname) "Root password changed" \ +echo $(date "+%b%e %T") $(hostname) "Admin password changed" \ | tee -a /var/log/auth.log >>/var/log/messages - + sync echo "System will reboot in 10 seconds..." |