2019-07-29 19:50:23 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_app_setting_set_default --key=php_upload_max_filesize --value=256M
|
|
|
|
|
|
|
|
ynh_app_setting_set_default --key=php_memory_limit --value=256M
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace --keep=".env public/uploads storage/uploads"
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
2023-02-26 16:31:30 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
|
|
|
ynh_config_add_phpfpm
|
2022-12-30 12:09:15 +01:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_config_add_nginx
|
2022-12-30 12:09:15 +01:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_config_add_systemd
|
2023-02-26 16:31:30 +01:00
|
|
|
|
2024-08-29 17:44:37 +02:00
|
|
|
yunohost service add $app --description="Platform to create documentation/wiki content" --log="/var/log/$app/$app.log"
|
2023-02-26 16:31:30 +01:00
|
|
|
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2021-03-02 22:07:25 +01:00
|
|
|
# INSTALL LYCHEE WITH COMPOSER
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Installing BookStack with Composer..."
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_composer_install
|
|
|
|
ynh_composer_exec install --no-dev
|
2022-02-01 16:43:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
#ynh_script_progression "Adding $app's configuration..."
|
2022-02-01 16:43:20 +01:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
#timezone="$(cat /etc/timezone)"
|
|
|
|
#app_url_domain="https://$domain${path%/}"
|
2022-02-01 16:43:20 +01:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
#ynh_config_add --template=.env --destination=$install_dir/.env
|
2021-02-01 14:42:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FINAL BOOKSTACK INSTALL
|
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Install BookStack"
|
2021-02-01 14:42:41 +01:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
pushd $install_dir
|
2024-09-01 13:59:23 +02:00
|
|
|
php$php_version artisan migrate --force
|
|
|
|
php$php_version artisan key:generate --force
|
|
|
|
php$php_version artisan cache:clear
|
|
|
|
php$php_version artisan config:clear
|
|
|
|
php$php_version artisan view:clear
|
2021-02-01 14:42:41 +01:00
|
|
|
popd
|
|
|
|
|
2023-10-09 10:09:28 +02:00
|
|
|
#=================================================
|
|
|
|
# SET PERMISSIONS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
chmod -R 775 $install_dir/storage $install_dir/bootstrap/cache $install_dir/public/uploads
|
|
|
|
|
2022-05-25 18:35:13 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2022-05-25 18:35:13 +02:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_systemctl --service=$app --action="start" --log_path="systemd"
|
2022-05-25 18:35:13 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2024-09-01 13:59:23 +02:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|