mirror of
https://github.com/YunoHost-Apps/galene_ynh.git
synced 2024-09-03 18:36:31 +02:00
fix
This commit is contained in:
parent
f0b6ace554
commit
0fca15ef60
4 changed files with 10 additions and 4 deletions
|
@ -4,8 +4,11 @@
|
||||||
{"username": "", "password": ""},
|
{"username": "", "password": ""},
|
||||||
{"username": "", "password": ""}
|
{"username": "", "password": ""}
|
||||||
],
|
],
|
||||||
|
"contact": "__EMAIL__",
|
||||||
|
"comment": "Public Conference",
|
||||||
|
"description": "a human-readable description of the group; this is displayed on the landing page for public groups.",
|
||||||
|
"autolock": true,
|
||||||
"public": true,
|
"public": true,
|
||||||
"description": "This is displayed on the landing page for public groups.",
|
|
||||||
"max-clients": 20,
|
"max-clients": 20,
|
||||||
"max-history-age": 14400,
|
"max-history-age": 14400,
|
||||||
"allow-recording": true,
|
"allow-recording": true,
|
||||||
|
@ -14,3 +17,4 @@
|
||||||
"redirect": "",
|
"redirect": "",
|
||||||
"codecs": ["vp8", "opus"]
|
"codecs": ["vp8", "opus"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ ynh_abort_if_errors
|
||||||
domain=$YNH_APP_ARG_DOMAIN
|
domain=$YNH_APP_ARG_DOMAIN
|
||||||
path_url="/"
|
path_url="/"
|
||||||
admin=$YNH_APP_ARG_ADMIN
|
admin=$YNH_APP_ARG_ADMIN
|
||||||
|
email=$(ynh_user_get_info "$admin" mail)
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
ynh_print_OFF
|
ynh_print_OFF
|
||||||
password=$YNH_APP_ARG_PASSWORD
|
password=$YNH_APP_ARG_PASSWORD
|
||||||
|
@ -66,7 +67,7 @@ ynh_script_progression --message="Creating a dhparam file..." --weight=3
|
||||||
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
||||||
# For any update do it in all files
|
# For any update do it in all files
|
||||||
|
|
||||||
# Make dh cert for Galène if it doesn't exist
|
# Make dhparam cert for Galène if it doesn't exist
|
||||||
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
||||||
then
|
then
|
||||||
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
||||||
|
@ -210,6 +211,7 @@ ynh_replace_string --match_string=__PASSWORD__ --replace_string=$password --targ
|
||||||
cp ../conf/groupname.json $final_path/groups/$group_name.json
|
cp ../conf/groupname.json $final_path/groups/$group_name.json
|
||||||
ynh_replace_string --match_string=__ADMIN__ --replace_string=$admin --target_file="$final_path/groups/$group_name.json"
|
ynh_replace_string --match_string=__ADMIN__ --replace_string=$admin --target_file="$final_path/groups/$group_name.json"
|
||||||
ynh_replace_string --match_string=__PASSWORD__ --replace_string=$password --target_file="$final_path/groups/$group_name.json"
|
ynh_replace_string --match_string=__PASSWORD__ --replace_string=$password --target_file="$final_path/groups/$group_name.json"
|
||||||
|
ynh_replace_string --match_string=__EMAIL__ --replace_string=$email --target_file="$final_path/groups/$group_name.json"
|
||||||
|
|
||||||
cp ../conf/ice-servers.json $final_path/data/ice-servers.json
|
cp ../conf/ice-servers.json $final_path/data/ice-servers.json
|
||||||
ynh_replace_string --match_string=__DOMAIN__ --replace_string=$domain --target_file="$final_path/data/ice-servers.json"
|
ynh_replace_string --match_string=__DOMAIN__ --replace_string=$domain --target_file="$final_path/data/ice-servers.json"
|
||||||
|
|
|
@ -114,7 +114,7 @@ ynh_script_progression --message="Creating a dhparam file..." --weight=3
|
||||||
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
||||||
# For any update do it in all files
|
# For any update do it in all files
|
||||||
|
|
||||||
# Make dh cert for synapse if it doesn't exist
|
# Make dhparam cert for Galène if it doesn't exist
|
||||||
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
||||||
then
|
then
|
||||||
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
||||||
|
|
|
@ -146,7 +146,7 @@ ynh_script_progression --message="Creating a dhparam file..." --weight=3
|
||||||
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
||||||
# For any update do it in all files
|
# For any update do it in all files
|
||||||
|
|
||||||
# Make dh cert for Galène if it doesn't exist
|
# Make dhparam cert for Galène if it doesn't exist
|
||||||
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
if [ ! -e /etc/ssl/private/dh2048.pem ]
|
||||||
then
|
then
|
||||||
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
ynh_exec_warn_less openssl dhparam -out /etc/ssl/private/dh2048.pem -outform PEM -2 2048 -dsaparam
|
||||||
|
|
Loading…
Reference in a new issue