summaryrefslogtreecommitdiff
path: root/scripts/createdb.mysql
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-01-07 18:43:03 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-01-07 18:43:03 +0000
commit0756ae40d68d403082c86adef042a4c0daba219f (patch)
tree6ca3220de192057fc48a22a616445ff8a759c6d5 /scripts/createdb.mysql
parent1823baf159eaa175dd0e5c7ef46fdeeabe92d779 (diff)
downloadvdr-plugin-muggle-0756ae40d68d403082c86adef042a4c0daba219f.tar.gz
vdr-plugin-muggle-0756ae40d68d403082c86adef042a4c0daba219f.tar.bz2
Merged branch osd_extensions back to main trunk
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@324 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'scripts/createdb.mysql')
-rwxr-xr-xscripts/createdb.mysql10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/createdb.mysql b/scripts/createdb.mysql
index 68c12d7..7ccdc89 100755
--- a/scripts/createdb.mysql
+++ b/scripts/createdb.mysql
@@ -1,14 +1,14 @@
--- Creates DB and opens it to any user
--- Run this mysql macro as root!
+/* Creates DB and opens it to any user */
+/* Run this mysql macro as root! */
DROP DATABASE IF EXISTS GiantDisc;
CREATE DATABASE GiantDisc;
use GiantDisc;
--- The first line is useful for granting access to user vdr on all computers in a network.
--- 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 access to user vdr on the local machine */
grant all privileges on GiantDisc.* to vdr@localhost;