From 43e20fb15ccdb53b5ab07ae8fffed2fe3dbcb597 Mon Sep 17 00:00:00 2001 From: enoch85 Date: Mon, 25 Jul 2016 23:24:36 +0200 Subject: [PATCH] Ubuntu 16.04.1 --- nextcloud_install_production.sh | 6 +++--- static/phpmyadmin_install_ubuntu16.sh | 6 +++--- static/redis-server-ubuntu16.sh | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/nextcloud_install_production.sh b/nextcloud_install_production.sh index a66219c1..67a0e4e1 100644 --- a/nextcloud_install_production.sh +++ b/nextcloud_install_production.sh @@ -10,7 +10,7 @@ set -e # Nextcloud version STABLEVERSION="nextcloud-9.0.52" # Ubuntu version -DISTRO=$(grep -ic "Ubuntu 16.04 LTS" /etc/lsb-release) +DISTRO=$(grep -ic "Ubuntu 16.04.1 LTS" /etc/lsb-release) # Nextcloud apps CONVER=v1.3.0.0 CONVER_FILE=contacts.tar.gz @@ -58,9 +58,9 @@ fi if [ $DISTRO -eq 1 ] then - echo "Ubuntu 16.04 LTS OK!" + echo "Ubuntu 16.04.1 LTS OK!" else - echo "Ubuntu 16.04 LTS is required to run this script." + echo "Ubuntu 16.04.1 LTS is required to run this script." echo "Please install that distro and try again." exit 1 fi diff --git a/static/phpmyadmin_install_ubuntu16.sh b/static/phpmyadmin_install_ubuntu16.sh index 0b141358..c37623a9 100644 --- a/static/phpmyadmin_install_ubuntu16.sh +++ b/static/phpmyadmin_install_ubuntu16.sh @@ -2,7 +2,7 @@ # Tech and Me, ©2016 - www.techandme.se -DISTRO=$(grep -ic "Ubuntu 16.04 LTS" /etc/lsb-release) +DISTRO=$(grep -ic "Ubuntu 16.04.1 LTS" /etc/lsb-release) PHPMYADMINDIR=/usr/share/phpmyadmin WANIP=$(dig +short myip.opendns.com @resolver1.opendns.com) ADDRESS=$(hostname -I | cut -d ' ' -f 1) @@ -23,9 +23,9 @@ fi if [ $DISTRO -eq 1 ] then - echo "Ubuntu 16.04 LTS OK!" + echo "Ubuntu 16.04.1 LTS OK!" else - echo "Ubuntu 16.04 LTS is required to run this script." + echo "Ubuntu 16.04.1 LTS is required to run this script." echo "Please install that distro and try again." exit 1 fi diff --git a/static/redis-server-ubuntu16.sh b/static/redis-server-ubuntu16.sh index c596307d..790378ee 100644 --- a/static/redis-server-ubuntu16.sh +++ b/static/redis-server-ubuntu16.sh @@ -3,7 +3,7 @@ # Tech and Me - www.techandme.se - ©2016 # Ubuntu 16.04 with php 7 -DISTRO=$(grep -ic "Ubuntu 16.04 LTS" /etc/lsb-release) +DISTRO=$(grep -ic "Ubuntu 16.04.1 LTS" /etc/lsb-release) SCRIPTS=/var/scripts NCPATH=/var/www/nextcloud REDIS_CONF=/etc/redis/redis.conf @@ -16,9 +16,9 @@ REDIS_SOCK=/var/run/redis/redis.sock if [ $DISTRO -eq 1 ] then - echo "Ubuntu 16.04 LTS OK!" + echo "Ubuntu 16.04.1 LTS OK!" else - echo "Ubuntu 16.04 LTS is required to run this script." + echo "Ubuntu 16.04.1 LTS is required to run this script." echo "Please install that distro and try again." exit 1 fi