diff --git a/README.md b/README.md index 4188f7f..5e7c222 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ Galène is a videoconferencing server that is easy to deploy (just copy a few fi #### Multi-user support - * Are LDAP and HTTP auth supported? - * Can the app be used by multiple users? + * Are LDAP and HTTP auth supported? **No** + * Can the app be used by multiple users? **Yes** #### Supported architectures @@ -49,9 +49,6 @@ Galène is a videoconferencing server that is easy to deploy (just copy a few fi * Other info you would like to add about this app. -**More info on the documentation page:** -https://yunohost.org/packaging_apps - ## Links * Report a bug: https://github.com/YunoHost-Apps/galene_ynh/issues diff --git a/README_fr.md b/README_fr.md index 43aeb45..a4c1496 100644 --- a/README_fr.md +++ b/README_fr.md @@ -33,8 +33,8 @@ Galène est un serveur de visioconférence facile à déployer (il suffit de cop #### Support multi-utilisateur -* L'authentification LDAP est-elle prise en charge ? -* L'application peut-elle être utilisée par plusieurs utilisateurs ? +* L'authentification LDAP est-elle prise en charge ? **Non** +* L'application peut-elle être utilisée par plusieurs utilisateurs ? **Oui** #### Supported architectures diff --git a/conf/systemd.service b/conf/systemd.service index 88914a9..cc2d126 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,5 +1,5 @@ [Unit] -Description=Galene +Description=Galene: videoconferencing server After=network.target [Service] diff --git a/scripts/install b/scripts/install index 9db57da..8237dca 100755 --- a/scripts/install +++ b/scripts/install @@ -179,7 +179,7 @@ ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$ap #================================================= # SETUP SSOWAT #================================================= -ynh_script_progression --message="Configuring SSOwat..." --weight=2 +ynh_script_progression --message="Configuring permissions..." --weight=2 # Make app public if necessary if [ $is_public -eq 1 ] diff --git a/scripts/upgrade b/scripts/upgrade index 48baf61..a5f88e0 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -95,7 +95,7 @@ then ynh_exec_warn_less openssl req -newkey rsa:2048 -nodes -keyout data/key.pem -x509 -days 365 -out data/cert.pem \ -subj "/C=/ST=/L=/O=/OU=/CN=/emailAddress=" chmod 640 data/{key.pem,cert.pem} - popd + popd fi #================================================= @@ -129,19 +129,6 @@ ynh_script_progression --message="Upgrading systemd configuration..." --weight=1 # Create a dedicated systemd config ynh_add_systemd_config -#================================================= -# MODIFY A CONFIG FILE -#================================================= - -# ### Verify the checksum of a file, stored by `ynh_store_file_checksum` in the install script. -# ### And create a backup of this file if the checksum is different. So the file will be backed up if the admin had modified it. -# ynh_backup_if_checksum_is_different --file="$final_path/CONFIG_FILE" - -# ynh_replace_string --match_string="match_string" --replace_string="replace_string" --target_file="$final_path/CONFIG_FILE" - -# # Recalculate and store the checksum of the file for the next upgrade. -# ynh_store_file_checksum --file="$final_path/CONFIG_FILE" - #================================================= # GENERIC FINALIZATION #=================================================