shadow/tests/passwd/17_passwd_root_change_password/passwd.exp

23 lines
438 B
Plaintext
Raw Normal View History

#!/usr/bin/expect
set timeout 2
expect_after default {puts "\nFAIL"; exit 1}
spawn /bin/sh
send "if \[ \$(id -u) -eq 0 \]; then PS1='# '; else PS1='$ '; fi\r"
expect "# "
send "passwd\r"
expect "Enter new UNIX password: "
send "rootpassword\r"
expect "Retype new UNIX password: "
send "rootpassword\r"
expect "passwd: password updated successfully"
expect "# "
send "echo \$?\r"
expect "0"
expect "# "
send "exit\r"
puts "OK\n"
exit 0