1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/friendica_ynh.git synced 2024-09-03 18:36:14 +02:00

Merge pull request #123 from YunoHost-Apps/maintenance

Maintenance
This commit is contained in:
OniriCorpe 2024-02-11 22:00:34 +01:00 committed by GitHub
commit 63292f7c1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 34 additions and 32 deletions

View file

@ -7,7 +7,7 @@ description.fr = "Réseau social décentralisé"
version = "2023.12~ynh1"
maintainers = []
maintainers = [ "" ]
[upstream]
license = "AGPL-3.0-only"
@ -51,11 +51,13 @@ ram.runtime = "50M"
[resources.sources.main]
url = "https://github.com/friendica/friendica/archive/refs/tags/2023.12.tar.gz"
sha256 = "d55475628ae24aab1ee7ed3367d22b2fd3ee49200b5da276c69e97df2afbd943"
autoupdate.strategy = "latest_github_tag"
autoupdate.strategy = "latest_github_release"
[resources.sources.addons]
url = "https://github.com/friendica/friendica-addons/archive/refs/tags/2023.12.tar.gz"
sha256 = "d0228833584dd7dc0301ee04bd41728345c8051d84908849dea52ed04a7c8982"
autoupdate.upstream = "https://github.com/friendica/friendica-addons"
autoupdate.strategy = "latest_github_tag"
[resources.system_user]

View file

@ -15,9 +15,9 @@ source /usr/share/yunohost/helpers
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
(cd $install_dir && ynh_exec_as "$app" php$phpversion bin/console.php maintenance 1)
(cd "$install_dir" && ynh_exec_as "$app" "php$phpversion" bin/console.php maintenance 1)
trap "(cd $install_dir && ynh_exec_as "$app" php$phpversion bin/console.php maintenance 0)" EXIT
trap '(cd $install_dir && ynh_exec_as $app php$phpversion bin/console.php maintenance 0)' EXIT
#=================================================
# BACKUP THE APP MAIN DIR

View file

@ -13,7 +13,7 @@ source /usr/share/yunohost/helpers
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
email=$(ynh_user_get_info --username=$admin --key=mail)
email=$(ynh_user_get_info --username="$admin" --key=mail)
timezone=$(cat /etc/timezone)
#=================================================
@ -21,7 +21,7 @@ timezone=$(cat /etc/timezone)
#=================================================
ynh_script_progression --message="Storing installation settings..." --weight=1
ynh_app_setting_set --app=$app --key=email --value=$email
ynh_app_setting_set --app="$app" --key=email --value="$email"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
@ -36,7 +36,7 @@ mkdir -p "$install_dir/view/smarty3"
chmod -R 775 "$install_dir/view/smarty3"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chown -R "$app:www-data" "$install_dir"
#=================================================
# SYSTEM CONFIGURATION
@ -49,7 +49,7 @@ ynh_add_fpm_config
# Create a dedicated nginx config
ynh_add_nginx_config
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
@ -65,7 +65,7 @@ ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failreg
ynh_script_progression --message="Adding the LDAP Auth addon configuration file..." --weight=1
# LDAP addon config
ynh_add_config --template="../conf/addon.config.php" --destination="$install_dir/config/addon.config.php"
ynh_add_config --template="addon.config.php" --destination="$install_dir/config/addon.config.php"
#=================================================
# INSTALL FRIENDICA
@ -74,15 +74,15 @@ ynh_script_progression --message="Install Friendica..." --weight=1
pushd "$install_dir"
# Import Composer dependencies
ynh_exec_as "$app" php$phpversion bin/composer.phar install --no-dev --quiet
ynh_exec_as "$app" "php$phpversion" bin/composer.phar install --no-dev --quiet
# Install application
ynh_exec_as "$app" php$phpversion bin/console.php autoinstall\
ynh_exec_as "$app" "php$phpversion" bin/console.php autoinstall\
--dbhost "localhost" --dbdata "$db_name" --dbuser "$db_user" --dbpass "$db_pwd"\
--admin "$email" --tz "$timezone" --lang "$language" --url "https://$domain$path"
# Enable LDAP Auth addon
ynh_exec_as "$app" php$phpversion bin/console.php addon enable ldapauth
ynh_exec_as "$app" "php$phpversion" bin/console.php addon enable ldapauth
popd

View file

@ -17,7 +17,7 @@ ynh_script_progression --message="Restoring the app main directory..." --weight=
ynh_restore_file --origin_path="$install_dir"
chown -R $app:www-data "$install_dir"
chown -R "$app:www-data" "$install_dir"
chmod -R 775 "$install_dir/view/smarty3"
#=================================================
@ -25,7 +25,7 @@ chmod -R 775 "$install_dir/view/smarty3"
#=================================================
ynh_script_progression --message="Restoring the MySQL database..." --weight=1
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < ./db.sql
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
@ -53,7 +53,7 @@ ynh_restore_file --origin_path="/etc/cron.d/$app"
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
ynh_systemd_action --service_name="php$phpversion-fpm" --action=reload
ynh_systemd_action --service_name=nginx --action=reload
@ -62,7 +62,7 @@ ynh_systemd_action --service_name=nginx --action=reload
#==============
# exit maintenance mode since the app was backed up while in maintenance mode
(cd $install_dir && ynh_exec_as "$app" php$phpversion bin/console.php maintenance 0)
(cd "$install_dir" && ynh_exec_as "$app" "php$phpversion" bin/console.php maintenance 0)
#=================================================
# END OF SCRIPT

View file

@ -20,7 +20,7 @@ upgrade_type=$(ynh_check_app_version_changed)
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
@ -36,7 +36,7 @@ then
fi
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chown -R "$app:www-data" "$install_dir"
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
@ -51,7 +51,7 @@ ynh_add_fpm_config
ynh_use_logrotate --non-append
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
@ -64,8 +64,8 @@ ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failreg
# Run Composer
pushd "$install_dir"
ynh_exec_as "$app" php$phpversion bin/composer.phar install --no-dev --quiet
ynh_exec_as "$app" php$phpversion bin/console.php dbstructure update
ynh_exec_as "$app" "php$phpversion" bin/composer.phar install --no-dev --quiet
ynh_exec_as "$app" "php$phpversion" bin/console.php dbstructure update
popd
#=================================================