From fc08bdd80cdd18f6f5e03ef2382cc95d48809ae2 Mon Sep 17 00:00:00 2001 From: magikcypress Date: Mon, 17 Apr 2017 02:04:18 +0200 Subject: [PATCH] [fix] always public + fix upgrade --- conf/nginx.conf | 4 ++-- manifest.json | 9 --------- scripts/install | 17 +---------------- scripts/upgrade | 33 +++++++++++++-------------------- sources/source_dir | 2 +- sources/source_md5 | 2 +- sources/source_url | 2 +- 7 files changed, 19 insertions(+), 50 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 5ce3d7a..d8f0904 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -6,8 +6,8 @@ location / { try_files $uri @proxy; - #--PRIVATE--# Include SSOWAT user panel. - #--PRIVATE--include conf.d/yunohost_panel.conf.inc; + # Include SSOWAT user panel. + include conf.d/yunohost_panel.conf.inc; } location @proxy { diff --git a/manifest.json b/manifest.json index 0152f9f..97ab963 100644 --- a/manifest.json +++ b/manifest.json @@ -57,15 +57,6 @@ }, "choices": ["en_EN", "fr_FR"], "default": "fr_FR" - }, - { - "name": "is_public", - "ask": { - "en": "Mastodon is it public?", - "fr": "Mastodon est-il public ?" - }, - "choices": ["Yes", "No"], - "default": "Yes" } ] } diff --git a/scripts/install b/scripts/install index b78cb47..d99ffe2 100644 --- a/scripts/install +++ b/scripts/install @@ -17,7 +17,6 @@ domain=$YNH_APP_ARG_DOMAIN admin_mastodon=$YNH_APP_ARG_ADMIN admin_pass=$YNH_APP_ARG_PASSWD language=$YNH_APP_ARG_LANGUAGE -is_public=$YNH_APP_ARG_IS_PUBLIC app=$YNH_APP_INSTANCE_NAME @@ -33,7 +32,6 @@ ynh_app_setting_set $app domain $domain ynh_app_setting_set $app admin $admin_mastodon ynh_app_setting_set $app pass $admin_pass ynh_app_setting_set $app language $language -ynh_app_setting_set $app is_public $is_public # Create user unix sudo adduser $app --home /opt/$app --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --disabled-login @@ -94,7 +92,7 @@ CLONECOMMANDS # Be king rewind (/var/cache/yunohost/from_file/scripts) popd -# Get Mastodon last version +# # Get Mastodon last version # sudo mkdir "${final_path}/live" # SETUP_SOURCE # sudo chown -R $app: "${final_path}" @@ -191,19 +189,6 @@ sudo sed -i "s@__APP__@$app@g" /etc/cron.d/$app # Restart crontab sudo systemctl restart cron -# Private or not -if [ "$is_public" = "Yes" ]; -then - sudo sed -i "s@#--PRIVATE--@@g" /etc/nginx/conf.d/$domain.d/$app.conf -fi - -# Setup SSOwat -ynh_app_setting_set "$app" is_public "$is_public" -if [ "$is_public" = "Yes" ]; -then - ynh_app_setting_set "$app" unprotected_uris "/" -fi - # Reload SSOwat configuration sudo yunohost app ssowatconf diff --git a/scripts/upgrade b/scripts/upgrade index 771b98b..367ee94 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -13,12 +13,12 @@ app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get "$app" domain) path=$(ynh_app_setting_get "$app" path) admin=$(ynh_app_setting_get "$app" admin) -is_public=$(ynh_app_setting_get "$app" is_public) +language=$(ynh_app_setting_get "$app" language) CHECK_PATH # Checks and corrects the syntax of the path. # Check if admin is not null -if [[ "$admin" = "" || "$is_public" = "" || "$language" = "" ]]; then +if [[ "$admin" = "" || "$language" = "" ]]; then echo "Unable to upgrade, please contact support" ynh_die fi @@ -32,29 +32,22 @@ sudo sed -i "s@__PATH__@$app@g" ../conf/nginx.conf* sudo sed -i "s@__FINALPATH__@$final_path/@g" ../conf/nginx.conf* # Stop Mastodon Services -sudo systemctl stop /etc/systemd/system/mastodon-*.service +sudo systemctl stop mastodon-*.service # Update Mastodon sudo su - $app <