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

35 lines
1.1 KiB
Text
Raw Normal View History

2014-10-20 18:55:53 +02:00
#!/bin/bash
2020-11-05 19:36:33 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
2020-11-05 20:47:23 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-11-05 21:05:43 +01:00
ynh_script_progression --message="Setting up source files..." --weight=3
2020-11-05 20:47:23 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2020-11-05 20:47:23 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-10-02 10:28:48 +02:00
2020-11-05 20:59:46 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-05 21:05:43 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2020-11-05 19:36:33 +01:00
2020-11-05 20:59:46 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2020-11-05 20:47:23 +01:00
2020-11-05 19:36:33 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-05 21:05:02 +01:00
ynh_script_progression --message="Installation of Laverna completed" --last