summaryrefslogtreecommitdiff
path: root/scripts/createdb.mysql
diff options
context:
space:
mode:
authorlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-08-29 14:39:33 +0000
committerlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-08-29 14:39:33 +0000
commit068ea169c5d357d192b35c3544f4f9e90be96b29 (patch)
tree697fa57a3197f9326b6f0357b764bced789aed82 /scripts/createdb.mysql
parent27a9843da016ffb5d2d36f03b3ae20776528989b (diff)
downloadvdr-plugin-muggle-068ea169c5d357d192b35c3544f4f9e90be96b29.tar.gz
vdr-plugin-muggle-068ea169c5d357d192b35c3544f4f9e90be96b29.tar.bz2
Import running in basic version
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@127 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'scripts/createdb.mysql')
-rwxr-xr-xscripts/createdb.mysql7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/createdb.mysql b/scripts/createdb.mysql
index b68d90c..7ccdc89 100755
--- a/scripts/createdb.mysql
+++ b/scripts/createdb.mysql
@@ -3,7 +3,12 @@
DROP DATABASE IF EXISTS GiantDisc;
CREATE DATABASE GiantDisc;
+
use GiantDisc;
-grant all privileges on GiantDisc.* to vdr@'%';
+
+/* The first line is useful for granting access to user vdr on all computers in a network. */
+/* grant all privileges on GiantDisc.* to vdr@'%'; */
+
+/* Grant access to user vdr on the local machine */
grant all privileges on GiantDisc.* to vdr@localhost;