Commit 27e1c1ca authored by Matt Tucker's avatar Matt Tucker Committed by matt

Wildfire --> Openfire

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7686 b35dd754-fafc-0310-a699-88a17e54d16e
parent 66d506e0
Source: wildfire
Source: openfire
Section: net
Priority: optional
Maintainer: Jive Software <webmaster@jivesoftware.com>
Build-Depends: debhelper (>= 5), sun-java5-jdk, ant
Standards-Version: 3.7.2
Package: wildfire
Package: openfire
Section: net
Priority: optional
Depends: sun-java5-jdk
Architecture: all
Description: A high performance XMPP (Jabber) server.
Wildfire is an instant messaging server that implements the XMPP
Openfire is an instant messaging server that implements the XMPP
(Jabber) protocol. It features high performance, a robust
administration console, and a full plugin system. The server
is 100% Java.
.
Wildfire is a professional Open Source project, led by Jive Software.
Openfire is a professional Open Source project, led by Jive Software.
/etc/openfire/wildfire.xml
/etc/openfire/security/keystore
/etc/openfire/security/truststore
# Defaults for wildfire initscript
# sourced by /etc/init.d/wildfire
# installed at /etc/default/wildfire by the maintainer scripts
# Defaults for openfire initscript
# sourced by /etc/init.d/openfire
# installed at /etc/default/openfire by the maintainer scripts
#
# This is a POSIX shell fragment
......
......@@ -9,20 +9,20 @@
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/java
NAME=wildfire
DESC=wildfire
DAEMON_DIR=/opt/wildfire
NAME=openfire
DESC=openfire
DAEMON_DIR=/opt/openfire
DAEMON_LIB=${DAEMON_DIR}/lib
test -x $DAEMON || exit 0
# Include wildfire defaults if available
if [ -f /etc/default/wildfire ] ; then
. /etc/default/wildfire
# Include openfire defaults if available
if [ -f /etc/default/openfire ] ; then
. /etc/default/openfire
fi
DAEMON_OPTS="-server -DwildfireHome=${DAEMON_DIR} \
-Dwildfire.lib.dir=${DAEMON_LIB} -classpath ${DAEMON_LIB}/startup.jar\
DAEMON_OPTS="-server -DopenfireHome=${DAEMON_DIR} \
-Dopenfire.lib.dir=${DAEMON_LIB} -classpath ${DAEMON_LIB}/startup.jar\
-jar ${DAEMON_LIB}/startup.jar $DAEMON_OPTS"
set -e
......
#!/bin/sh
# postrm script for wildfire
# postrm script for openfire
#
# see: dh_installdeb(1)
......@@ -20,7 +20,7 @@ set -e
case "$1" in
purge)
rm -Rf /opt/wildfire
rm -Rf /opt/openfire
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
......
/var/log/wildfire
/var/log/openfire
# move the
/etc/wildfire
\ No newline at end of file
/etc/openfire
\ No newline at end of file
......@@ -8,7 +8,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DESTINATION=${CURDIR}/debian/wildfire/
DESTINATION=${CURDIR}/debian/openfire/
build: build-stamp
build-stamp:
......@@ -30,19 +30,19 @@ clean:
install: install-stamp
install-stamp:
mv $(CURDIR)/target/wildfire $(DESTINATION)/opt/
mv $(CURDIR)/target/openfire $(DESTINATION)/opt/
# Move the conf-dir to etc an create a symlink back.
mv ${DESTINATION}/opt/wildfire/conf ${DESTINATION}/etc/wildfire
ln -s /etc/wildfire ${DESTINATION}/opt/wildfire/conf
mv ${DESTINATION}/opt/openfire/conf ${DESTINATION}/etc/openfire
ln -s /etc/openfire ${DESTINATION}/opt/openfire/conf
# Move the resource dir to etc and symlink back.
mv ${DESTINATION}/opt/wildfire/resources/security ${DESTINATION}/etc/wildfire/security
ln -s /etc/wildfire/security ${DESTINATION}/opt/wildfire/resources/security
mv ${DESTINATION}/opt/openfire/resources/security ${DESTINATION}/etc/openfire/security
ln -s /etc/openfire/security ${DESTINATION}/opt/openfire/resources/security
# Move the logs dir to /var/log an symlink back.
mv ${DESTINATION}/opt/wildfire/logs ${DESTINATION}/var/log/wildfire
ln -s /var/log/wildfire ${DESTINATION}/opt/wildfire/logs
mv ${DESTINATION}/opt/openfire/logs ${DESTINATION}/var/log/openfire
ln -s /var/log/openfire ${DESTINATION}/opt/openfire/logs
touch $@
......
/etc/wildfire/wildfire.xml
/etc/wildfire/security/keystore
/etc/wildfire/security/truststore
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment