seafile_ynh/conf/install.exp
mbugeia d8225afdad Fix update to 5.0.3
Former-commit-id: 82d7ce6d9d
2016-01-02 18:17:44 +01:00

54 lines
1.2 KiB
Text

#!/usr/bin/expect
set timeout 10
set server_name [lindex $argv 0]
set domain [lindex $argv 1]
set seafile_data [lindex $argv 2]
set fileserver_port [lindex $argv 3]
set db_pwd [lindex $argv 4]
spawn /var/www/seafile/seafile-server-5.0.3/setup-seafile-mysql.sh
expect "Press ENTER to continue"
send "\r";
expect "What is the name of the server? It will be displayed on the client."
send "$server_name\r";
expect "What is the ip or domain of the server?"
send "$domain\r";
expect "Where do you want to put your seafile data?"
send "$seafile_data\r";
expect "Which port do you want to use for the seafile fileserver?"
send "$fileserver_port\r";
expect "Use existing ccnet/seafile/seahub databases"
send "2\r";
expect "What is the host of mysql server?"
send "localhost\r";
expect "What is the port of mysql server?"
send "3306\r";
expect "Which mysql user to use for seafile?"
send "seafile\r";
expect "What is the password for mysql user"
send "$db_pwd\r";
expect "Enter the existing database name for ccnet:"
send "ccnetdb\r";
expect "Enter the existing database name for seafile:"
send "seafiledb\r";
expect "Enter the existing database name for seahub:"
send "seahubdb\r";
expect "Press ENTER to continue, or Ctrl-C to abort"
send "\r";
interact