From 0314ed5c5ebd0279cbc09a43fa5b6c7537410eac Mon Sep 17 00:00:00 2001 From: Shannon Warren Date: Sun, 5 Feb 2017 05:17:00 -0600 Subject: [PATCH] Update mariadb to 10.2.* to work with laravel 5.4 --- scripts/install-maria.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install-maria.sh b/scripts/install-maria.sh index 53a03a330..6b08e85a9 100644 --- a/scripts/install-maria.sh +++ b/scripts/install-maria.sh @@ -22,16 +22,16 @@ rm -rf /etc/mysql # Add Maria PPA apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 -add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://ftp.osuosl.org/pub/mariadb/repo/10.1/ubuntu xenial main' +add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://ftp.osuosl.org/pub/mariadb/repo/10.2/ubuntu xenial main' apt-get update # Set The Automated Root Password export DEBIAN_FRONTEND=noninteractive -debconf-set-selections <<< "mariadb-server-10.1 mysql-server/data-dir select ''" -debconf-set-selections <<< "mariadb-server-10.1 mysql-server/root_password password secret" -debconf-set-selections <<< "mariadb-server-10.1 mysql-server/root_password_again password secret" +debconf-set-selections <<< "mariadb-server-10.2 mysql-server/data-dir select ''" +debconf-set-selections <<< "mariadb-server-10.2 mysql-server/root_password password secret" +debconf-set-selections <<< "mariadb-server-10.2 mysql-server/root_password_again password secret" # Install MariaDB