summaryrefslogtreecommitdiffstats
path: root/network/openfire/README.Slackware
diff options
context:
space:
mode:
author Mário Antunes <mariolpantunes@gmail.com>2012-12-23 06:50:30 +0100
committer Matteo Bernardini <ponce@slackbuilds.org>2012-12-23 06:50:50 +0100
commit3c43c6c8c52ca3e326e38037cedd64a293135ab0 (patch)
tree708836fb4f7ace53c6956e440fe025663bba5e44 /network/openfire/README.Slackware
parentd16b524216f185930a93bb488a6f4ce7d72b4aff (diff)
downloadslackbuilds-3c43c6c8c52ca3e326e38037cedd64a293135ab0.tar.gz
slackbuilds-3c43c6c8c52ca3e326e38037cedd64a293135ab0.tar.xz
network/openfire: Added (XMPP server).
(lots of modifications, added an rc.openfire script --ponce) Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/openfire/README.Slackware')
-rw-r--r--network/openfire/README.Slackware24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/openfire/README.Slackware b/network/openfire/README.Slackware
new file mode 100644
index 0000000000..4a997bd6fa
--- /dev/null
+++ b/network/openfire/README.Slackware
@@ -0,0 +1,24 @@
+## Building
+This script requires an 'openfire' user/group to exist before
+running.
+The recommended UID/GID is 265. You can create these like so:
+ groupadd -g 265 openfire
+ useradd -u 265 -g 265 -c "Openfire Server" -m openfire
+
+## Startup
+To have this start upon each boot, add the following lines to
+/etc/rc.d/rc.local
+
+ # Start openfire
+ if [ -x /etc/rc.d/rc.openfire ]; then
+ /etc/rc.d/rc.openfire start
+ fi
+
+to stop it at shutdown, add a similar entry substituting
+"start" with "stop" in /etc/rc.d/rc.local_shutdown.
+
+## Setup
+For information about setup see:
+http://www.howtoforge.com/how-to-set-up-an-openfire-instant-messaging-server-on-centos-5.6
+http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/database.html
+http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/install-guide.html