diff options
| author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-01-07 18:43:03 +0000 |
|---|---|---|
| committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-01-07 18:43:03 +0000 |
| commit | 5c251c8ea5da34006d5f137e441b7b27564ca871 (patch) | |
| tree | cacfcbd4355ec48c53df21e1b91fef00a4274d4a /muggle-plugin/scripts/createdb.mysql | |
| parent | 143f8226f52755aa9b845e7772cedd9d76d3a0e8 (diff) | |
| download | vdr-plugin-muggle-5c251c8ea5da34006d5f137e441b7b27564ca871.tar.gz vdr-plugin-muggle-5c251c8ea5da34006d5f137e441b7b27564ca871.tar.bz2 | |
Merged branch osd_extensions back to main trunk
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@324 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin/scripts/createdb.mysql')
| -rwxr-xr-x | muggle-plugin/scripts/createdb.mysql | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/muggle-plugin/scripts/createdb.mysql b/muggle-plugin/scripts/createdb.mysql index 68c12d7..7ccdc89 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; |
