aboutsummaryrefslogtreecommitdiffstats
path: root/travis/setup-mariadb.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis/setup-mariadb.sh')
-rwxr-xr-xtravis/setup-mariadb.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/travis/setup-mariadb.sh b/travis/setup-mariadb.sh
index 68359e400a..2e974da8eb 100755
--- a/travis/setup-mariadb.sh
+++ b/travis/setup-mariadb.sh
@@ -24,3 +24,10 @@ sudo apt-get update -qq
sudo debconf-set-selections <<< "mariadb-server-$VERSION mysql-server/root_password password rootpasswd"
sudo debconf-set-selections <<< "mariadb-server-$VERSION mysql-server/root_password_again password rootpasswd"
sudo apt-get install -qq mariadb-server
+
+# Set root password to empty string.
+echo "
+USE mysql;
+UPDATE user SET Password = PASSWORD('') where User = 'root';
+FLUSH PRIVILEGES;
+" | mysql -u root -prootpasswd