spelling: interactive

This commit is contained in:
Josh Soref
2017-10-22 20:24:32 +00:00
parent 70eb03ec29
commit 74fcf6f28d
142 changed files with 283 additions and 283 deletions

View File

@@ -0,0 +1,26 @@
#!/usr/bin/expect
set timeout 5
# I've not been able to put the opening bracket in the regular expressions
# If anyone knows...
spawn /usr/bin/chage myuser1
expect -re "Minimum Password Age .0\]: "
send "13\r"
expect -re "Maximum Password Age .99999\]: "
send "14\r"
expect -re "Last Password Change \[(]YYYY-MM-DD\[)] .2005-07-27\]: "
send "2000-mm-42\r"
expect "chage: error changing fields\r\n"
expect {
eof {
} default {
puts "\nFAIL"
exit 1
}
}
puts "\nPASS"
exit 0