mirror of
https://github.com/YunoHost-Apps/horde_ynh.git
synced 2024-09-03 19:16:08 +02:00
13 lines
275 B
Text
13 lines
275 B
Text
|
#!/usr/bin/expect
|
||
|
set timeout 10
|
||
|
|
||
|
set final_path [lindex $argv 0]
|
||
|
set horde_path [lindex $argv 1]
|
||
|
|
||
|
spawn $final_path/pear/pear -c $final_path/pear.conf run-scripts horde/horde_role
|
||
|
|
||
|
expect "Filesystem location for the base Horde application"
|
||
|
send "$horde_path\r";
|
||
|
|
||
|
interact
|