scratch_ynh/scripts/install

108 lines
3.2 KiB
Text
Raw Normal View History

2018-11-29 11:55:24 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
# Retrieve arguments
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-06-27 15:07:50 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2018-11-29 11:55:24 +01:00
# Register (book) web path
2021-06-27 15:07:50 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2018-11-29 11:55:24 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-06-27 15:07:50 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2018-11-29 11:55:24 +01:00
#=================================================
# FIND AND OPEN A PORT
#=================================================
# Find a free port
port=$(ynh_find_port 80)
2021-06-27 15:07:50 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
2018-11-29 11:55:24 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_app_setting_set $app final_path $final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a system user
ynh_system_user_create $app
#=================================================
2021-06-27 15:07:50 +02:00
# SETUP SSOWAT
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
ynh_permission_update --permission="main" --add="visitors"
fi
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# RELOAD NGINX
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# END OF SCRIPT
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
ynh_script_progression --message="Installation of $app completed" --last
2018-11-29 11:55:24 +01:00