2019-07-29 19:50:23 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-04-09 16:29:42 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-01-29 15:29:42 +01:00
|
|
|
timezone="$(cat /etc/timezone)"
|
|
|
|
redis_db=$(ynh_redis_get_free_db)
|
2022-02-01 16:43:20 +01:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2019-07-29 19:50:23 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-01-29 15:29:42 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=redis_db --value=$redis_db
|
|
|
|
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-02-01 14:42:41 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=7
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
|
2019-07-29 20:06:17 +02:00
|
|
|
#=================================================
|
2023-02-26 16:31:30 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2019-07-29 20:06:17 +02:00
|
|
|
#=================================================
|
2024-08-29 18:17:06 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2019-07-29 20:06:17 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2024-08-29 18:17:06 +02:00
|
|
|
ynh_add_fpm_config
|
2022-12-30 12:09:15 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2024-08-29 18:17:06 +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 20:06:17 +02:00
|
|
|
#=================================================
|
2023-06-29 10:29:58 +02:00
|
|
|
# INSTALL BOOKSTACK WITH COMPOSER
|
2019-07-29 20:06:17 +02:00
|
|
|
#=================================================
|
2024-08-29 18:17:06 +02:00
|
|
|
ynh_script_progression --message="Installing $app with Composer..." --weight=5
|
2019-07-29 20:06:17 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
# Install composer
|
2022-03-02 08:28:16 +01:00
|
|
|
ynh_install_composer
|
2019-07-29 20:06:17 +02:00
|
|
|
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2021-02-01 14:42:41 +01:00
|
|
|
# MODIFY A CONFIG FILE
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2022-01-29 15:29:42 +01:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
app_url_domain="https://$domain${path%/}"
|
2021-02-02 14:21:41 +01:00
|
|
|
|
2024-06-10 18:59:40 +02:00
|
|
|
ynh_add_config --template=.env --destination=$install_dir/.env
|
2023-02-26 16:31:30 +01:00
|
|
|
|
2023-07-06 20:12:23 +02:00
|
|
|
chmod 640 $install_dir/.env
|
2023-02-26 16:31:30 +01:00
|
|
|
chown $app:$app $install_dir/.env
|
2019-07-29 19:50:23 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-02-01 14:42:41 +01:00
|
|
|
# FINAL BOOKSTACK INSTALL
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2024-08-29 18:17:06 +02:00
|
|
|
ynh_script_progression --message="Install $app" --weight=5
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
pushd $install_dir
|
2021-02-01 14:42:41 +01:00
|
|
|
php$phpversion artisan key:generate --no-interaction --force
|
|
|
|
php$phpversion artisan migrate --no-interaction --force
|
2022-02-01 16:43:20 +01:00
|
|
|
php$phpversion artisan bookstack:create-admin --email="$email" --name="$admin" --external-auth-id="$admin"
|
2021-02-01 14:42:41 +01:00
|
|
|
popd
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2023-10-09 10:09:28 +02:00
|
|
|
#=================================================
|
|
|
|
# SET PERMISSIONS
|
|
|
|
#=================================================
|
|
|
|
|
2023-10-09 09:59:07 +02:00
|
|
|
chmod -R o-rwx $install_dir
|
|
|
|
chmod -R 775 $install_dir/storage $install_dir/bootstrap/cache $install_dir/public/uploads
|
|
|
|
chown -R $app:www-data $install_dir
|
|
|
|
|
2022-05-25 18:35:13 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|