1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bookstack_ynh.git synced 2024-09-03 18:16:02 +02:00
bookstack_ynh/scripts/upgrade
Éric Gaspar b8681ef056
Testing (#112)
* 22.06

* Auto-update README

* Update manifest.json

* Fix

* 22.06.1

* Auto-update README

* Update upgrade

* 22.06.2

* Auto-update README

* Update app.src

* Update DESCRIPTION.md

* Auto-update README

* Update nginx.conf

* Update .env.example.complete

* Update .env.example.complete

* Update install

* Revert "Update install"

This reverts commit e43db7a0de.

* 22.07.1 (#80)

* 22.07.1

* Auto-update README

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Auto-update README

* Auto-update README

* 22.07.2 (#82)

* 22.07.2

* Auto-update README

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* 22.07.3 (#84)

* 22.07.3

* Auto-update README

* Update manifest.json

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Update upgrade

* 22.09 (#88)

* 22.09

* Auto-update README

* Update app.src

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* 22.09.1

* Auto-update README

* upgrade composer

* upgrade config (#91)

* Update manifest.json

* Auto-update README

* Update upgrade

* 22.10

* Auto-update README

* 22.10.1

* 22.11

* Auto-update README

* 22.11.1

* Auto-update README

* Upgrade to version 22.11.1 (#100)

* Upgrade to v22.11.1

* Auto-update README

Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>

* Fis php (#102)

* Update upgrade

* reorder script

* Update manifest.json

* Auto-update README

* Update restore

* Fix size

* Auto-update README

* Update DESCRIPTION_fr.md

* Auto-update README

* Fix

* 23.01

* Auto-update README

* PHP8.1

* 23.01.1

* Auto-update README

* Upgrade auto-updater (#108)

* [autopatch] Upgrade auto-updater

* Auto-update README

---------

Co-authored-by: tituspijean <titus@pijean.ovh>

* V2 (#107)

* Auto-update README

* v2

* Fix

* Update manifest.toml

* Update manifest.toml

* Fix

* Create post_install.md

* Fix

* Auto-update README

* Update install

* Update config_panel.toml

* Update manifest.toml

* Update _common.sh

* Update tests.toml

* Add post

* Update manifest.toml

* Update remove

* Update install

* Update _common.sh

* Fix

* Update change_url

* Update upgrade

* Auto-update README

* cleaning

* remove PHP version

* Update _common.sh

* Update manifest.toml

* Fix

* fix

* Update manifest.toml

* Update manifest.toml

* Update upgrade

* Update manifest.toml

* 23.02

* Auto-update README

* Update change_url

* Update change_url

* Update upgrade

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Fix

* Auto-update README

* Update manifest.toml

* fix

* Update manifest.toml

* Update manifest.toml

* Auto-update README

* new autoupdate

* cleaning

* Update manifest.toml

* Update manifest.toml

* Auto-update README

* cleaning

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: tituspijean <titus@pijean.ovh>
2023-04-09 16:29:42 +02:00

120 lines
3.8 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# If fpm_footprint doesn't exist, create it
if [ -z "${fpm_footprint:-}" ]; then
fpm_footprint=low
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_free_footprint doesn't exist, create it
if [ -z "${fpm_free_footprint:-}" ]; then
fpm_free_footprint=0
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
fi
# If fpm_usage doesn't exist, create it
if [ -z "${fpm_usage:-}" ]; then
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
# If auth_method doesn't exist, create it
if [ -z "${auth_method:-}" ]; then
auth_method="standard"
ynh_app_setting_set --app=$app --key=auth_method --value=$auth_method
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --keep=".env public/uploads storage/uploads"
fi
chmod -R o-rwx $install_dir
chown -R $app:www-data $install_dir
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
yunohost service add $app --description="BookStack Queue Worker" --log="/var/log/$app/$app.log"
#=================================================
# INSTALL LYCHEE WITH COMPOSER
#=================================================
ynh_script_progression --message="Installing BookStack with Composer..." --weight=5
# Install composer
ynh_install_composer
#=================================================
# MODIFY A CONFIG FILE
#=================================================
#ynh_script_progression --message="Adding a configuration file..." --weight=1
#timezone="$(cat /etc/timezone)"
#app_url_domain="https://$domain${path%/}"
#ynh_add_config --template=../conf/.env.example --destination=$install_dir/.env
#=================================================
# FINAL BOOKSTACK INSTALL
#=================================================
ynh_script_progression --message="Install BookStack" --weight=5
pushd $install_dir
php$phpversion artisan migrate --force
php$phpversion artisan key:generate --force
php$phpversion artisan cache:clear
php$phpversion artisan config:clear
php$phpversion artisan view:clear
popd
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last