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
cc4faa63a3
commit
14536887f0
1 changed files with 13 additions and 10 deletions
|
@ -1,29 +1,32 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
source .fonctions
|
||||||
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
app="jappix"
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
# Retrieve arguments
|
# Retrieve arguments
|
||||||
domain=$(sudo yunohost app setting "$app" domain)
|
domain=$(ynh_app_setting_set "$app" domain)
|
||||||
path=$(sudo yunohost app setting "$app" path)
|
path=$(ynh_app_setting_set "$app" path)
|
||||||
name=$(sudo yunohost app setting "$app" name)
|
name=$(ynh_app_setting_set "$app" name)
|
||||||
language=$(sudo yunohost app setting "$app" language)
|
language=$(ynh_app_setting_set "$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%/}
|
path=$(ynh_normalize_url_path $path) # Vérifie et corrige la syntaxe du 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue