From a8a2dae29ecd1f1ec2a334df980e49ea04ee61b8 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 7 Apr 2010 18:23:49 -0400 Subject: Forgot the -p on the end of the mysql lines...this fixes my previous commit properly --- etherpad/bin/setup-mysql-db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etherpad/bin/setup-mysql-db.sh b/etherpad/bin/setup-mysql-db.sh index 754e089..45901ac 100755 --- a/etherpad/bin/setup-mysql-db.sh +++ b/etherpad/bin/setup-mysql-db.sh @@ -17,9 +17,9 @@ db="etherpad" echo "Creating etherpad ${db}..." -echo "create database ${db};" | ${mysql} -u root +echo "create database ${db};" | ${mysql} -u root -p echo "Granting priviliges..." -echo "grant all privileges on ${db}.* to 'etherpad'@'localhost' identified by 'password';" | ${mysql} -u root +echo "grant all privileges on ${db}.* to 'etherpad'@'localhost' identified by 'password';" | ${mysql} -u root -p echo "Success" -- cgit v1.2.3