diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2008-09-25 11:34:43 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2008-09-25 11:34:43 -0700 |
commit | 8397f27caa34ab83a9e4546a10800cffea4397f2 (patch) | |
tree | e1f2ceabeb32cea09a8678f8518b46777da31727 /scripts/standalone_root_pw_reset | |
parent | 5b12b1bc33ccafdbfafdafe71740ccb9e8977cc0 (diff) | |
download | vyatta-cfg-quagga-8397f27caa34ab83a9e4546a10800cffea4397f2.tar.gz vyatta-cfg-quagga-8397f27caa34ab83a9e4546a10800cffea4397f2.zip |
Bugfix: 3515
Accept an encrypted-password field with or without a trailing colon character.
Diffstat (limited to 'scripts/standalone_root_pw_reset')
-rwxr-xr-x | scripts/standalone_root_pw_reset | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/standalone_root_pw_reset b/scripts/standalone_root_pw_reset index 336d534d..65af7e55 100755 --- a/scripts/standalone_root_pw_reset +++ b/scripts/standalone_root_pw_reset @@ -76,7 +76,7 @@ usermod --password "$newpwd" root # escape / in encrypted passwd pw=$(echo $newpwd | sed 's:/:\\/:g') sed -i \ - -e "/^.* user root {/,/}/s/encrypted-password .*\$/encrypted-password \"$pw\"/" \ + -e "/^.* user root {/,/}/s/encrypted-password:* .*\$/encrypted-password \"$pw\"/" \ $CF echo $(date "+%b%e %T") $(hostname) "Root password reset to factory value" \ |