summaryrefslogtreecommitdiff
path: root/tests/passwd/17_passwd_root_change_password/passwd.exp
blob: 2696ffbc2d0ed7ff410a4b2200bf91d2bdc310c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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