diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
| commit | 3add449a170be706377b66bee46af25633bc945c (patch) | |
| tree | 7415df14a37624ff0b24fd40bde079927a88c28a /java/jboss5 | |
| parent | 975af646f278430e563b72219a2c3055b211eb1a (diff) | |
Diffstat (limited to 'java/jboss5')
| -rw-r--r-- | java/jboss5/Makefile | 135 | ||||
| -rw-r--r-- | java/jboss5/distinfo | 2 | ||||
| -rw-r--r-- | java/jboss5/files/daemonctl.1 | 78 | ||||
| -rw-r--r-- | java/jboss5/files/daemonctl.c | 563 | ||||
| -rw-r--r-- | java/jboss5/files/startup.sh | 35 | ||||
| -rw-r--r-- | java/jboss5/pkg-deinstall | 35 | ||||
| -rw-r--r-- | java/jboss5/pkg-descr | 24 | ||||
| -rw-r--r-- | java/jboss5/pkg-install | 46 | ||||
| -rw-r--r-- | java/jboss5/pkg-plist | 573 |
9 files changed, 0 insertions, 1491 deletions
diff --git a/java/jboss5/Makefile b/java/jboss5/Makefile deleted file mode 100644 index fd65924a43bc..000000000000 --- a/java/jboss5/Makefile +++ /dev/null @@ -1,135 +0,0 @@ -# ports collection makefile for: jboss2 -# Date created: 16 April 2002 -# Whom: Ernst de Haan <znerd@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${APP_TITLE:L} -PORTVERSION= 3.2.5 -CATEGORIES= java -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-${PORTVERSION}-src - -MAINTAINER= jonc@chen.org.nz -COMMENT= JBoss 3.x, an open-source J2EE application server - -BUILD_DEPENDS= ${LOCALBASE}/bin/ant:${PORTSDIR}/devel/apache-ant - -LATEST_LINK= jboss3 -USE_JAVA= 1.4+ - -USE_REINPLACE= YES -USE_BZIP2= YES - -.if !defined(NOPORTDOCS) -PORTDOCS= * -.endif - -APP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION:R} -DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}${PORTVERSION:R} -LOG_DIR= ${APP_HOME}/log -PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} -APP_TITLE= JBoss -APP_SHORTNAME= ${PORTNAME}${PORTVERSION:R:R} -CONTROL_SCRIPT_NAME= ${APP_SHORTNAME}ctl -CONTROL_SCRIPT= ${PREFIX}/bin/${CONTROL_SCRIPT_NAME} -CONTROL_SCRIPT_MANPAGE_TITLE= ${CONTROL_SCRIPT_NAME:U} -STARTUP_ORDER= 020 -STARTUP_SCRIPT_NAME= ${APP_SHORTNAME}.sh -STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/${STARTUP_ORDER}.${STARTUP_SCRIPT_NAME} -USER= www -GROUP= www -STDOUT_LOG= ${LOG_DIR}/stdout.log -STDERR_LOG= ${LOG_DIR}/stderr.log -AUTO_START?= NO -STOP_TIMEOUT?= 5 -PID_FILE= /var/run/${APP_SHORTNAME}.pid -JAVA_OPTS= -JAVA_CP= bin/run.jar:${JAVA_HOME}/lib/tools.jar -JAVA_MAIN= org.jboss.Main -DAEMONCTL_DIR= ${FILESDIR} -DAEMONCTL_FILES=daemonctl.c daemonctl.1 startup.sh -MAN1= ${CONTROL_SCRIPT_NAME}.1 - -JBOSSOUTPUT= ${WRKSRC}/build/output/${PORTNAME}-${PORTVERSION} - -.include <bsd.port.pre.mk> - -do-configure: - @(cd ${DAEMONCTL_DIR} && ${CP} ${DAEMONCTL_FILES} ${WRKDIR}) - @(cd ${WRKDIR} && ${REINPLACE_CMD} \ - -e "s|%%APP_HOME%%|${APP_HOME}|g;" \ - -e "s|%%APP_SHORTNAME%%|${APP_SHORTNAME}|g;" \ - -e "s|%%APP_TITLE%%|${APP_TITLE}|g;" \ - -e "s|%%CONTROL_SCRIPT%%|${CONTROL_SCRIPT}|g;" \ - -e "s|%%CONTROL_SCRIPT_MANPAGE_TITLE%%|${CONTROL_SCRIPT_MANPAGE_TITLE}|g;" \ - -e "s|%%CONTROL_SCRIPT_NAME%%|${CONTROL_SCRIPT_NAME}|g;" \ - -e "s|%%GROUP%%|${GROUP}|g;" \ - -e "s|%%JAVA_CP%%|${JAVA_CP}|g;" \ - -e "s|%%JAVA_CMD%%|bin/java|g;" \ - -e "s|%%JAVA_HOME%%|${JAVA_HOME}|g;" \ - -e "s|%%JAVA_MAIN%%|${JAVA_MAIN}|g;" \ - -e "s|%%JAVA_OPTS%%|${JAVA_OPTS}|g;" \ - -e "s|%%JAVA_PORT_VERSION%%|${JAVA_PORT_VERSION}|g;" \ - -e "s|%%JAVA_PORT_OS_DESCRIPTION%%|${JAVA_PORT_OS_DESCRIPTION}|g;" \ - -e "s|%%JAR_FILE%%|${JAR_FILE}|g;" \ - -e "s|%%LOG_DIR%%|${LOG_DIR}|g;" \ - -e "s|%%PID_FILE%%|${PID_FILE}|g;" \ - -e "s|%%PORTNAME%%|${PORTNAME}|g;" \ - -e "s|%%PORTVERSION%%|${PORTVERSION}|g;" \ - -e "s|%%PREFIX%%|${PREFIX}|g;" \ - -e "s|%%STARTUP_SCRIPT%%|${STARTUP_SCRIPT}|g;" \ - -e "s|%%STDERR_LOG%%|${STDERR_LOG}|g;" \ - -e "s|%%STDOUT_LOG%%|${STDOUT_LOG}|g;" \ - -e "s|%%STOP_TIMEOUT%%|${STOP_TIMEOUT}|g;" \ - -e "s|%%USER%%|${USER}|g;" ${DAEMONCTL_FILES}) - -post-configure: - @${ECHO_CMD} "Installation settings:" - @${ECHO_CMD} " Destination directory: ${APP_HOME}" - @${ECHO_CMD} " Control program location: ${CONTROL_SCRIPT}" - @${ECHO_CMD} " Startup script location: ${STARTUP_SCRIPT}" - @${ECHO_CMD} " Location of JDK: ${JAVA_HOME}" - @${ECHO_CMD} " Location of Java port: ${JAVA_PORT}" - @${ECHO_CMD} " Startup Java Options: ${JAVA_OPTS}" - @${ECHO_CMD} " Running as (user/group): ${USER}/${GROUP}" - @${ECHO_CMD} " Logfile stdout: ${STDOUT_LOG}" - @${ECHO_CMD} " Logfile stderr: ${STDERR_LOG}" - @${ECHO_CMD} " Starting after install: ${AUTO_START}" - @${ECHO_CMD} " Stop time-out: ${STOP_TIMEOUT} sec." - -do-build: - (cd ${WRKDIR} && ${CC} ${CFLAGS} -o ${CONTROL_SCRIPT_NAME} daemonctl.c) - (cd ${WRKSRC}/build && ${SETENV} JAVA_HOME=${JAVA_HOME} PATH=${PATH}:${JAVA_HOME}/bin ${SH} build.sh) - -pre-install: - @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -do-install: - ${MKDIR} ${APP_HOME} && ${CHOWN} ${USER}:${GROUP} ${APP_HOME} - ${MKDIR} ${LOG_DIR} && ${CHOWN} ${USER}:${GROUP} ${LOG_DIR} - (cd ${JBOSSOUTPUT} && ${FIND} bin client lib server |\ - ${CPIO} -pdmu -R ${USER}:${GROUP} ${APP_HOME}) - ${INSTALL} -o ${USER} -g ${GROUP} -m 06754\ - ${WRKDIR}/${CONTROL_SCRIPT_NAME} ${CONTROL_SCRIPT} - ${INSTALL_SCRIPT} ${WRKDIR}/startup.sh ${STARTUP_SCRIPT} - ${INSTALL} -o ${USER} -g ${GROUP} -m 0640 /dev/null ${STDOUT_LOG} - ${INSTALL} -o ${USER} -g ${GROUP} -m 0640 /dev/null ${STDERR_LOG} - ${INSTALL} -o ${USER} -g ${GROUP} -m 0640 /dev/null ${PID_FILE} - ${INSTALL_MAN} ${WRKDIR}/daemonctl.1 ${MANPREFIX}/man/man1/${CONTROL_SCRIPT_NAME}.1 -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -r ${JBOSSOUTPUT}/docs/* ${DOCSDIR} -.endif - -post-install: - @${ECHO_CMD} "${PKGNAME} has been installed in ${APP_HOME}." - @${ECHO_CMD} "If a user should be able to use ${CONTROL_SCRIPT_NAME}, put it in the group ${GROUP}." - @${ECHO_CMD} "Use 'man ${CONTROL_SCRIPT_NAME}' for information about starting and stopping ${PORTNAME}." -.if ${AUTO_START} == "YES" - @${CONTROL_SCRIPT} start || true -.endif - -.include <bsd.port.post.mk> diff --git a/java/jboss5/distinfo b/java/jboss5/distinfo deleted file mode 100644 index 209da05e921b..000000000000 --- a/java/jboss5/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (jboss-3.2.5-src.tar.bz2) = c82e127e1dd80d755f11970a4ee72c3a -SIZE (jboss-3.2.5-src.tar.bz2) = 33212056 diff --git a/java/jboss5/files/daemonctl.1 b/java/jboss5/files/daemonctl.1 deleted file mode 100644 index 30547f449ef9..000000000000 --- a/java/jboss5/files/daemonctl.1 +++ /dev/null @@ -1,78 +0,0 @@ -.Dd February 21, 2002 -.Dt %%CONTROL_SCRIPT_MANPAGE_TITLE%% 1 -.Os FreeBSD -.Sh NAME -.Nm %%CONTROL_SCRIPT_NAME%% -.Nd %%APP_TITLE%% server control interface -.Sh SYNOPSIS -.Nm -.Op Fl java-options -.Ar {start|restart|stop} -.Sh DESCRIPTION -The -.Nm -program provides an restricted interface to the %%APP_TITLE%% -application server. The -.Nm -program is only accessible to users in the 'www' group, and will -only invoke the %%JAVA_PORT_OS_DESCRIPTION%% %%JAVA_PORT_VERSION%% JVM. -.Pp -Any Java options listed are handed off directly to the JVM. Any -classpath options will be ignored. -.Pp -The program expects exactly one of the following terminating commands: -.Bl -tag -width indent -.It Ar start -Start %%APP_TITLE%%, if it is not already running. -.It Ar restart -Restart %%APP_TITLE%%. If it is already running, then it will be stopped and -then started right after that. Otherwise it will just be started up. -.It Ar stop -Stop %%APP_TITLE%%, if it is actually running. -.El -.Sh ERRORS -The following error conditions are detected. They will be checked in the -specified order. In each case an error message is printed with the name of the -control program prepended. -.Pp -If no argument is passed, then a simple help message is printed and the -program exists with error code 0. -.Pp -If at least one argument is passed, but it is different from -.Ar start , -.Ar restart -or -.Ar stop -then the help message is printed as well, and the program exits with error -code 1. -.Pp -The following errors conditions are defined: -.Bl -tag -width indent -.It Em Illegal program argument (error code 1) -.It Em PID file not found (error code 2) -.It Em PID file too large (error code 3) -.It Em PID file contains illegal character (error code 4) -.It Em Kill of process failed (error code 5) -.It Em %%APP_TITLE%% is already running (error code 6) -.It Em %%APP_TITLE%% is not running (error code 7) -.It Em Unable to chdir to the %%APP_TITLE%% home directory (error code 8) -.It Em Unable to open the stdout log file (error code 9) -.It Em Unable to open the stderr log file (error code 10) -.It Em Unable to start %%APP_TITLE%% (error code 11) -.El -.Sh FILES -.Bl -tag -width -indent -.It Pa %%PID_FILE%% -The %%APP_TITLE%% PID file that is used to store the process ID of the -currently running process in. It is emptied as soon as the server is stopped -and filled with the process ID when it is started. It should never be writable -for anyone but -.Em www , -.It Pa %%STARTUP_SCRIPT%% -A script that starts the -.Nm -program. It is used to start %%APP_TITLE%% at startup time. -.El -.Sh AUTHORS -.An Ernst de Haan Aq znerd@FreeBSD.org -.An Jonathan Chen Aq jonc@chen.org.nz diff --git a/java/jboss5/files/daemonctl.c b/java/jboss5/files/daemonctl.c deleted file mode 100644 index c05ce4c78879..000000000000 --- a/java/jboss5/files/daemonctl.c +++ /dev/null @@ -1,563 +0,0 @@ -/* - * -*- mode: Fundamental; tab-width: 4; -*- - * ex:ts=4 - * - * Daemon control program, with Java Startup options. - * - * Original by Ernst de Haan <znerd@freebsd.org> - * www/jakarta-tomcat4/files/daemonctl.c - * - * $FreeBSD: /tmp/pcvs/ports/java/jboss5/files/Attic/daemonctl.c,v 1.1 2004-06-21 16:42:59 vanilla Exp $ - */ - -#include <assert.h> -#include <fcntl.h> -#include <signal.h> -#include <stdarg.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <syslog.h> -#include <unistd.h> -#include <sys/errno.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <sys/uio.h> - -/* The maximum size of the PID file, in bytes */ -#define MAX_FILE_SIZE 32 - -/* The interval in seconds between the checks to make sure the process - died after a kill */ -#define STOP_TIME_INTERVAL 1 - -#define ERR_ILLEGAL_ARGUMENT 1 -#define ERR_PID_FILE_NOT_FOUND 2 -#define ERR_PID_FILE_TOO_LARGE 3 -#define ERR_PID_FILE_CONTAINS_ILLEGAL_CHAR 4 -#define ERR_KILL_FAILED 5 -#define ERR_ALREADY_RUNNING 6 -#define ERR_NOT_RUNNING 7 -#define ERR_CHDIR_TO_APP_HOME 8 -#define ERR_ACCESS_JAR_FILE 17 -#define ERR_STDOUT_LOGFILE_OPEN 9 -#define ERR_STDERR_LOGFILE_OPEN 10 -#define ERR_FORK_FAILED 11 -#define ERR_STAT_JAVA_HOME 12 -#define ERR_JAVA_HOME_NOT_DIR 13 -#define ERR_STAT_JAVA_CMD 14 -#define ERR_JAVA_CMD_NOT_FILE 15 -#define ERR_JAVA_CMD_NOT_EXECUTABLE 16 - -/* - Function declarations. - */ -static void printUsage (void); -static int openPIDFile (void); -static int readPID (int); -static void writePID (int file, int pid); -static void start (int optcount, char * opts []); -static void stop (void); -static void restart (int optcount, char * opts []); - -/** - * Main function. This function is called when this program is executed. - * - * @param argc - * the number of arguments plus one, so always greater than 0. - * - * @param argv - * the arguments in an array of character pointers, where the last argument - * element is followed by a NULL element. - */ -int -main ( - int argc, - char *argv []) -{ - - /* Declare variables, like all other good ANSI C programs do :) */ - int i, jopt; - char *argument, **jargs; - - /* Parse the arguments */ - if (argc < 2) - { - printUsage (); - return 0; - } - - /* XXX: Fix for setting up the environment for the java wrapper script */ - setuid (geteuid ()); - setgid (getegid ()); - - /* - Build up java-option block. - */ - jopt = 0; - for (i = 1; i < argc; i++) - { - if (*argv [i] == '-') - jopt++; - } - if (jopt == 0) - jargs = NULL; - else - { - int j = 0; - jargs = malloc (sizeof (char *) * jopt); - for (i = 0; i < argc; i++) - { - if (*argv [i] == '-') - jargs [j++] = argv [i]; - } - } - - /* - Decide on just what to call. - */ - argument = argv [argc - 1]; - if (strcmp ("start", argument) == 0) - { - start (jopt, jargs); - - } else if (strcmp ("stop", argument) == 0) - { - stop (); - } else if (strcmp ("restart", argument) == 0) - { - restart (jopt, jargs); - - } else { - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Illegal argument \"%s\".\n", argument); - printUsage (); - exit (ERR_ILLEGAL_ARGUMENT); - } - - return 0; -} - - -/** - * Prints usage information to stdout. - */ -static void -printUsage (void) -{ - printf ("Usage: %%CONTROL_SCRIPT_NAME%% [java-options] {start|stop|restart}\n"); -} - -/** - * Attempts to open the PID file. If that file is successfully opened, then - * the file handle (an int) will be returned. - * - * @return - * the file handle. - */ -static int -openPIDFile (void) -{ - - int file; - - /* Attempt to open the PID file */ - file = open ("%%PID_FILE%%", O_RDWR); - if (file < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%PID_FILE%% for reading and writing: "); - perror (NULL); - exit (ERR_PID_FILE_NOT_FOUND); - } - - return file; -} - - -/** - * Reads a PID from the specified file. The file is identified by a file - * handle. - * - * @param file - * the file handle. - * - * @return - * the PID, or -1 if the file was empty. - */ -static int -readPID ( - int file) -{ - - char *buffer; - int hadNewline = 0; - unsigned int count; - unsigned int i; - int pid; - - /* Read the PID file contents */ - buffer = (char *) malloc ((MAX_FILE_SIZE + 1) * sizeof (char)); - count = read (file, buffer, MAX_FILE_SIZE + 1); - if (count > MAX_FILE_SIZE) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: The file %%PID_FILE%% contains more than %d bytes.\n", MAX_FILE_SIZE); - exit (ERR_PID_FILE_TOO_LARGE); - } - - /* Convert the bytes to a number */ - pid = 0; - for (i=0; i<count; i++) { - char c = buffer[i]; - if (c >= '0' && c <= '9') { - char digit = c - '0'; - pid *= 10; - pid += digit; - } else if (i == (count - 1) && c == '\n') { - /* XXX: Ignore a newline at the end of the file */ - hadNewline = 1; - } else { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: The file %%PID_FILE%% contains an illegal character (%d) at position %d.\n", c, i); - exit (ERR_PID_FILE_CONTAINS_ILLEGAL_CHAR); - } - } - printf (" [ DONE ]\n"); - - if (count == 0 || (count == 1 && hadNewline == 1)) { - return -1; - } - - return pid; -} - - -/** - * Writes a process ID to the specified file. The file is identified by a file - * handle. - * - * @param file - * the file handle, always greater than 0. - * - * @param pid - * the PID to store, always greater than 0. - */ -static void -writePID ( - int file, - int pid) -{ - - char *buffer; - int nbytes; - - /* Check preconditions */ - assert (file > 0); - assert (pid > 0); - - printf (">> Writing PID file..."); - - lseek (file, (off_t) 0, SEEK_SET); - ftruncate (file, (off_t) 0); - nbytes = asprintf (&buffer, "%d\n", pid); - write (file, buffer, nbytes); - printf (" [ DONE ]\n"); -} - - -/** - * Checks if the specified process is running. - * - * @param pid - * the process id, greater than 0. - * - * @return - * 0 if the specified process is not running, a different value otherwise. - */ -static int -existsProcess ( - int pid) -{ - - int result; - - /* Check preconditions */ - assert (pid > 0); - - /* See if the process exists */ - result = kill (pid, 0); - - /* If the result is 0, then the process exists */ - if (result == 0) { - return 1; - } else { - return 0; - } -} - - -/** - * Kills the process identified by the specified ID. - * - * @param pid - * the process id, greater than 0. - */ -static void -killProcess ( - int pid) -{ - - int result; - unsigned int waited; - unsigned int forced; - unsigned int interval = STOP_TIME_INTERVAL; - unsigned int timeout = %%STOP_TIMEOUT%%; - - /* Check preconditions */ - assert (pid > 0); - - printf (">> Terminating process %d...", pid); - result = kill (pid, SIGTERM); - if (result < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to kill process %d: ", pid); - perror (NULL); - exit (ERR_KILL_FAILED); - } - - /* Wait until the process is actually killed */ - result = existsProcess (pid); - for (waited=0; result == 1 && waited < timeout; waited += interval) - { - printf ("."); - fflush (NULL); - sleep (interval); - result = existsProcess (pid); - } - - /* If the process still exists, then have no mercy and kill it */ - forced = 0; - if (result == 1) { - - /* Force the process to die */ - result = kill (pid, SIGKILL); - if (result == 0) { - forced = 1; - printf (" [ DONE ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Process %d did not terminate within %%STOP_TIMEOUT%% sec. Killed.\n", pid); - } else if (result != ESRCH) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to kill process %d: ", pid); - perror (NULL); - exit (ERR_KILL_FAILED); - } - } - - if (forced == 0) { - printf (" [ DONE ]\n"); - } -} - -/** - * Starts the daemon. - */ -static void -start ( - int optcount, - char * opts []) -{ - int file; - int pid; - int result; - int stdoutLogFile; - int stderrLogFile; - struct stat sb; - - /* Open and read the PID file */ - printf (">> Reading PID file (%%PID_FILE%%)..."); - file = openPIDFile (); - pid = readPID (file); - - printf (">> Starting %%APP_TITLE%% %%PORTVERSION%%..."); - if (pid != -1) { - - /* Check if the process actually exists */ - result = existsProcess (pid); - if (result == 1) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: %%APP_TITLE%% %%PORTVERSION%% is already running, PID is %d.\n", pid); - exit (ERR_ALREADY_RUNNING); - } - } - - /* Check if the JDK home directory is actually a directory */ - result = stat ("%%JAVA_HOME%%", &sb); - if (result != 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to stat %%JAVA_HOME%%: "); - perror (NULL); - exit (ERR_STAT_JAVA_HOME); - } - if (!S_ISDIR (sb.st_mode)) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java home directory %%JAVA_HOME%% is not a directory.\n"); - exit (ERR_JAVA_HOME_NOT_DIR); - } - - /* Check if the Java command is actually an executable regular file */ - result = stat ("%%JAVA_HOME%%/%%JAVA_CMD%%", &sb); - if (result != 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to stat %%JAVA_HOME%%/%%JAVA_CMD%%: "); - perror (NULL); - exit (ERR_STAT_JAVA_CMD); - } - if (!S_ISREG (sb.st_mode)) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA_HOME%%/%%JAVA_CMD%% is not a regular file.\n"); - exit (ERR_JAVA_CMD_NOT_FILE); - } - result = access ("%%JAVA_HOME%%/%%JAVA_CMD%%", X_OK); - if (result != 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA_HOME%%/%%JAVA_CMD%% is not executable: "); - perror (NULL); - exit (ERR_JAVA_CMD_NOT_EXECUTABLE); - } - - /* Change directory */ - result = chdir ("%%APP_HOME%%"); - if (result < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to access directory %%APP_HOME%%: "); - perror (NULL); - exit (ERR_CHDIR_TO_APP_HOME); - } - - /* See if the JAR file exists */ - result = access ("%%APP_HOME%%/%%JAR_FILE%%", R_OK); - if (result < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to access JAR file %%APP_HOME%%/%%JAR_FILE%%: "); - perror (NULL); - exit (ERR_ACCESS_JAR_FILE); - } - - /* Open the stdout log file */ - stdoutLogFile = open ("%%STDOUT_LOG%%", O_WRONLY); - if (stdoutLogFile < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%STDOUT_LOG%% for writing: "); - perror (NULL); - exit (ERR_STDOUT_LOGFILE_OPEN); - } - lseek (stdoutLogFile, (off_t) 0, SEEK_END); - - /* Open the stderr log file */ - stderrLogFile = open ("%%STDERR_LOG%%", O_WRONLY); - if (stderrLogFile < 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%STDERR_LOG%% for writing: "); - perror (NULL); - exit (ERR_STDERR_LOGFILE_OPEN); - } - lseek (stderrLogFile, (off_t) 0, SEEK_END); - - /* Split this process in two */ - pid = fork (); - if (pid == -1) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to fork: "); - perror (NULL); - exit (ERR_FORK_FAILED); - } - - if (pid == 0) - { - int i, argc; - char **argv; - - /* Redirect stdout to log file */ - dup2 (stdoutLogFile, STDOUT_FILENO); - - /* Redirect stderr to log file */ - dup2 (stderrLogFile, STDERR_FILENO); - - /* TODO: Support redirection of both stdout and stderr to the same - file using pipe (2) */ - - /* - Build the argument vector, with the java-options if any. - */ - argv = malloc (sizeof (char *) * (optcount + 5)); - argc = 0; - argv [argc++] = "%%JAVA_HOME%%/%%JAVA_CMD%%"; - for (i = 0; i < optcount; i++) - argv [argc++] = opts [i]; - argv [argc++] = "-cp"; - argv [argc++] = "%%JAVA_CP%%"; - argv [argc++] = "%%JAVA_MAIN%%"; - argv [argc++] = NULL; - - /* Execute the command */ - execv (argv [0], argv); - - perror (NULL); - } else - { - printf (" [ DONE ]\n"); - writePID (file, pid); - } -} - -/** - * Stops the daemon. - */ -static void -stop (void) -{ - - int file; - int pid; - - /* Open and read the PID file */ - printf (">> Reading PID file (%%PID_FILE%%)..."); - file = openPIDFile (); - pid = readPID (file); - - printf (">> Checking if %%APP_TITLE%% %%PORTVERSION%% is running..."); - - /* If there is a PID, see if the process still exists */ - if (pid != -1) { - int result = kill (pid, 0); - if (result != 0 && errno == ESRCH) { - ftruncate (file, (off_t) 0); - pid = -1; - } - } - - /* If there is no running process, produce an error */ - if (pid == -1) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: %%APP_TITLE%% %%PORTVERSION%% is currently not running.\n"); - exit (ERR_NOT_RUNNING); - } - printf (" [ DONE ]\n"); - - /* Terminate the process */ - killProcess (pid); - - /* Clear the PID file */ - ftruncate (file, (off_t) 0); -} - - -/** - * Restarts the process. If it not currently running, then it will fail. - */ -static void -restart ( - int optcount, - char * opts []) -{ - stop (); - start (optcount, opts); -} diff --git a/java/jboss5/files/startup.sh b/java/jboss5/files/startup.sh deleted file mode 100644 index f4033e969eba..000000000000 --- a/java/jboss5/files/startup.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -*- mode: Fundamental; tab-width: 4; -*- -# ex:ts=4 -# -# %%APP_TITLE%% startup script. -# -# $FreeBSD: /tmp/pcvs/ports/java/jboss5/files/Attic/startup.sh,v 1.1 2004-06-21 16:42:59 vanilla Exp $ -# - - -# Set some variables -MYSELF=`basename $0` -JAVA_OPTS="%%JAVA_OPTS%%" - -case "$1" in - start) - echo -n ' ' - truncate -s 0 %%PID_FILE%% - chown %%USER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% ${JAVA_OPTS} start" >/dev/null && echo -n '%%APP_SHORTNAME%%' - ;; - stop) - echo -n ' ' - chown %%USER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% stop" >/dev/null 2>&1 ; echo -n '%%APP_SHORTNAME%%' - ;; - *) - echo "" - echo "Usage: ${MYSELF} { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/java/jboss5/pkg-deinstall b/java/jboss5/pkg-deinstall deleted file mode 100644 index 0521ad5fd496..000000000000 --- a/java/jboss5/pkg-deinstall +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# This script does the following. -# -# * Checks if the JBoss PID file exists. If it does, it kills the -# JBoss process and removes the PID file. -# -# $FreeBSD: /tmp/pcvs/ports/java/jboss5/Attic/pkg-deinstall,v 1.2 2003-07-14 10:03:13 des Exp $ -# - -# Make sure we're in the right stage of the process -if [ "$2" = "DEINSTALL" ]; then - - # Kill JBoss if it is still running - PID_FILE=/var/run/jboss.pid - if [ -s ${PID_FILE} ]; then - PID=`cat ${PID_FILE}` - echo -n ">> Killing JBoss Server process (${PID})..." - /bin/kill ${PID} > /dev/null 2> /dev/null - if [ $? -eq 0 ]; then - echo " [ DONE ]" - else - echo " [ FAILED ]" - fi - echo -n ">> Removing PID file (${PID_FILE})..." - rm ${PID_FILE} > /dev/null 2> /dev/null - if [ $? -eq 0 ]; then - echo " [ DONE ]" - else - echo " [ FAILED ]" - fi - fi -fi - -exit 0 diff --git a/java/jboss5/pkg-descr b/java/jboss5/pkg-descr deleted file mode 100644 index b4b75ac4b9eb..000000000000 --- a/java/jboss5/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -JBoss is an implementation of the EJB 1.1 (and parts of 2.0) specification, -that is, it is a server and container for Enterprise JavaBeans. In this it -is similar to Sun's 'J2SDK Enterprise Edition' (J2EE), but the JBoss core -server provides only an EJB server. The JBoss core does not include a web -container for servlets/JSP pages, although there are bundles available that -include either Tomcat or Jetty. The minimal core offering means that JBoss -has minimal memory and disk space requirements. JBoss will run very -effectively on a machine with 64 megabytes of RAM, and requires only a few -megabytes of disk (including source code!). Sun's J2EE requires a minimum of -128 megabytes of RAM, and 31 megabytes of disk space. Because of its small -memory footprint, JBoss starts up about 10 times faster than J2EE. There is -a built-in SQL database server for handling persistent beans, and this -starts up automatically with the server (J2EE ships with the CloudScape SQL -server, which has to be started separately). - -One of the nicest features of JBoss is its support for `hot' deployment. What -this means is that deploying a Bean is a simple as copying its JAR file into -the deployment directory. If this is done while the Bean is already loaded, -JBoss automatically unloads it, then loads the new version. Contrast this -with the rigmarole that other J2EE server makes us go through... JBoss is -distributed under the LGPL, which means that it's free, even for commercial -work, and the LGPL ensures that it remains that way. - -WWW: http://www.jboss.org/ diff --git a/java/jboss5/pkg-install b/java/jboss5/pkg-install deleted file mode 100644 index d8bfd400d779..000000000000 --- a/java/jboss5/pkg-install +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# Checks if the 'www' user and group exist. If they don't, then -# an attempt is made to create both. -# -# $FreeBSD: /tmp/pcvs/ports/java/jboss5/Attic/pkg-install,v 1.1 2002-04-26 21:54:15 znerd Exp $ -# - -# Make sure we're called during the 'make install' process -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -# Set some constants -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -# See if the group already exists -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -# See if the user already exists -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi -exit 0 diff --git a/java/jboss5/pkg-plist b/java/jboss5/pkg-plist deleted file mode 100644 index 23230575eb39..000000000000 --- a/java/jboss5/pkg-plist +++ /dev/null @@ -1,573 +0,0 @@ -bin/jboss3ctl -etc/rc.d/020.jboss3.sh -%%T%%/bin/deployer.bat -%%T%%/bin/deployer.sh -%%T%%/bin/jboss_init_redhat.sh -%%T%%/bin/jboss_init_suse.sh -%%T%%/bin/run.bat -%%T%%/bin/run.conf -%%T%%/bin/run.jar -%%T%%/bin/run.sh -%%T%%/bin/shutdown.bat -%%T%%/bin/shutdown.jar -%%T%%/bin/shutdown.sh -%%T%%/bin/twiddle.bat -%%T%%/bin/twiddle.jar -%%T%%/bin/twiddle.sh -%%T%%/client/auth.conf -%%T%%/client/avalon-framework.jar -%%T%%/client/concurrent.jar -%%T%%/client/getopt.jar -%%T%%/client/gnu-regexp.jar -%%T%%/client/jacorb.jar -%%T%%/client/jboss-client.jar -%%T%%/client/jboss-common-client.jar -%%T%%/client/jboss-iiop-client.jar -%%T%%/client/jboss-j2ee.jar -%%T%%/client/jboss-jaas.jar -%%T%%/client/jboss-jsr77-client.jar -%%T%%/client/jboss-net-client.jar -%%T%%/client/jboss-system-client.jar -%%T%%/client/jboss-transaction-client.jar -%%T%%/client/jbossall-client.jar -%%T%%/client/jbosscx-client.jar -%%T%%/client/jbossha-client.jar -%%T%%/client/jbossmq-client.jar -%%T%%/client/jbosssx-client.jar -%%T%%/client/jcert.jar -%%T%%/client/jmx-client.jar -%%T%%/client/jmx-connector-client-factory.jar -%%T%%/client/jmx-ejb-connector-client.jar -%%T%%/client/jmx-invoker-adaptor-client.jar -%%T%%/client/jmx-rmi-connector-client.jar -%%T%%/client/jnet.jar -%%T%%/client/jnp-client.jar -%%T%%/client/jsse.jar -%%T%%/client/log4j.jar -%%T%%/client/xdoclet-module-jboss-net.jar -%%T%%/lib/commons-httpclient.jar -%%T%%/lib/commons-logging.jar -%%T%%/lib/concurrent.jar -%%T%%/lib/dom4j.jar -%%T%%/lib/getopt.jar -%%T%%/lib/gnu-regexp.jar -%%T%%/lib/jboss-common.jar -%%T%%/lib/jboss-jmx.jar -%%T%%/lib/jboss-system.jar -%%T%%/lib/log4j-boot.jar -%%T%%/lib/webdavlib.jar -%%T%%/lib/xercesImpl.jar -%%T%%/lib/xml-apis.jar -%%T%%/log/stderr.log -%%T%%/log/stdout.log -%%T%%/server/all/conf/jacorb.properties -%%T%%/server/all/conf/jboss-minimal.xml -%%T%%/server/all/conf/jboss-service.xml -%%T%%/server/all/conf/jbossmq-state.xml -%%T%%/server/all/conf/jndi.properties -%%T%%/server/all/conf/log4j.xml -%%T%%/server/all/conf/login-config.xml -%%T%%/server/all/conf/server.policy -%%T%%/server/all/conf/standardjaws.xml -%%T%%/server/all/conf/standardjboss.xml -%%T%%/server/all/conf/standardjbosscmp-jdbc.xml -%%T%%/server/all/conf/xmdesc/ClientUserTransaction-xmbean.xml -%%T%%/server/all/conf/xmdesc/JNDIView-xmbean.xml -%%T%%/server/all/conf/xmdesc/TransactionManagerService-xmbean.xml -%%T%%/server/all/deploy-hasingleton/jms/hsqldb-jdbc-state-service.xml -%%T%%/server/all/deploy-hasingleton/jms/hsqldb-jdbc2-service.xml -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-destinations-service.xml -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/META-INF/MANIFEST.MF -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http/servlet/HTTPServerILServlet.class -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/roles.properties -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/users.properties -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/jboss-web.xml -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/web.xml -%%T%%/server/all/deploy-hasingleton/jms/jbossmq-service.xml -%%T%%/server/all/deploy-hasingleton/jms/jvm-il-service.xml -%%T%%/server/all/deploy-hasingleton/jms/oil-service.xml -%%T%%/server/all/deploy-hasingleton/jms/oil2-service.xml -%%T%%/server/all/deploy-hasingleton/jms/rmi-il-service.xml -%%T%%/server/all/deploy-hasingleton/jms/uil2-service.xml -%%T%%/server/all/deploy/cache-invalidation-service.xml -%%T%%/server/all/deploy/client-deployer-service.xml -%%T%%/server/all/deploy/cluster-service.xml -%%T%%/server/all/deploy/deploy-hasingleton-service.xml -%%T%%/server/all/deploy/deploy.last/farm-service.xml -%%T%%/server/all/deploy/hsqldb-ds.xml -%%T%%/server/all/deploy/http-invoker.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/http-invoker.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet$GetCredentialAction.class -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet$GetPrincipalAction.class -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet.class -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/NamingFactoryServlet.class -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/ReadOnlyAccessFilter.class -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/roles.properties -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/users.properties -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/jboss-web.xml -%%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/web.xml -%%T%%/server/all/deploy/iiop-service.xml -%%T%%/server/all/deploy/jboss-jca.sar -%%T%%/server/all/deploy/jboss-local-jdbc.rar -%%T%%/server/all/deploy/jboss-net.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jboss-net.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/jboss-net.sar/axis-config.xml -%%T%%/server/all/deploy/jboss-net.sar/axis.jar -%%T%%/server/all/deploy/jboss-net.sar/client-config.xml -%%T%%/server/all/deploy/jboss-net.sar/commons-discovery.jar -%%T%%/server/all/deploy/jboss-net.sar/commons-logging.jar -%%T%%/server/all/deploy/jboss-net.sar/jaxrpc.jar -%%T%%/server/all/deploy/jboss-net.sar/jboss-net.jar -%%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/WEB-INF/jboss-web.xml -%%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/WEB-INF/web.xml -%%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/index.html -%%T%%/server/all/deploy/jboss-net.sar/jmx-net.wsr/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jboss-net.sar/jmx-net.wsr/META-INF/web-service.xml -%%T%%/server/all/deploy/jboss-net.sar/saaj.jar -%%T%%/server/all/deploy/jboss-net.sar/wsdl4j.jar -%%T%%/server/all/deploy/jboss-xa-jdbc.rar -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/META-INF/ejb-jar.xml -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/META-INF/jboss.xml -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb/ClientTCLInterceptor.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb/ClusteredHTTPSessionBeanAbstract.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb/ClusteredHTTPSessionBeanCmp11.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb/ClusteredHTTPSessionBeanImpl.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb/ServerTCLInterceptor.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSession.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSessionBusiness.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSessionHome.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces/LocalClusteredHTTPSession.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces/LocalClusteredHTTPSessionHome.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jbossha-httpsession.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSession.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSessionBusiness.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces/ClusteredHTTPSessionHome.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces/LocalClusteredHTTPSession.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces/LocalClusteredHTTPSessionHome.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/server/ClusteredHTTPSessionService$CleanupDaemon.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/server/ClusteredHTTPSessionService.class -%%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/server/ClusteredHTTPSessionServiceMBean.class -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/WEB-INF/web.xml -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/index.html -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/jboss.css -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/logo.gif -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/xform.xsl -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/ant.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/catalina-manager.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/catalina-optional.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/catalina.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-beanutils.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-collections.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-digester.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-el.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-logging.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/commons-modeler.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/jakarta-regexp-1.3.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/jasper-compiler.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/jasper-runtime.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/jsp-api.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/naming-common.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/naming-resources.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/server.xml -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/servlet-api.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/servlets-common.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/servlets-default.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/servlets-invoker.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/servlets-webdav.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/sso-channel.xml -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/tomcat-coyote.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/tomcat-http11.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/tomcat-jk2.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/tomcat-util.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/tomcat50-service.jar -%%T%%/server/all/deploy/jbossweb-tomcat50.sar/web.xml -%%T%%/server/all/deploy/jms/hajndi-jms-ds.xml -%%T%%/server/all/deploy/jms/jms-ra.rar -%%T%%/server/all/deploy/jmx-console.war/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/jmx-console-roles.properties -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/jmx-console-users.properties -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/AddressPort.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/AttrResultInfo.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/OpResultInfo.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/Server.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html/ClusteredConsoleServlet.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html/HtmlAdaptorServlet.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model/DomainData.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model/MBeanData.class -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/jboss-web.xml -%%T%%/server/all/deploy/jmx-console.war/WEB-INF/web.xml -%%T%%/server/all/deploy/jmx-console.war/cluster/bootstrap.html -%%T%%/server/all/deploy/jmx-console.war/cluster/clusterView.jsp -%%T%%/server/all/deploy/jmx-console.war/cluster/index.html -%%T%%/server/all/deploy/jmx-console.war/displayMBeans.jsp -%%T%%/server/all/deploy/jmx-console.war/displayOpResult.jsp -%%T%%/server/all/deploy/jmx-console.war/images/logo.gif -%%T%%/server/all/deploy/jmx-console.war/index.jsp -%%T%%/server/all/deploy/jmx-console.war/inspectMBean.jsp -%%T%%/server/all/deploy/jmx-console.war/style_master.css -%%T%%/server/all/deploy/jmx-invoker-adaptor-server.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/jmx-invoker-adaptor-server.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/mail-service.xml -%%T%%/server/all/deploy/management/console-mgr.sar -%%T%%/server/all/deploy/management/web-console.war -%%T%%/server/all/deploy/monitoring-service.xml -%%T%%/server/all/deploy/properties-service.xml -%%T%%/server/all/deploy/schedule-manager-service.xml -%%T%%/server/all/deploy/scheduler-service.xml -%%T%%/server/all/deploy/snmp-adaptor.sar/META-INF/MANIFEST.MF -%%T%%/server/all/deploy/snmp-adaptor.sar/META-INF/jboss-service.xml -%%T%%/server/all/deploy/snmp-adaptor.sar/castor.jar -%%T%%/server/all/deploy/snmp-adaptor.sar/managers.xml -%%T%%/server/all/deploy/snmp-adaptor.sar/notifications.xml -%%T%%/server/all/deploy/sqlexception-service.xml -%%T%%/server/all/deploy/transaction-service.xml -%%T%%/server/all/deploy/user-service.xml -%%T%%/server/all/deploy/uuid-key-generator.sar -%%T%%/server/all/farm/cluster-examples-service.xml -%%T%%/server/all/lib/activation.jar -%%T%%/server/all/lib/autonumber-plugin.jar -%%T%%/server/all/lib/avalon-framework.jar -%%T%%/server/all/lib/bcel.jar -%%T%%/server/all/lib/bindingservice-plugin.jar -%%T%%/server/all/lib/bsh-core-1.3.0.jar -%%T%%/server/all/lib/bsh-deployer.jar -%%T%%/server/all/lib/commons-logging.jar -%%T%%/server/all/lib/hsqldb-plugin.jar -%%T%%/server/all/lib/hsqldb.jar -%%T%%/server/all/lib/jacorb.jar -%%T%%/server/all/lib/jboss-cache.jar -%%T%%/server/all/lib/jboss-common-jdbc-wrapper.jar -%%T%%/server/all/lib/jboss-iiop.jar -%%T%%/server/all/lib/jboss-j2ee.jar -%%T%%/server/all/lib/jboss-jaas.jar -%%T%%/server/all/lib/jboss-jsr77.jar -%%T%%/server/all/lib/jboss-management.jar -%%T%%/server/all/lib/jboss-monitoring.jar -%%T%%/server/all/lib/jboss-transaction.jar -%%T%%/server/all/lib/jboss.jar -%%T%%/server/all/lib/jbossha.jar -%%T%%/server/all/lib/jbossmq.jar -%%T%%/server/all/lib/jbosssx.jar -%%T%%/server/all/lib/jcert.jar -%%T%%/server/all/lib/jgroups.jar -%%T%%/server/all/lib/jmx-adaptor-plugin.jar -%%T%%/server/all/lib/jnet.jar -%%T%%/server/all/lib/jnpserver.jar -%%T%%/server/all/lib/jpl-pattern.jar -%%T%%/server/all/lib/jpl-util.jar -%%T%%/server/all/lib/jsse.jar -%%T%%/server/all/lib/log4j.jar -%%T%%/server/all/lib/mail-plugin.jar -%%T%%/server/all/lib/mail.jar -%%T%%/server/all/lib/properties-plugin.jar -%%T%%/server/all/lib/scheduler-plugin-example.jar -%%T%%/server/all/lib/scheduler-plugin.jar -%%T%%/server/all/lib/snmp-adaptor.jar -%%T%%/server/all/lib/snmp-support.jar -%%T%%/server/all/lib/xalan.jar -%%T%%/server/default/conf/jboss-minimal.xml -%%T%%/server/default/conf/jboss-service.xml -%%T%%/server/default/conf/jbossmq-state.xml -%%T%%/server/default/conf/jndi.properties -%%T%%/server/default/conf/log4j.xml -%%T%%/server/default/conf/login-config.xml -%%T%%/server/default/conf/server.policy -%%T%%/server/default/conf/standardjaws.xml -%%T%%/server/default/conf/standardjboss.xml -%%T%%/server/default/conf/standardjbosscmp-jdbc.xml -%%T%%/server/default/conf/xmdesc/ClientUserTransaction-xmbean.xml -%%T%%/server/default/conf/xmdesc/JNDIView-xmbean.xml -%%T%%/server/default/conf/xmdesc/TransactionManagerService-xmbean.xml -%%T%%/server/default/deploy/cache-invalidation-service.xml -%%T%%/server/default/deploy/client-deployer-service.xml -%%T%%/server/default/deploy/hsqldb-ds.xml -%%T%%/server/default/deploy/http-invoker.sar/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/http-invoker.sar/META-INF/jboss-service.xml -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet$GetCredentialAction.class -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet$GetPrincipalAction.class -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet.class -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/NamingFactoryServlet.class -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet/ReadOnlyAccessFilter.class -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/roles.properties -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/users.properties -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/jboss-web.xml -%%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/web.xml -%%T%%/server/default/deploy/jboss-jca.sar -%%T%%/server/default/deploy/jboss-local-jdbc.rar -%%T%%/server/default/deploy/jboss-xa-jdbc.rar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/WEB-INF/web.xml -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/index.html -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/jboss.css -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/logo.gif -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/xform.xsl -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/ant.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/catalina-manager.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/catalina-optional.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/catalina.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-beanutils.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-collections.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-digester.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-el.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-logging.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/commons-modeler.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/jakarta-regexp-1.3.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/jasper-compiler.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/jasper-runtime.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/jsp-api.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/naming-common.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/naming-resources.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/server.xml -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/servlet-api.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/servlets-common.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/servlets-default.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/servlets-invoker.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/servlets-webdav.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/sso-channel.xml -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/tomcat-coyote.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/tomcat-http11.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/tomcat-jk2.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/tomcat-util.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/tomcat50-service.jar -%%T%%/server/default/deploy/jbossweb-tomcat50.sar/web.xml -%%T%%/server/default/deploy/jms/hsqldb-jdbc-state-service.xml -%%T%%/server/default/deploy/jms/hsqldb-jdbc2-service.xml -%%T%%/server/default/deploy/jms/jbossmq-destinations-service.xml -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/META-INF/jboss-service.xml -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http/servlet/HTTPServerILServlet.class -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/roles.properties -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/users.properties -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/jboss-web.xml -%%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/web.xml -%%T%%/server/default/deploy/jms/jbossmq-service.xml -%%T%%/server/default/deploy/jms/jms-ds.xml -%%T%%/server/default/deploy/jms/jms-ra.rar -%%T%%/server/default/deploy/jms/jvm-il-service.xml -%%T%%/server/default/deploy/jms/uil2-service.xml -%%T%%/server/default/deploy/jmx-console.war/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/jmx-console-roles.properties -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/jmx-console-users.properties -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/AddressPort.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/AttrResultInfo.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/OpResultInfo.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control/Server.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html/ClusteredConsoleServlet.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html/HtmlAdaptorServlet.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model/DomainData.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model/MBeanData.class -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/jboss-web.xml -%%T%%/server/default/deploy/jmx-console.war/WEB-INF/web.xml -%%T%%/server/default/deploy/jmx-console.war/cluster/bootstrap.html -%%T%%/server/default/deploy/jmx-console.war/cluster/clusterView.jsp -%%T%%/server/default/deploy/jmx-console.war/cluster/index.html -%%T%%/server/default/deploy/jmx-console.war/displayMBeans.jsp -%%T%%/server/default/deploy/jmx-console.war/displayOpResult.jsp -%%T%%/server/default/deploy/jmx-console.war/images/logo.gif -%%T%%/server/default/deploy/jmx-console.war/index.jsp -%%T%%/server/default/deploy/jmx-console.war/inspectMBean.jsp -%%T%%/server/default/deploy/jmx-console.war/style_master.css -%%T%%/server/default/deploy/jmx-invoker-adaptor-server.sar/META-INF/MANIFEST.MF -%%T%%/server/default/deploy/jmx-invoker-adaptor-server.sar/META-INF/jboss-service.xml -%%T%%/server/default/deploy/mail-service.xml -%%T%%/server/default/deploy/management/console-mgr.sar -%%T%%/server/default/deploy/management/web-console.war -%%T%%/server/default/deploy/monitoring-service.xml -%%T%%/server/default/deploy/properties-service.xml -%%T%%/server/default/deploy/schedule-manager-service.xml -%%T%%/server/default/deploy/scheduler-service.xml -%%T%%/server/default/deploy/sqlexception-service.xml -%%T%%/server/default/deploy/transaction-service.xml -%%T%%/server/default/deploy/user-service.xml -%%T%%/server/default/deploy/uuid-key-generator.sar -%%T%%/server/default/lib/activation.jar -%%T%%/server/default/lib/autonumber-plugin.jar -%%T%%/server/default/lib/bcel.jar -%%T%%/server/default/lib/bindingservice-plugin.jar -%%T%%/server/default/lib/bsh-core-1.3.0.jar -%%T%%/server/default/lib/bsh-deployer.jar -%%T%%/server/default/lib/hsqldb-plugin.jar -%%T%%/server/default/lib/hsqldb.jar -%%T%%/server/default/lib/jboss-common-jdbc-wrapper.jar -%%T%%/server/default/lib/jboss-j2ee.jar -%%T%%/server/default/lib/jboss-jaas.jar -%%T%%/server/default/lib/jboss-jsr77.jar -%%T%%/server/default/lib/jboss-management.jar -%%T%%/server/default/lib/jboss-monitoring.jar -%%T%%/server/default/lib/jboss-transaction.jar -%%T%%/server/default/lib/jboss.jar -%%T%%/server/default/lib/jbossha.jar -%%T%%/server/default/lib/jbossmq.jar -%%T%%/server/default/lib/jbosssx.jar -%%T%%/server/default/lib/jcert.jar -%%T%%/server/default/lib/jmx-adaptor-plugin.jar -%%T%%/server/default/lib/jnet.jar -%%T%%/server/default/lib/jnpserver.jar -%%T%%/server/default/lib/jpl-pattern.jar -%%T%%/server/default/lib/jpl-util.jar -%%T%%/server/default/lib/jsse.jar -%%T%%/server/default/lib/log4j.jar -%%T%%/server/default/lib/mail-plugin.jar -%%T%%/server/default/lib/mail.jar -%%T%%/server/default/lib/properties-plugin.jar -%%T%%/server/default/lib/scheduler-plugin-example.jar -%%T%%/server/default/lib/scheduler-plugin.jar -%%T%%/server/default/lib/snmp-support.jar -%%T%%/server/default/lib/xalan.jar -%%T%%/server/minimal/conf/jboss-service.xml -%%T%%/server/minimal/conf/jndi.properties -%%T%%/server/minimal/conf/log4j.xml -%%T%%/server/minimal/deploy/user-service.xml -%%T%%/server/minimal/lib/jboss-management.jar -%%T%%/server/minimal/lib/jboss-minimal.jar -%%T%%/server/minimal/lib/jnet.jar -%%T%%/server/minimal/lib/jnpserver.jar -%%T%%/server/minimal/lib/log4j.jar -@dirrm %%T%%/server/minimal/lib -@dirrm %%T%%/server/minimal/deploy -@dirrm %%T%%/server/minimal/conf -@dirrm %%T%%/server/minimal -@dirrm %%T%%/server/default/lib -@dirrm %%T%%/server/default/deploy/management -@dirrm %%T%%/server/default/deploy/jmx-invoker-adaptor-server.sar/META-INF -@dirrm %%T%%/server/default/deploy/jmx-invoker-adaptor-server.sar -@dirrm %%T%%/server/default/deploy/jmx-console.war/images -@dirrm %%T%%/server/default/deploy/jmx-console.war/cluster -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes/org -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF/classes -@dirrm %%T%%/server/default/deploy/jmx-console.war/WEB-INF -@dirrm %%T%%/server/default/deploy/jmx-console.war/META-INF -@dirrm %%T%%/server/default/deploy/jmx-console.war -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http/servlet -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/META-INF -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar/META-INF -@dirrm %%T%%/server/default/deploy/jms/jbossmq-httpil.sar -@dirrm %%T%%/server/default/deploy/jms -@dirrm %%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/WEB-INF -@dirrm %%T%%/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war -@dirrm %%T%%/server/default/deploy/jbossweb-tomcat50.sar/META-INF -@dirrm %%T%%/server/default/deploy/jbossweb-tomcat50.sar -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/classes -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war/META-INF -@dirrm %%T%%/server/default/deploy/http-invoker.sar/invoker.war -@dirrm %%T%%/server/default/deploy/http-invoker.sar/META-INF -@dirrm %%T%%/server/default/deploy/http-invoker.sar -@dirrm %%T%%/server/default/deploy -@dirrm %%T%%/server/default/conf/xmdesc -@dirrm %%T%%/server/default/conf -@dirrm %%T%%/server/default -@dirrm %%T%%/server/all/lib -@dirrm %%T%%/server/all/farm -@dirrm %%T%%/server/all/deploy/snmp-adaptor.sar/META-INF -@dirrm %%T%%/server/all/deploy/snmp-adaptor.sar -@dirrm %%T%%/server/all/deploy/management -@dirrm %%T%%/server/all/deploy/jmx-invoker-adaptor-server.sar/META-INF -@dirrm %%T%%/server/all/deploy/jmx-invoker-adaptor-server.sar -@dirrm %%T%%/server/all/deploy/jmx-console.war/images -@dirrm %%T%%/server/all/deploy/jmx-console.war/cluster -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/model -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/html -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor/control -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx/adaptor -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss/jmx -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes/org -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF/classes -@dirrm %%T%%/server/all/deploy/jmx-console.war/WEB-INF -@dirrm %%T%%/server/all/deploy/jmx-console.war/META-INF -@dirrm %%T%%/server/all/deploy/jmx-console.war -@dirrm %%T%%/server/all/deploy/jms -@dirrm %%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war/WEB-INF -@dirrm %%T%%/server/all/deploy/jbossweb-tomcat50.sar/ROOT.war -@dirrm %%T%%/server/all/deploy/jbossweb-tomcat50.sar/META-INF -@dirrm %%T%%/server/all/deploy/jbossweb-tomcat50.sar -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/server -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl/interfaces -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession/beanimpl -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha/httpsession -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss/ha -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org/jboss -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/org -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/META-INF -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/interfaces -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl/ejb -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession/beanimpl -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha/httpsession -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss/ha -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org/jboss -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/org -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/META-INF -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar -@dirrm %%T%%/server/all/deploy/jbossha-httpsession.sar -@dirrm %%T%%/server/all/deploy/jboss-net.sar/jmx-net.wsr/META-INF -@dirrm %%T%%/server/all/deploy/jboss-net.sar/jmx-net.wsr -@dirrm %%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/WEB-INF -@dirrm %%T%%/server/all/deploy/jboss-net.sar/jboss-net.war/META-INF -@dirrm %%T%%/server/all/deploy/jboss-net.sar/jboss-net.war -@dirrm %%T%%/server/all/deploy/jboss-net.sar/META-INF -@dirrm %%T%%/server/all/deploy/jboss-net.sar -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http/servlet -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation/http -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss/invocation -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes/org -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF/classes -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/WEB-INF -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war/META-INF -@dirrm %%T%%/server/all/deploy/http-invoker.sar/invoker.war -@dirrm %%T%%/server/all/deploy/http-invoker.sar/META-INF -@dirrm %%T%%/server/all/deploy/http-invoker.sar -@dirrm %%T%%/server/all/deploy/deploy.last -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http/servlet -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il/http -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq/il -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss/mq -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org/jboss -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/org -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/META-INF -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/META-INF -@dirrm %%T%%/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar -@dirrm %%T%%/server/all/deploy-hasingleton/jms -@dirrm %%T%%/server/all/deploy-hasingleton -@dirrm %%T%%/server/all/deploy -@dirrm %%T%%/server/all/conf/xmdesc -@dirrm %%T%%/server/all/conf -@dirrm %%T%%/server/all -@dirrm %%T%%/server -@dirrm %%T%%/log -@dirrm %%T%%/lib -@dirrm %%T%%/client -@dirrm %%T%%/bin -@dirrm %%T%% |
