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

93 lines
3 KiB
Text
Raw Normal View History

2013-11-29 12:49:27 +01:00
#!/bin/bash
2017-03-08 23:32:10 +01:00
#=================================================
2020-10-20 23:28:09 +02:00
# GENERIC START
2017-03-08 23:32:10 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-10-20 23:28:09 +02:00
source _common.sh
2017-03-08 23:32:10 +01:00
source /usr/share/yunohost/helpers
2017-03-08 23:32:10 +01:00
#=================================================
# MANAGE FAILURE OF THE SCRIPT
#=================================================
2020-10-20 23:28:09 +02:00
ynh_abort_if_errors
2013-11-29 12:49:27 +01:00
2017-03-08 23:32:10 +01:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
2020-11-22 22:11:36 +01:00
path_url=$YNH_APP_ARG_PATH
2017-03-08 23:32:10 +01:00
name=$YNH_APP_ARG_NAME
language=$YNH_APP_ARG_LANGUAGE
app=$YNH_APP_INSTANCE_NAME
2020-10-20 23:28:09 +02:00
2017-03-08 23:32:10 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-11-22 22:11:36 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2020-11-22 22:11:36 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=name --value=$name
ynh_app_setting_set --app=$app --key=language --value=$language
2017-03-08 23:32:10 +01:00
#=================================================
2020-11-22 22:02:51 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2017-03-08 23:32:10 +01:00
#=================================================
2020-11-22 22:02:51 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2017-03-08 23:32:10 +01:00
2020-11-22 22:02:51 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2017-03-08 23:32:10 +01:00
2020-11-22 22:11:36 +01:00
mkdir -p "$final_path/store/conf"
cp ../conf/*.xml "$final_path/store/conf/"
2013-11-29 12:49:27 +01:00
2017-03-08 23:32:10 +01:00
#=================================================
2013-11-29 12:49:27 +01:00
# Set permissions to jappix directory
2017-03-08 23:32:10 +01:00
#=================================================
2020-11-22 22:11:36 +01:00
chown -R www-data: $final_path
2017-03-08 23:32:10 +01:00
#=================================================
2020-11-22 22:02:51 +01:00
# NGINX CONFIGURATION
2017-03-08 23:32:10 +01:00
#=================================================
2020-11-22 22:02:51 +01:00
ynh_script_progression --message="Configuring nginx web server..." --weight=1
# Create a dedicated nginx config
ynh_add_nginx_config
2017-03-08 23:32:10 +01:00
#=================================================
# Validate language
2017-03-08 23:32:10 +01:00
#=================================================
2017-03-08 23:32:10 +01:00
[[ -e "${final_path}/i18n/${language}" ]] \
|| language="en"
2017-03-08 23:32:10 +01:00
#=================================================
# Set Jappix configuration
2017-03-08 23:32:10 +01:00
#=================================================
2020-10-20 23:28:09 +02:00
sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
sed -i "s@CHANGELANG@${language}@g" "${final_path}/store/conf/main.xml"
sed -i "s@CHANGENAME@${name}@g" "${final_path}/store/conf/main.xml"
sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading nginx web server..." -weight=1
ynh_systemd_action --service_name=nginx --action=reload
2017-03-08 23:32:10 +01:00
#=================================================
2020-10-20 23:28:09 +02:00
# END OF SCRIPT
2017-03-08 23:32:10 +01:00
#=================================================
2020-10-20 23:28:09 +02:00
ynh_script_progression --message="Installation of $app completed" --last