root/deployment-scripts/initdb.exp

Revision 89, 323 bytes (checked in by 235, 2 years ago)

release deployment scripts

Line 
1spawn python manage.py syncdb --settings=settings
2
3expect "Would you like to create one now? (yes/no):"
4send "yes\r"
5
6expect "Username (Leave blank to use 'www-data'):"
7send "admin\r"
8
9expect "E-mail address:"
10send "qwe@qwe.com\r"
11
12expect "Password:"
13send "12345\r"
14
15expect "Password (again):"
16send "12345\r"
17
18expect eof
19
20
Note: See TracBrowser for help on using the browser.