mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
d8225afdad
Former-commit-id: 82d7ce6d9d
54 lines
1.2 KiB
Text
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
|