mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
21 lines
375 B
Text
21 lines
375 B
Text
#!/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__};
|
|
send '\r';
|
|
|
|
expect "Enter the"
|
|
send {__ADMIN_PASSWORD__};
|
|
send '\r';
|
|
|
|
interact
|