summaryrefslogtreecommitdiff
path: root/muggle-plugin/scripts/createdb.mysql
diff options
context:
space:
mode:
authorlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-10-28 09:57:42 +0000
committerlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-10-28 09:57:42 +0000
commit8d2704774a812cc494aba29a897a9d0d8f8cb06a (patch)
tree50dc8b4f126f2fb209f7d647519fa3cc4d3740ca /muggle-plugin/scripts/createdb.mysql
parentd3870af2451c98923191f2da57571e0aba8723f3 (diff)
downloadvdr-plugin-muggle-8d2704774a812cc494aba29a897a9d0d8f8cb06a.tar.gz
vdr-plugin-muggle-8d2704774a812cc494aba29a897a9d0d8f8cb06a.tar.bz2
Avoid multiline comments as they seem to cause trouble
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@259 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin/scripts/createdb.mysql')
-rwxr-xr-xmuggle-plugin/scripts/createdb.mysql10
1 files changed, 5 insertions, 5 deletions
diff --git a/muggle-plugin/scripts/createdb.mysql b/muggle-plugin/scripts/createdb.mysql
index 7ccdc89..68c12d7 100755
--- a/muggle-plugin/scripts/createdb.mysql
+++ b/muggle-plugin/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;