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

36 lines
1.1 KiB
Text
Raw Permalink Normal View History

2014-08-18 18:37:19 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-05-28 02:23:15 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2020-05-28 02:23:15 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-05-30 17:51:26 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2020-05-28 02:23:15 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-09 23:53:24 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-12-06 12:36:06 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2020-12-06 12:36:06 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Installation of $app completed" --last