summaryrefslogtreecommitdiff
path: root/community/hula/hula.install
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/hula/hula.install
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/hula/hula.install')
-rw-r--r--community/hula/hula.install24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/hula/hula.install b/community/hula/hula.install
new file mode 100644
index 000000000..eaca1d08e
--- /dev/null
+++ b/community/hula/hula.install
@@ -0,0 +1,24 @@
+post_install() {
+/bin/cat <<THEEND
+cd to /opt/hula/sbin/ and run:
+
+ $ ./hulasetup --domain=your.domain.com --dns=ip.of.dns.server
+
+If you don't specify the --domain argument, then it will default to localhost.localdomain as your domain.
+
+Specifying the IP address of your DNS server is useful; hula doesn't pick it up from /etc/resolv.conf. You need to set it in order to send mail out.
+
+If you already have servers running for services that hula provides, you can change the port hula will use for them with hulamanager too. For example, if you already have apache running on port 80, you can make the hula webserver use port 8080:
+
+ $ ./hulasetup --http=8080
+
+Parameters for other services are --https, --ldap, --webadmin and --webadmins. The smtp port can't be changed.
+
+THEEND
+}
+
+post_remove() {
+ # too many files and dirs created by setup. just rm it all
+ rm -rf /opt/hula
+}
+