From a90a701c0d437774a52fec2a9f687972caf6b718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dragan=20Mati=C4=87?= Date: Fri, 23 Jan 2015 11:26:18 +0100 Subject: [PATCH] Script for centos7 now also installs 'unzip' package Some virtual server providers (like DigitalOcean) do not have unzip installed in their centos7 image so we need to install it in our script. --- scripts/setup-web2py-centos7.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-web2py-centos7.sh b/scripts/setup-web2py-centos7.sh index 340ac05d..4d28ac06 100644 --- a/scripts/setup-web2py-centos7.sh +++ b/scripts/setup-web2py-centos7.sh @@ -56,7 +56,7 @@ echo yum update # Install required packages -yum install httpd mod_ssl mod_wsgi wget python +yum install httpd mod_ssl mod_wsgi wget python unzip ### ### Phase 2 - Install web2py