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 Section: net
Priority: optional Priority: optional
Maintainer: Jive Software <webmaster@jivesoftware.com> Maintainer: Jive Software <webmaster@jivesoftware.com>
Build-Depends: debhelper (>= 5), sun-java5-jdk, ant Build-Depends: debhelper (>= 5), sun-java5-jdk, ant
Standards-Version: 3.7.2 Standards-Version: 3.7.2
Package: wildfire Package: openfire
Section: net Section: net
Priority: optional Priority: optional
Depends: sun-java5-jdk Depends: sun-java5-jdk
Architecture: all Architecture: all
Description: A high performance XMPP (Jabber) server. 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 (Jabber) protocol. It features high performance, a robust
administration console, and a full plugin system. The server administration console, and a full plugin system. The server
is 100% Java. 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 # Defaults for openfire initscript
# sourced by /etc/init.d/wildfire # sourced by /etc/init.d/openfire
# installed at /etc/default/wildfire by the maintainer scripts # installed at /etc/default/openfire by the maintainer scripts
# #
# This is a POSIX shell fragment # This is a POSIX shell fragment
......
/etc/ /etc/
/opt/ /opt/
/var/log/wildfire /var/log/openfire
...@@ -9,20 +9,20 @@ ...@@ -9,20 +9,20 @@
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/java DAEMON=/usr/bin/java
NAME=wildfire NAME=openfire
DESC=wildfire DESC=openfire
DAEMON_DIR=/opt/wildfire DAEMON_DIR=/opt/openfire
DAEMON_LIB=${DAEMON_DIR}/lib DAEMON_LIB=${DAEMON_DIR}/lib
test -x $DAEMON || exit 0 test -x $DAEMON || exit 0
# Include wildfire defaults if available # Include openfire defaults if available
if [ -f /etc/default/wildfire ] ; then if [ -f /etc/default/openfire ] ; then
. /etc/default/wildfire . /etc/default/openfire
fi fi
DAEMON_OPTS="-server -DwildfireHome=${DAEMON_DIR} \ DAEMON_OPTS="-server -DopenfireHome=${DAEMON_DIR} \
-Dwildfire.lib.dir=${DAEMON_LIB} -classpath ${DAEMON_LIB}/startup.jar\ -Dopenfire.lib.dir=${DAEMON_LIB} -classpath ${DAEMON_LIB}/startup.jar\
-jar ${DAEMON_LIB}/startup.jar $DAEMON_OPTS" -jar ${DAEMON_LIB}/startup.jar $DAEMON_OPTS"
set -e set -e
......
#!/bin/sh #!/bin/sh
# postrm script for wildfire # postrm script for openfire
# #
# see: dh_installdeb(1) # see: dh_installdeb(1)
...@@ -20,7 +20,7 @@ set -e ...@@ -20,7 +20,7 @@ set -e
case "$1" in case "$1" in
purge) purge)
rm -Rf /opt/wildfire rm -Rf /opt/openfire
;; ;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
......
/var/log/wildfire /var/log/openfire
# move the # move the
/etc/wildfire /etc/openfire
\ No newline at end of file \ No newline at end of file
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1 #export DH_VERBOSE=1
DESTINATION=${CURDIR}/debian/wildfire/ DESTINATION=${CURDIR}/debian/openfire/
build: build-stamp build: build-stamp
build-stamp: build-stamp:
...@@ -30,19 +30,19 @@ clean: ...@@ -30,19 +30,19 @@ clean:
install: install-stamp install: install-stamp
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. # Move the conf-dir to etc an create a symlink back.
mv ${DESTINATION}/opt/wildfire/conf ${DESTINATION}/etc/wildfire mv ${DESTINATION}/opt/openfire/conf ${DESTINATION}/etc/openfire
ln -s /etc/wildfire ${DESTINATION}/opt/wildfire/conf ln -s /etc/openfire ${DESTINATION}/opt/openfire/conf
# Move the resource dir to etc and symlink back. # Move the resource dir to etc and symlink back.
mv ${DESTINATION}/opt/wildfire/resources/security ${DESTINATION}/etc/wildfire/security mv ${DESTINATION}/opt/openfire/resources/security ${DESTINATION}/etc/openfire/security
ln -s /etc/wildfire/security ${DESTINATION}/opt/wildfire/resources/security ln -s /etc/openfire/security ${DESTINATION}/opt/openfire/resources/security
# Move the logs dir to /var/log an symlink back. # Move the logs dir to /var/log an symlink back.
mv ${DESTINATION}/opt/wildfire/logs ${DESTINATION}/var/log/wildfire mv ${DESTINATION}/opt/openfire/logs ${DESTINATION}/var/log/openfire
ln -s /var/log/wildfire ${DESTINATION}/opt/wildfire/logs ln -s /var/log/openfire ${DESTINATION}/opt/openfire/logs
touch $@ 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