summaryrefslogtreecommitdiffstats
path: root/business/xtuple/init.sql
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:04 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:04 +0200
commitf6707bef60bd2bc2da51f786d1aefddd3b7bc648 (patch)
tree929f1b532f53c35aac2eeabfa525abba8e6a71f7 /business/xtuple/init.sql
parentccd0f5d5ce99278323532d87650805f472e1a235 (diff)
downloadslackbuilds-f6707bef60bd2bc2da51f786d1aefddd3b7bc648.tar.gz
slackbuilds-f6707bef60bd2bc2da51f786d1aefddd3b7bc648.tar.xz
business/xtuple: Removed from 13.0 repository
Diffstat (limited to 'business/xtuple/init.sql')
-rw-r--r--business/xtuple/init.sql21
1 files changed, 0 insertions, 21 deletions
diff --git a/business/xtuple/init.sql b/business/xtuple/init.sql
deleted file mode 100644
index 9076151b68..0000000000
--- a/business/xtuple/init.sql
+++ /dev/null
@@ -1,21 +0,0 @@
---
--- This script creates the group openmfg and the user mfgadmin
---
-
---
--- Create the openmfg group
---
-CREATE GROUP openmfg;
-
---
--- Create the mfgadmin user with createdb and createuser
--- permissions. Place the user in the openmfg group and
--- set the password to the default of mfgadmin.
---
-CREATE USER mfgadmin WITH PASSWORD 'mfgadmin'
- CREATEDB CREATEUSER
- IN GROUP openmfg;
-CREATE USER admin WITH PASSWORD 'admin'
- CREATEDB CREATEUSER
- IN GROUP openmfg;
-