mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
cleaning
This commit is contained in:
parent
0156c030e1
commit
70a2a1ce0c
3 changed files with 10 additions and 7 deletions
|
@ -3,8 +3,9 @@
|
|||
# Exit on command errors and treat unset variables as an error
|
||||
set -eu
|
||||
|
||||
# Charge les fonctions génériques habituellement utilisées dans le script
|
||||
source fonctions
|
||||
TRAP_ON () { # Activate signal capture
|
||||
trap EXIT_PROPERLY ERR # Capturing ex it signals on error
|
||||
}
|
||||
|
||||
# Active trap pour arrêter le script si une erreur est détectée.
|
||||
TRAP_ON
|
||||
|
|
|
@ -6,8 +6,9 @@
|
|||
# Exit on command errors and treat unset variables as an error
|
||||
set -eu
|
||||
|
||||
# Charge les fonctions génériques habituellement utilisées dans le script
|
||||
source fonctions
|
||||
TRAP_ON () { # Activate signal capture
|
||||
trap EXIT_PROPERLY ERR # Capturing ex it signals on error
|
||||
}
|
||||
|
||||
# Active trap pour arrêter le script si une erreur est détectée.
|
||||
TRAP_ON
|
||||
|
@ -33,7 +34,8 @@ basicauthcreate=$(ynh_app_setting_get $app basicauthcreate)
|
|||
# || ynh_die "Path not available: ${domain}${path}"
|
||||
|
||||
# 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
|
||||
sudo mkdir -p $final_path
|
||||
|
|
|
@ -51,8 +51,8 @@ fi
|
|||
|
||||
|
||||
# We install dependencies
|
||||
sudo apt-get update -q -y
|
||||
sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -q -y
|
||||
sudo apt-get update -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
|
||||
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
||||
|
|
Loading…
Reference in a new issue