summaryrefslogtreecommitdiff
path: root/scripts/createdb.mysql
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-06 15:08:33 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-06 15:08:33 +0000
commita649b791972980a387b66ddf9898d62c098eb4fd (patch)
tree1256021ce23e5351ba3fbe450f3516d225c8cc26 /scripts/createdb.mysql
parent4cbf6f3589b64b9ab431d74ff499856af07a648d (diff)
downloadvdr-plugin-muggle-a649b791972980a387b66ddf9898d62c098eb4fd.tar.gz
vdr-plugin-muggle-a649b791972980a387b66ddf9898d62c098eb4fd.tar.bz2
Removed database creation stuff which is now done by mugglei
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@545 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'scripts/createdb.mysql')
-rwxr-xr-xscripts/createdb.mysql16
1 files changed, 2 insertions, 14 deletions
diff --git a/scripts/createdb.mysql b/scripts/createdb.mysql
index 7ccdc89..da1234a 100755
--- a/scripts/createdb.mysql
+++ b/scripts/createdb.mysql
@@ -1,14 +1,2 @@
-/* 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@'%'; */
-
-/* Grant access to user vdr on the local machine */
-grant all privileges on GiantDisc.* to vdr@localhost;
-
+-- NO LONGER NEEDED.
+-- SEE README \ No newline at end of file