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

94 lines
2.9 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
path=$YNH_APP_ARG_PATH
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
#=================================================
2017-03-08 23:32:10 +01:00
ynh_app_setting_set $app name $name
ynh_app_setting_set $app language $language
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app final_path $final_path
#=================================================
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-10-20 23:28:09 +02: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-10-20 23:28:09 +02: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
### `ynh_add_nginx_config` will use the file conf/nginx.conf
2017-03-08 23:32:10 +01:00
2020-11-22 22:02:51 +01:00
# 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