From 94ff9ff04cd4a4dd682633bf224d67f5178dceb0 Mon Sep 17 00:00:00 2001 From: Temur Vibliani Date: Tue, 22 Sep 2015 15:24:19 +0400 Subject: [PATCH] [IMP] Added missed -y option to 'apt-get install' - In order to automate installation, added -y option to "apt-get install" command, as without -y the command enters interactive mode with a question below: "Do you want to continue? [Y/n]" --- V9/odoo_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/V9/odoo_install.sh b/V9/odoo_install.sh index ba0660b..867e5a8 100644 --- a/V9/odoo_install.sh +++ b/V9/odoo_install.sh @@ -68,9 +68,9 @@ echo -e "\n---- Install python libraries ----" sudo pip install gdata echo -e "\n--- Install other required packages" -sudo apt-get install node-clean-css -sudo apt-get install node-less -sudo apt-get install python-gevent +sudo apt-get install node-clean-css -y +sudo apt-get install node-less -y +sudo apt-get install python-gevent -y #-------------------------------------------------- # Install Wkhtmltopdf if needed