1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/shuri_ynh.git synced 2024-09-03 20:16:20 +02:00
shuri_ynh/scripts/install

48 lines
1.4 KiB
Text
Raw Normal View History

2017-03-11 19:16:28 +01:00
#!/bin/bash
2018-10-28 21:24:13 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-11-26 10:48:51 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2018-10-28 21:24:13 +01:00
#=================================================
2022-03-29 10:27:15 +02:00
ynh_script_progression --message="Setting up source files..." --weight=2
2021-11-26 10:48:51 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2023-09-26 23:59:18 +02:00
ynh_setup_source --dest_dir="$install_dir"
2018-10-28 21:24:13 +01:00
2023-09-26 23:59:18 +02:00
mkdir "$install_dir/db"
2022-03-29 09:59:44 +02:00
2023-09-26 23:59:18 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-11-26 10:48:51 +01:00
2018-10-28 21:24:13 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2018-10-28 21:24:13 +01:00
2021-11-26 10:48:51 +01:00
# Create a dedicated NGINX config
2018-10-28 21:24:13 +01:00
ynh_add_nginx_config
2021-11-26 10:48:51 +01:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2022-03-29 09:56:16 +02:00
#=================================================
2022-03-29 10:08:14 +02:00
# INSTALL SHURI WITH COMPOSER
2022-03-29 09:56:16 +02:00
#=================================================
ynh_script_progression --message="Installing $app with Composer..." --weight=15
ynh_install_composer
2021-11-26 10:48:51 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2018-10-28 21:24:13 +01:00
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Installation of $app completed" --last