mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
options at the end for apt-get
This commit is contained in:
parent
72989fee64
commit
38fa4ab89f
2 changed files with 4 additions and 4 deletions
|
@ -51,8 +51,8 @@ finalphpconf="/etc/php5/fpm/pool.d/${app}.conf"
|
|||
ynh_app_setting_set "$app" finalphpconf "$finalphpconf"
|
||||
|
||||
# We install dependencies
|
||||
sudo apt-get update --quiet --assume-yes
|
||||
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
|
||||
|
||||
# Creation of folder
|
||||
#sudo rm -rf $final_path
|
||||
|
|
|
@ -51,8 +51,8 @@ fi
|
|||
|
||||
|
||||
# We install dependencies
|
||||
sudo apt-get update --quiet --assume-yes
|
||||
sudo apt-get install --quiet --assume-yes php5-gd php5-sqlite php5-json php5-intl
|
||||
sudo apt-get update -q -y
|
||||
sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -q -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