mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
68 lines
2.2 KiB
Bash
68 lines
2.2 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Récupère les infos de l'application.
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
path=$(ynh_app_setting_get $app path)
|
|
name=$(ynh_app_setting_get "$app" name)
|
|
language=$(ynh_app_setting_get "$app" language)
|
|
|
|
# Set default values
|
|
name="${name:-YunoJappix}"
|
|
language="${language:-en}"
|
|
|
|
# Remove trailing "/" for next commands
|
|
CHECK_PATH
|
|
|
|
#=================================================
|
|
# Copy files to the right place
|
|
#=================================================
|
|
|
|
final_path="/var/www/${app}"
|
|
ynh_app_setting_set $app final_path $final_path
|
|
SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
|
|
mkdir -p "${final_path}/store/conf"
|
|
cp ../conf/*.xml "${final_path}/store/conf/"
|
|
|
|
# Set permissions to jappix directory
|
|
sudo chown -R www-data: "$final_path"
|
|
|
|
# Set and copy NGINX configuraion
|
|
sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
|
|
sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
|
|
cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
# Set Jappix configuration
|
|
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..." --time --weight=1
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --time --last
|
|
|