summaryrefslogtreecommitdiff
path: root/ubuntu/scripts/audit-make-run.exp
blob: aa27c660e70ae1afcb1a781d47dae8ee0050562f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/expect
set timeout -1

spawn passwd eal
expect "Enter new UNIX password:"
send "admin12\n"
expect "Retype new UNIX password:"
send "admin12\n"
spawn make run
expect "Login user password:"
send "admin12\n"
interact
exit