seafile_ynh/conf/first_launch.exp

20 lines
351 B
Text
Raw Normal View History

#!/usr/bin/expect
set timeout 10
set seafile_dir [lindex $argv 0]
set admin_email [lindex $argv 1]
set admin_password [lindex $argv 2]
spawn $seafile_dir/seahub.sh start-fastcgi
expect "for the admin account?"
send "$admin_email\r";
expect "for the admin account?"
send "$admin_password\r";
expect "Enter the"
send "$admin_password\r";
interact