1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cops_ynh.git synced 2024-09-03 18:25:57 +02:00
This commit is contained in:
polytan02 2016-12-23 14:30:13 +00:00
parent 0156c030e1
commit 70a2a1ce0c
3 changed files with 10 additions and 7 deletions

View file

@ -3,8 +3,9 @@
# Exit on command errors and treat unset variables as an error # Exit on command errors and treat unset variables as an error
set -eu set -eu
# Charge les fonctions génériques habituellement utilisées dans le script TRAP_ON () { # Activate signal capture
source fonctions trap EXIT_PROPERLY ERR # Capturing ex it signals on error
}
# Active trap pour arrêter le script si une erreur est détectée. # Active trap pour arrêter le script si une erreur est détectée.
TRAP_ON TRAP_ON

View file

@ -6,8 +6,9 @@
# Exit on command errors and treat unset variables as an error # Exit on command errors and treat unset variables as an error
set -eu set -eu
# Charge les fonctions génériques habituellement utilisées dans le script TRAP_ON () { # Activate signal capture
source fonctions trap EXIT_PROPERLY ERR # Capturing ex it signals on error
}
# Active trap pour arrêter le script si une erreur est détectée. # Active trap pour arrêter le script si une erreur est détectée.
TRAP_ON TRAP_ON
@ -33,7 +34,8 @@ basicauthcreate=$(ynh_app_setting_get $app basicauthcreate)
# || ynh_die "Path not available: ${domain}${path}" # || ynh_die "Path not available: ${domain}${path}"
# We install dependencies # We install dependencies
sudo apt-get install --quiet --assume-yes php5-gd php5-sqlite php5-json php5-intl sudo apt-get update -y
sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -y
# Restore sources & data # Restore sources & data
sudo mkdir -p $final_path sudo mkdir -p $final_path

View file

@ -51,8 +51,8 @@ fi
# We install dependencies # We install dependencies
sudo apt-get update -q -y sudo apt-get update -y
sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -q -y sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -y
# Modify Nginx configuration file and copy it to Nginx conf directory # Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf