Skip to content

Commit

Permalink
Release v2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rvwoens committed Aug 24, 2020
1 parent 1534aa3 commit 5aaee26
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -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"
6 changes: 3 additions & 3 deletions parts/00_settings
Original file line number Diff line number Diff line change
@@ -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}"
}


5 changes: 3 additions & 2 deletions parts/12_redis
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5aaee26

Please sign in to comment.