summaryrefslogtreecommitdiff
path: root/tests/passwd/17_passwd_root_change_password/passwd.exp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/passwd/17_passwd_root_change_password/passwd.exp')
-rwxr-xr-xtests/passwd/17_passwd_root_change_password/passwd.exp22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/passwd/17_passwd_root_change_password/passwd.exp b/tests/passwd/17_passwd_root_change_password/passwd.exp
deleted file mode 100755
index 2696ffbc..00000000
--- a/tests/passwd/17_passwd_root_change_password/passwd.exp
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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