mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
Update upgrade
This commit is contained in:
parent
68239af027
commit
8e126ea0fa
1 changed files with 15 additions and 18 deletions
|
@ -1,47 +1,44 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -eu
|
||||||
|
source .fonctions
|
||||||
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
source ./_common.sh
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
app="jappix"
|
# Récupère les infos de l'application.
|
||||||
|
domain=$(ynh_app_setting_get $app domain)
|
||||||
# Retrieve arguments
|
path=$(ynh_app_setting_get $app path)
|
||||||
domain=$(sudo yunohost app setting "$app" domain)
|
name=$(ynh_app_setting_get "$app" name)
|
||||||
path=$(sudo yunohost app setting "$app" path)
|
language=$(ynh_app_setting_get "$app" language)
|
||||||
name=$(sudo yunohost app setting "$app" name)
|
|
||||||
language=$(sudo yunohost app setting "$app" language)
|
|
||||||
|
|
||||||
# Set default values
|
# Set default values
|
||||||
name="${name:-YunoJappix}"
|
name="${name:-YunoJappix}"
|
||||||
language="${language:-en}"
|
language="${language:-en}"
|
||||||
|
|
||||||
# Remove trailing "/" for next commands
|
# Remove trailing "/" for next commands
|
||||||
path=${path%/}
|
CHECK_PATH
|
||||||
|
|
||||||
# Retrieve sources
|
|
||||||
wget -q -O jappix.tar.gz "$JAPPIX_SOURCE_URL"
|
|
||||||
|
|
||||||
|
#=================================================
|
||||||
# Copy files to the right place
|
# Copy files to the right place
|
||||||
|
#=================================================
|
||||||
|
|
||||||
final_path="/var/www/${app}"
|
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
|
||||||
sudo mkdir -p "${final_path}/store/conf"
|
sudo mkdir -p "${final_path}/store/conf"
|
||||||
sudo tar -C "$final_path" -xf jappix.tar.gz --strip-components 1
|
|
||||||
sudo cp ../conf/*.xml "${final_path}/store/conf/"
|
sudo cp ../conf/*.xml "${final_path}/store/conf/"
|
||||||
|
|
||||||
# Set permissions to jappix directory
|
# Set permissions to jappix directory
|
||||||
sudo chown -R www-data: "$final_path"
|
sudo chown -R www-data: "$final_path"
|
||||||
|
|
||||||
# Set and copy NGINX configuraion
|
# Set and copy NGINX configuraion
|
||||||
sudo sed -i "s@PATHTOCHANGE2@${path}@g" ../conf/nginx.conf
|
|
||||||
path=${path:-/}
|
|
||||||
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
|
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
|
||||||
sudo sed -i "s@ALIASTOCHANGE@${final_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"
|
sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
||||||
|
|
||||||
# Set Jappix configuration
|
# Set Jappix configuration
|
||||||
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/main.xml"
|
|
||||||
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
|
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
|
||||||
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/main.xml"
|
|
||||||
sudo sed -i "s@CHANGELANG@${language}@g" "${final_path}/store/conf/main.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@CHANGENAME@${name}@g" "${final_path}/store/conf/main.xml"
|
||||||
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
|
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
|
||||||
|
|
Loading…
Reference in a new issue