mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Fix port assignment
This commit is contained in:
parent
16d5f0588f
commit
3c3485a49f
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ test ! -e "$final_path" || ynh_die --message "This path already contains a folde
|
|||
# Find available ports
|
||||
ynh_script_progression --message="Finding available ports..."
|
||||
seahub_port=$(ynh_find_port --port 8000)
|
||||
fileserver_port=$(ynh_find_port --port 8082)
|
||||
webdav_port=$(ynh_find_port --port 8080)
|
||||
fileserver_port=$(ynh_find_port --port $(expr $seahub_port + 1))
|
||||
webdav_port=$(ynh_find_port --port $(expr $fileserver_port + 1))
|
||||
|
||||
# store config in yunohost
|
||||
ynh_script_progression --message="Storing installation settings..."
|
||||
|
|
Loading…
Add table
Reference in a new issue