| 1234567891011121314151617181920212223242526 |
- #!/usr/bin/env expect
- set timeout -1
- spawn /usr/local/bin/manage.sh
- expect "Would you like to create one now" {
- send "yes\r"
- }
- expect "Username" {
- send "root\r"
- }
- expect "Email address:" {
- send "root.graphite@mailinator.com\r"
- }
- expect "Password:" {
- send "root\r"
- }
- expect "Password *:" {
- send "root\r"
- }
- expect "Superuser created successfully"
|