From 7cd5f7218b47887bc75a6ee61a4e5ae911dac64a Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 6 Oct 2008 18:51:57 +0000 Subject: Added default admin user with default password 'executionroom' --- createentities | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'createentities') diff --git a/createentities b/createentities index 420d84d..dbd8df7 100755 --- a/createentities +++ b/createentities @@ -1,5 +1,7 @@ #!/bin/bash +GROUP="apache" + if test -f forum/data/users.xml then echo "forum/data/users.xml already exists." @@ -7,5 +9,29 @@ else echo "Creating forum/data/users.xml" echo "" > forum/data/users.xml echo "" >> forum/data/users.xml - echo "" >> forum/data/users.xml + echo " " >> forum/data/users.xml + echo "" >> forum/data/users.xml + chgrp $GROUP forum/data/users.xml + chmod g+wr forum/data/users.xml +fi + +# +# Create config files +# +if test -f htdocs/config.php +then + echo "htdocs/config.php already exists" +else + echo "Creating htdocs/config.php" + cp htdocs/config.php.defaults htdocs/config.php fi + +if test -f forum/htdocs/config.php +then + echo "forum/htdocs/config.php already exists" +else + echo "Creating forum/htdocs/config.php" + cp forum/htdocs/config.php.defaults forum/htdocs/config.php +fi + + -- cgit v1.2.3