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

89 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
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-03-08 23:32:10 +01:00
source .fonctions
source /usr/share/yunohost/helpers
2017-03-08 23:32:10 +01:00
#=================================================
# MANAGE FAILURE OF THE SCRIPT
#=================================================
2017-03-08 23:32:10 +01:00
ynh_check_error # Active trap pour arrêter le script si une erreur est détectée.
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
#=================================================
2013-11-29 12:49:27 +01:00
# Check domain/path availability
2017-03-08 23:32:10 +01:00
#=================================================
CHECK_PATH # Vérifie et corrige la syntaxe du path.
CHECK_DOMAINPATH
CHECK_FINALPATH # Vérifie que le dossier de destination n'est pas déjà utilisé.
2013-11-29 20:02:46 +01: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
#=================================================
2013-11-29 12:49:27 +01:00
# Copy files to the right place
2017-03-08 23:32:10 +01:00
#=================================================
SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
sudo mkdir -p "${final_path}/store/conf"
sudo 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
#=================================================
sudo chown -R www-data: "$final_path"
2017-03-08 23:32:10 +01:00
#=================================================
# Set and copy NGINX configuraion
2017-03-08 23:32:10 +01:00
#=================================================
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
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
#=================================================
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
sudo sed -i "s@CHANGELANG@${language}@g" "${final_path}/store/conf/main.xml"
sudo sed -i "s@CHANGENAME@${name}@g" "${final_path}/store/conf/main.xml"
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
2017-03-08 23:32:10 +01:00
#=================================================
# Reload services
2017-03-08 23:32:10 +01:00
#=================================================
2013-11-29 12:49:27 +01:00
sudo service nginx reload