From 5aaee26ea8a860a38b9438c7b4635954257d6b40 Mon Sep 17 00:00:00 2001 From: Ronald van Woensel Date: Mon, 24 Aug 2020 23:52:36 +0200 Subject: [PATCH] Release v2.0.11 --- README.md | 6 +++--- VERSION | 4 ++-- parts/00_settings | 6 +++--- parts/12_redis | 5 +++-- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7472c5b..a32cbec 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ The Zero-downtime deployment setup makes it very easy to deploy a product versio ```bash yum -y install tar -curl -s -L https://github.com/rvwoens/centos-laravel-stack/archive/v2.0.10.tar.gz | tar -xz -cd centos-laravel-stack-2.0.10 +curl -s -L https://github.com/rvwoens/centos-laravel-stack/archive/v2.0.11.tar.gz | tar -xz +cd centos-laravel-stack-2.0.11 ./setup_full ``` @@ -66,7 +66,7 @@ Installs node, npm and yarn #### 09 mysql / mariadb installs mariadb and sets it up for production -* MariaDB asks some questions during install, like the root password +* MariaDB asks some questions during install, like the root password to be used #### 10 nginx set up nginx for php-fpm and prepare for multiple virtual hosts with the sites-enabled/sites-available pattern diff --git a/VERSION b/VERSION index 7e36cc0..3872334 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -version=v2.0.10 -date="Mon Aug 24 23:15:27 CEST 2020" +version=v2.0.11 +date="Mon Aug 24 23:52:36 CEST 2020" diff --git a/parts/00_settings b/parts/00_settings index 9126c32..78612d2 100755 --- a/parts/00_settings +++ b/parts/00_settings @@ -1,12 +1,12 @@ #!/bin/bash ## common stuff -RED='\033[0;31m' -GREEN='\033[0;32m' +RED='\033[0;101m' +GREEN='\033[0;102m' NC='\033[0m' logline () { - echo -e "${GREEN} $1 ${NC}" + echo -e "${GREEN} >>>> $1 ${NC}" } diff --git a/parts/12_redis b/parts/12_redis index 2997097..6e8a3a6 100755 --- a/parts/12_redis +++ b/parts/12_redis @@ -5,8 +5,9 @@ logline "12.00 redis START" logline "12.01 Redis Server install" -echo -n "redis installation is optional. Install Redis [y/N]=>" && read doredis -if [ "$doredis" == "y" ]; then +echo -n "redis installation is optional. Install Redis [Y/n]=>" && read doredis +if [ ! "$doredis" == "n" ]; then + logline "12.02 Installing redis" yum -d1 -f install redis systemctl enable redis service redis start