[csw-devel] SF.net SVN: gar:[11598] csw/mgar/pkg

rthurner at users.sourceforge.net rthurner at users.sourceforge.net
Sat Nov 13 14:07:56 CET 2010


Revision: 11598
          http://gar.svn.sourceforge.net/gar/?rev=11598&view=rev
Author:   rthurner
Date:     2010-11-13 13:07:55 +0000 (Sat, 13 Nov 2010)

Log Message:
-----------
tomcat: upgrade to tomcat7 by copying tomcat6

Added Paths:
-----------
    csw/mgar/pkg/tomcat7/
    csw/mgar/pkg/tomcat7/branches/
    csw/mgar/pkg/tomcat7/tags/
    csw/mgar/pkg/tomcat7/trunk/
    csw/mgar/pkg/tomcat7/trunk/Makefile
    csw/mgar/pkg/tomcat7/trunk/checksums
    csw/mgar/pkg/tomcat7/trunk/files/
    csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.depend
    csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.gspec
    csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.prototype
    csw/mgar/pkg/tomcat7/trunk/files/checkinstall
    csw/mgar/pkg/tomcat7/trunk/files/cswtomcat7
    csw/mgar/pkg/tomcat7/trunk/files/i.smfno
    csw/mgar/pkg/tomcat7/trunk/files/i.smfyes
    csw/mgar/pkg/tomcat7/trunk/files/postinstall
    csw/mgar/pkg/tomcat7/trunk/files/preinstall
    csw/mgar/pkg/tomcat7/trunk/files/preremove
    csw/mgar/pkg/tomcat7/trunk/files/space
    csw/mgar/pkg/tomcat7/trunk/files/svc-tomcat7
    csw/mgar/pkg/tomcat7/trunk/files/tomcat7
    csw/mgar/pkg/tomcat7/trunk/files/tomcat7.xml


Property changes on: csw/mgar/pkg/tomcat7/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/tomcat7/trunk/Makefile
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/Makefile	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,76 @@
+GARNAME      = apache-tomcat7
+GARVERSION   = 7.0.4
+CATEGORIES   = server
+
+DESCRIPTION  =  Apache Jakarta Tomcat 7 Servlet/JSP Container
+define BLURB
+Apache Tomcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies. The Java Servlet and JavaServer Pages specifications are developed by Sun under the Java Community Process.
+endef
+
+UPSTREAM_MASTER_SITES  =  http://mir2.ovh.net/ftp.apache.org/dist/jakarta/tomcat-7/
+MASTER_SITES  =  http://mir2.ovh.net/ftp.apache.org/dist/jakarta/tomcat-7/v$(GARVERSION)/bin/
+DISTFILES     = apache-tomcat-$(GARVERSION).tar.gz
+PKGDIST       = apache-tomcat-$(GARVERSION).tar.gz
+DISTFILES    += CSWtomcat7.gspec CSWtomcat7.prototype CSWtomcat7.depend preremove postinstall preinstall checkinstall space i.smfno i.smfyes svc-tomcat7 tomcat7.xml tomcat7 cswtomcat7
+LICENSE       = LICENSE
+
+# We define upstream file regex so we can be notifed of new upstream software release
+UFILES_REGEX = v(\d+(?:\.\d+)*)
+
+#ARCHALL_CSWapache-tomcat7       = 1
+
+CONFIGURE_SCRIPTS = none
+BUILD_SCRIPTS     = none
+TEST_SCRIPTS	  = none
+INSTALL_SCRIPTS   = tomcat
+prefix            = /
+
+include gar/category.mk
+
+configure-none:
+	@$(MAKECOOKIE)
+
+test-none:
+	@$(MAKECOOKIE)
+
+build-none:
+	@$(MAKECOOKIE)
+
+post-extract:
+	( mv $(WORKDIR)/apache-tomcat-$(GARVERSION) $(WORKDIR)/$(DISTNAME) )
+	( OLDDIR=`pwd` && cd $(WORKDIR)/$(DISTNAME)/conf && for i in `find . -type f` ; do mv $$i $$i.CSW ; done && cd $$OLDDIR )
+	( for i in temp work logs conf ; do  find $(WORKDIR)/$(DISTNAME)/$$i -type d -exec chmod 0750 {} \;  ; find $(WORKDIR)/$(DISTNAME)/$$i -type f -exec chmod 0640 {} \; ; done )
+	@$(MAKECOOKIE)
+
+install-tomcat:
+	( mkdir -p $(DESTDIR)/etc/init.d )
+	( mkdir -p $(DESTDIR)/etc/opt/csw )
+	( mkdir -p $(DESTDIR)/etc/rc0.d )
+	( mkdir -p $(DESTDIR)/etc/rc1.d )
+	( mkdir -p $(DESTDIR)/etc/rc2.d )
+	( mkdir -p $(DESTDIR)/etc/rc3.d )
+	( mkdir -p $(DESTDIR)/etc/rcS.d )
+	( mkdir -p $(DESTDIR)/opt/csw/etc/$(GARNAME) )
+	( mkdir -p $(DESTDIR)/var/opt/csw/$(GARNAME) )
+	( mkdir -p $(DESTDIR)/opt/csw/share )
+	( mkdir -p $(DESTDIR)/etc/opt/csw )
+	( cp -fr $(WORKDIR)/$(DISTNAME) $(DESTDIR)/opt/csw/share/$(GARNAME) )
+	( cp -fr $(FILEDIR)/$(GARNAME) $(DESTDIR)/etc/opt/csw/$(GARNAME) )
+	( cp -fr $(FILEDIR)/csw$(GARNAME) $(DESTDIR)/etc/init.d )
+	( mv     $(DESTDIR)/opt/csw/share/$(GARNAME)/conf $(DESTDIR)/opt/csw/etc/$(GARNAME)/conf )
+	( mv     $(DESTDIR)/opt/csw/share/$(GARNAME)/logs $(DESTDIR)/var/opt/csw/$(GARNAME) )
+	( mv     $(DESTDIR)/opt/csw/share/$(GARNAME)/work $(DESTDIR)/var/opt/csw/$(GARNAME) )
+	( mv     $(DESTDIR)/opt/csw/share/$(GARNAME)/temp $(DESTDIR)/var/opt/csw/$(GARNAME) )
+	( ln -s /opt/csw/etc/$(GARNAME)/conf $(DESTDIR)/opt/csw/share/$(GARNAME)/conf )
+	( ln -s /var/opt/csw/$(GARNAME)/logs $(DESTDIR)/opt/csw/share/$(GARNAME)/logs )
+	( ln -s /var/opt/csw/$(GARNAME)/work $(DESTDIR)/opt/csw/share/$(GARNAME)/work )
+	( ln -s /var/opt/csw/$(GARNAME)/temp $(DESTDIR)/opt/csw/share/$(GARNAME)/temp )
+	( ln -s /etc/init.d/cswtomcat7 $(DESTDIR)/etc/rc0.d/K17$(GARNAME) )
+	( ln -s /etc/init.d/cswtomcat7 $(DESTDIR)/etc/rc1.d/K17$(GARNAME) )
+	( ln -s /etc/init.d/cswtomcat7 $(DESTDIR)/etc/rc2.d/K17$(GARNAME) )
+	( ln -s /etc/init.d/cswtomcat7 $(DESTDIR)/etc/rc3.d/S51$(GARNAME) )
+	( ln -s /etc/init.d/cswtomcat7 $(DESTDIR)/etc/rcS.d/K17$(GARNAME) )
+	@$(MAKECOOKIE)
+
+
+


Property changes on: csw/mgar/pkg/tomcat7/trunk/Makefile
___________________________________________________________________
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/tomcat7/trunk/checksums
===================================================================
Added: csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.depend
===================================================================
Added: csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.gspec
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.gspec	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.gspec	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,5 @@
+%var            bitname tomcat6
+%var            pkgname CSWtomcat6
+%var            arch all
+%include        url file://%{PKGLIB}/csw_dyndepend.gspec
+%copyright      url file://%{WORKSRC}/LICENSE

Added: csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.prototype
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.prototype	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/CSWtomcat7.prototype	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,702 @@
+l smfno /etc/rc0.d/K17cswtomcat6=/etc/init.d/cswtomcat6
+l smfno /etc/rc1.d/K17cswtomcat6=/etc/init.d/cswtomcat6
+l smfno /etc/rc2.d/K17cswtomcat6=/etc/init.d/cswtomcat6
+l smfno /etc/rc3.d/S51cswtomcat6=/etc/init.d/cswtomcat6
+l smfno /etc/rcS.d/K17cswtomcat6=/etc/init.d/cswtomcat6
+d smfyes /opt/csw/var/svc 0755 root bin
+d smfyes /opt/csw/var/svc/manifest 0755 root bin
+d smfyes /opt/csw/var/svc/manifest/network 0755 root bin
+f smfyes /opt/csw/var/svc/manifest/network/tomcat6.xml=tomcat6.xml 0644 root bin
+d smfyes /opt/csw/lib/svc 0755 root bin
+d smfyes /opt/csw/lib/svc/method 0755 root bin
+f smfyes /opt/csw/lib/svc/method/svc-tomcat6=svc-tomcat6 0755 root bin
+f none /etc/init.d/cswtomcat6 0755 root bin
+f none /etc/opt/csw/tomcat6 0644 root bin
+s none /etc/rc0.d/K17tomcat6=/etc/init.d/cswtomcat6
+s none /etc/rc1.d/K17tomcat6=/etc/init.d/cswtomcat6
+s none /etc/rc2.d/K17tomcat6=/etc/init.d/cswtomcat6
+s none /etc/rc3.d/S51tomcat6=/etc/init.d/cswtomcat6
+s none /etc/rcS.d/K17tomcat6=/etc/init.d/cswtomcat6
+d none /opt/csw/etc/tomcat6 0755 root bin
+d none /opt/csw/etc/tomcat6/conf 0755 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/catalina.policy.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/catalina.properties.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/context.xml.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/logging.properties.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/server.xml.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/tomcat-users.xml.CSW 0640 tomcat tomcat
+f none /opt/csw/etc/tomcat6/conf/web.xml.CSW 0640 tomcat tomcat
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/tomcat6 0755 root bin
+f none /opt/csw/share/tomcat6/LICENSE 0644 root bin
+f none /opt/csw/share/tomcat6/NOTICE 0644 root bin
+f none /opt/csw/share/tomcat6/RELEASE-NOTES 0644 root bin
+f none /opt/csw/share/tomcat6/RUNNING.txt 0644 root bin
+d none /opt/csw/share/tomcat6/bin 0755 root bin
+f none /opt/csw/share/tomcat6/bin/bootstrap.jar 0644 root bin
+f none /opt/csw/share/tomcat6/bin/catalina-tasks.xml 0644 root bin
+f none /opt/csw/share/tomcat6/bin/catalina.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/catalina.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/commons-daemon.jar 0644 root bin
+f none /opt/csw/share/tomcat6/bin/cpappend.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/digest.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/digest.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/jsvc.tar.gz 0644 root bin
+f none /opt/csw/share/tomcat6/bin/service.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/setclasspath.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/setclasspath.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/shutdown.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/shutdown.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/startup.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/startup.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/tomcat-juli.jar 0644 root bin
+f none /opt/csw/share/tomcat6/bin/tomcat-native.tar.gz 0644 root bin
+f none /opt/csw/share/tomcat6/bin/tomcat6.exe 0644 root bin
+f none /opt/csw/share/tomcat6/bin/tomcat6w.exe 0644 root bin
+f none /opt/csw/share/tomcat6/bin/tool-wrapper.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/tool-wrapper.sh 0755 root bin
+f none /opt/csw/share/tomcat6/bin/version.bat 0644 root bin
+f none /opt/csw/share/tomcat6/bin/version.sh 0755 root bin
+s none /opt/csw/share/tomcat6/conf=/opt/csw/etc/tomcat6/conf
+d none /opt/csw/share/tomcat6/lib 0755 root bin
+f none /opt/csw/share/tomcat6/lib/annotations-api.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/catalina-ant.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/catalina-ha.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/catalina-tribes.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/catalina.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/el-api.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/jasper-el.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/jasper-jdt.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/jasper.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/jsp-api.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/servlet-api.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/tomcat-coyote.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/tomcat-dbcp.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/tomcat-i18n-es.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/tomcat-i18n-fr.jar 0644 root bin
+f none /opt/csw/share/tomcat6/lib/tomcat-i18n-ja.jar 0644 root bin
+s none /opt/csw/share/tomcat6/logs=/var/opt/csw/tomcat6/logs
+s none /opt/csw/share/tomcat6/temp=/var/opt/csw/tomcat6/temp
+d none /opt/csw/share/tomcat6/webapps 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/ROOT 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/RELEASE-NOTES.txt 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/ROOT/WEB-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/WEB-INF/web.xml 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/asf-logo-wide.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/build.xml 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/favicon.ico 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/index.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/tomcat-power.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/tomcat.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/ROOT/tomcat.svg 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/BUILDING.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/NOTICE 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/RELEASE-NOTES.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/RUNNING.txt 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/WEB-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/WEB-INF/web.xml 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/aio.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/api 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/api/index.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/build.xml.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/deployment.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/installation.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/introduction.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/printer 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/deployment.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/docs 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/docs/appdev 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/docs/appdev/build.xml.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/docs/appdev/web.xml.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/installation.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/introduction.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/processes.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/printer/source.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/processes.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/build.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/docs 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/docs/README.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/sample.war 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/src 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/src/mypackage 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/src/mypackage/Hello.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/WEB-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/WEB-INF/web.xml 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/hello.jsp 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/images/tomcat.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/sample/web/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/source.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/appdev/web.xml.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/apr.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/architecture 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/overview.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/architecture/printer 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/printer/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/printer/overview.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/printer/requestProcess.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/printer/startup.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/architecture/requestProcess 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/requestProcess.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/requestProcess/requestProcess.pdf 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/requestProcess/roseModel.mdl 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/architecture/startup 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/startup.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/startup/serverStartup.pdf 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/architecture/startup/serverStartup.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/balancer-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/building.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/cgi-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/changelog.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/class-loader-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/cluster-howto.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/config 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/ajp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-channel.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-deployer.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-interceptor.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-listener.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-manager.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-membership.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-receiver.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-sender.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster-valve.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/cluster.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/context.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/engine.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/executor.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/globalresources.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/host.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/http.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/loader.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/manager.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/config/printer 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/ajp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-channel.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-deployer.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-interceptor.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-listener.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-manager.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-membership.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-receiver.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-sender.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster-valve.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/cluster.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/context.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/engine.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/executor.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/globalresources.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/host.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/http.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/loader.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/manager.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/resources.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/server.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/service.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/systemprops.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/printer/valve.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/resources.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/server.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/service.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/systemprops.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/config/valve.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/connectors.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/default-servlet.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/deployer-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/developers.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/extras.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/funcspecs 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-admin-apps.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-admin-objects.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-admin-opers.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-default.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-invoker.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-jdbc-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-jndi-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/fs-memory-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/mbean-names.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-admin-apps.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-admin-objects.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-admin-opers.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-default.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-invoker.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-jdbc-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-jndi-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/fs-memory-realm.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/funcspecs/printer/mbean-names.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/html-manager-howto.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/add.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/asf-logo.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/code.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/design.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/docs.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/fix.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/printer.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/tomcat.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/tomcat.svg 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/update.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/images/void.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/introduction.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/jasper-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/jndi-datasource-examples-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/jndi-resources-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/logging.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/manager-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/maven-jars.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/mbeans-descriptor-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/monitoring.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/printer 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/BUILDING.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/NOTICE 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/RUNNING.txt 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/aio.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/apr.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/balancer-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/building.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/cgi-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/changelog.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/class-loader-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/cluster-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/connectors.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/default-servlet.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/deployer-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/developers.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/extras.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/html-manager-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/introduction.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/jasper-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/jndi-datasource-examples-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/jndi-resources-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/logging.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/manager-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/maven-jars.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/mbeans-descriptor-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/monitoring.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/proxy-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/realm-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/security-manager-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/setup.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/ssi-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/ssl-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/virtual-hosting-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/printer/windows-service-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/proxy-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/realm-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/security-manager-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/setup.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/ssi-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/ssl-howto.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/docs/tribes 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/tribes/faq.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/tribes/introduction.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/tribes/setup.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/virtual-hosting-howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/docs/windows-service-howto.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/CookieExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/CookieExample.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/HelloWorldExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/HelloWorldExample.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/LocalStrings.properties 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/LocalStrings_en.properties 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/LocalStrings_es.properties 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/LocalStrings_fr.properties 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/LocalStrings_pt.properties 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestHeaderExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestHeaderExample.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestInfoExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestInfoExample.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestParamExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/RequestParamExample.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/SessionExample.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/SessionExample.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/Entries.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/Entries.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/Entry.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/Entry.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/JspCalendar.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/JspCalendar.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/TableBean.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/cal/TableBean.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/chat 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/chat/ChatServlet.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/chat/ChatServlet.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/checkbox 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/checkbox/CheckTest.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/colors 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/colors/ColorGameBean.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/dates 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/dates/JspCalendar.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/dates/JspCalendar.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/error 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/error/Smart.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/error/Smart.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/FooTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/FooTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/LogTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/LogTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/ShowSource.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/examples/ShowSource.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/ExampleFilter.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/el 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/listeners 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/listeners/ContextListener.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/listeners/ContextListener.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/listeners/SessionListener.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/listeners/SessionListener.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/num 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/num/NumberGuessBean.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/servletToJsp.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/servletToJsp.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/sessions 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/sessions/DummyCart.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/sessions/DummyCart.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/util 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/util/HTMLFilter.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/util/HTMLFilter.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/validators 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/validators/DebugValidator.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/classes/validators/DebugValidator.java 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp/applet 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp/applet/Clock2.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp/debug-taglib.tld 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp/example-taglib.tld 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp2 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/jsp2/jsp2-example-taglib.tld 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/lib 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/lib/jstl.jar 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/lib/standard.jar 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/tags 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/tags/displayProducts.tag 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/tags/helloWorld.tag 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/tags/panel.tag 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/tags/xhtmlbasic.tag 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/WEB-INF/web.xml 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/index.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/cal 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/Entries.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/Entry.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/JspCalendar.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/TableBean.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/cal1.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/cal1.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/cal2.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/cal2.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/calendar.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/cal/login.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/chat 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/chat.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/chat.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/login.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/login.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/post.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/chat/post.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox/CheckTest.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox/check.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox/checkresult.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox/checkresult.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/checkbox/cresult.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/colors 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/colors/ColorGameBean.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/colors/clr.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/colors/colors.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/colors/colrs.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/colors/colrs.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/dates 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/dates/date.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/dates/date.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/dates/date.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/error 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/er.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/err.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/err.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/error.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/errorpge.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/error/errorpge.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/forward 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/forward.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/forward.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/fwd.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/one.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/one.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/forward/two.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/images/code.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/images/execute.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/images/read.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/images/return.gif 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/include 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/foo.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/foo.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/foo.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/inc.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/include.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/include/include.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/index.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/Functions.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-arithmetic.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-comparisons.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/functions.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/functions.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/functions.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/implicit-objects.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/implicit-objects.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/el/implicit-objects.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/FooBean.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/HelloWorldSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/ShuffleSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/TileSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/jspattribute.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/shuffle.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/basic.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/basic.jspx 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/basic.jspx.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/svgexample.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/textRotate.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/textRotate.jpg 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/textRotate.jspx 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/jspx/textRotate.jspx.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/EchoAttributesTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/coda.jspf 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/coda.jspf.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/config.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/config.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/config.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/dynamicattrs.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/prelude.jspf 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/misc/prelude.jspf.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/BookBean.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/FindBookSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/Functions.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/HelloWorldSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/RepeatSimpleTag.java.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/book.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/book.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/book.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/hello.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/hello.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/hello.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/repeat.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/repeat.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/simpletag/repeat.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/displayProducts.tag.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/hello.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/hello.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/hello.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/helloWorld.tag.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/panel.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/panel.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/panel.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/panel.tag.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/products.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/products.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/products.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsp2/tagfiles/xhtmlbasic.tag.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/hello.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/hello.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/jts.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/jsptoserv/servletToJsp.java.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/num 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/num/numguess.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/num/numguess.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/num/numguess.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/applet 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/applet/Clock2.class 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/applet/Clock2.java 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/plugin.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/plugin.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/plugin/plugin.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/security 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/error.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/error.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/index.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/index.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/login.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/security/protected/login.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions/DummyCart.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions/carts.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions/carts.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions/carts.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/sessions/crt.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/simpletag 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/simpletag/foo.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/simpletag/foo.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/simpletag/foo.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/snp 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/snp/snoop.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/snp/snoop.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/snp/snoop.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/source.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/source.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/choose.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/choose.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/choose.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/foreach.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/foreach.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/foreach.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/howto.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/if.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/if.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/if.jsp.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/tagplugin/notes.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/jsp/xml 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/xml/xml.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/xml/xml.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/jsp/xml/xml.jsp.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/servlets 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/cookies.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/helloworld.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/examples/servlets/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/images/code.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/images/execute.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/images/return.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/index.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/reqheaders.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/reqinfo.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/reqparams.html 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/examples/servlets/sessions.html 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/host-manager 0755 root bin
+d none /opt/csw/share/tomcat6/webapps/host-manager/META-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/META-INF/context.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/host-manager/WEB-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/WEB-INF/web.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/host-manager/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/add.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/asf-logo.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/code.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/design.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/docs.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/fix.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/tomcat.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/update.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/images/void.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/host-manager/manager.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/manager 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/401.jsp 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/manager/META-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/META-INF/context.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/manager/WEB-INF 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/WEB-INF/web.xml 0644 root bin
+d none /opt/csw/share/tomcat6/webapps/manager/images 0755 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/add.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/asf-logo.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/code.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/design.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/docs.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/fix.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/tomcat.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/update.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/images/void.gif 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/sessionDetail.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/sessionsList.jsp 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/status.xsd 0644 root bin
+f none /opt/csw/share/tomcat6/webapps/manager/xform.xsl 0644 root bin
+s none /opt/csw/share/tomcat6/work=/var/opt/csw/tomcat6/work
+d none /var/opt/csw/tomcat6 0755 root bin
+d none /var/opt/csw/tomcat6/logs 0755 tomcat tomcat
+d none /var/opt/csw/tomcat6/temp 0755 tomcat tomcat
+d none /var/opt/csw/tomcat6/work 0755 tomcat tomcat
+i copyright=CSWtomcat6.copyright
+i depend=CSWtomcat6.depend
+i pkginfo=CSWtomcat6.pkginfo
+i checkinstall
+i preremove
+i postinstall
+i preinstall
+i i.smfno
+i i.smfyes
+i space

Added: csw/mgar/pkg/tomcat7/trunk/files/checkinstall
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/checkinstall	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/checkinstall	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,21 @@
+# tomcat6 - checkinstall script
+#
+trap `exit 3` 15
+
+# Assign Solaris release class to install release specific files
+smf=no
+if [ -f /usr/sbin/svccfg -a -f /usr/sbin/svcadm ] ; then smf=yes ; fi
+if [ $smf = yes ]
+then
+        CLASSES='none smfyes'
+else
+        CLASSES='none smfno'
+fi
+
+# Make env variables available to other packaging scripts
+
+cat >$1 <<!
+CLASSES='$CLASSES'
+!
+
+exit 0

Added: csw/mgar/pkg/tomcat7/trunk/files/cswtomcat7
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/cswtomcat7	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/cswtomcat7	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,143 @@
+#!/sbin/sh
+
+##################################################################
+#
+# Configuration file documentation
+#
+# tomcat6
+#
+#     This file let you change the values of a few variables used 
+#     by the init script to control the environment of tomcat6
+#     The list of variables is described below.
+#
+#     The configuration file can be stored in two different path :
+#
+#     /etc/opt/csw
+#         This directory contain machine specific config files
+#
+#     /opt/csw/etc
+#         This directory contain global config files
+#
+#     If there exist a /etc/opt/csw/tomcat6 config file, then the
+#     environment variables defined in this file are used and the
+#     /opt/csw/etc/tomcat6/conf/tomcat6 file is ignored even if it 
+#     exist.
+#
+#     If there exist only a /opt/csw/etc/tomcat6/conf/tomcat6 config
+#     file, then the environnement variables defined in this file are
+#     used.
+#
+#     If no configuration file exist, all the variables needed by
+#     tomcat6 are let to their default values (see the values 
+#     below).
+#
+#     In all cases, the default values are defined, and supereded
+#     by the values stored in the configuration file. This is 
+#     necessary to define an environment usuable by tomcat.
+# 
+# Environment variables documentation
+#
+# JAVA_HOME
+#
+#     JAVA_HOME specify which version of Java should be used
+#     by tomcat. You can supered the default value in the tomcat6
+#     configuration file. The value of this variable must be a path
+#     pointing to the root of a valid JRE or JDK (the root dir not
+#     the bin dir !). The default value is /usr/java.
+#
+# TOMCAT_USER
+#
+#     TOMCAT_USER variable defines the Solaris user running the 
+#     tomcat server. You can supered the default valude in the 
+#     tomcat6 configuration file. The value of this variable must 
+#     be a valid Solaris user (ie: root, nobody). The default value
+#     is root.
+#
+#     WARNING : By default the directory permissions are set for
+#     the root user (no write access for 'nobody').
+#     The logs are stored in /opt/csw/share/tomcat6/logs, and do belong
+#     to root user. If you change the TOMCAT_USER, be sure that this
+#     user can write in the log directory.
+#
+#     The following permissions may also have to be changed :
+#     . give read access to the conf directory and all its subdirs
+#     . give write access to the conf dir to let tomcat create new files
+#     . give write access to the work dir
+#
+
+##################################################################
+# Setting the default values
+#
+# DO NOT EDIT THE FOLLOWING VALUES. 
+#
+# Use the configuration file to supered their value
+#
+
+SPECIFIC_CONFIG_FILE=/etc/opt/csw/tomcat6
+GLOBAL_CONFIG_FILE=/opt/csw/etc/tomcat6/conf/tomcat6
+
+JAVA_HOME=/usr/java
+TOMCAT_USER=tomcat
+
+##################################################################
+# Search for a custom configuration file in the default CSW paths
+#
+
+if [ -f $SPECIFIC_CONFIG_FILE ]
+then
+	echo Using configuration file : $SPECIFIC_CONFIG_FILE
+        . $SPECIFIC_CONFIG_FILE
+else
+        if [ -f $GLOBAL_CONFIG_FILE ]
+        then
+		echo Using configuration file : $GLOBAL_CONFIG_FILE
+                . $GLOBAL_CONFIG_FILE
+	fi
+fi
+
+echo "Using Java from : $JAVA_HOME"
+echo "Running as : $TOMCAT_USER (please see documentation included in $0 to change user)"
+
+##################################################################
+# Test if java is in the path defined by JAVA_HOME, if not try to 
+# guess path by testing standard directories
+#
+
+if [ ! -f $JAVA_HOME/bin/java ]
+then
+        echo "Java not found in $JAVA_HOME/bin. Trying /usr/java/bin"
+        JAVA_HOME=/usr/java
+        if [ ! -f $JAVA_HOME/bin/java ]
+        then
+                echo "Java not found in $JAVA_HOME/bin. Trying /usr/j2se/bin"
+                JAVA_HOME=/usr/j2se
+                if [ ! -f $JAVA_HOME/bin/java ]
+                then
+                        echo "Java not found in $JAVA_HOME/bin"
+                        echo "Java not found !"
+                        exit 1
+                fi
+        fi
+fi
+
+CATALINA_HOME=/opt/csw/share/tomcat6
+export JAVA_HOME
+export CATALINA_HOME
+
+case $1 in 
+'start')
+	/bin/su $TOMCAT_USER -c $CATALINA_HOME/bin/startup.sh
+        ;;
+'stop')
+	/bin/su $TOMCAT_USER -c $CATALINA_HOME/bin/shutdown.sh
+        ;;
+
+'restart')
+	/bin/su $TOMCAT_USER -c $CATALINA_HOME/bin/shutdown.sh
+	/bin/su $TOMCAT_USER -c $CATALINA_HOME/bin/startup.sh
+        ;;
+*)
+        echo "Usage: $0 { start | stop | restart }"
+        exit 1
+        ;;
+esac    


Property changes on: csw/mgar/pkg/tomcat7/trunk/files/cswtomcat7
___________________________________________________________________
Added: svn:executable
   + *

Added: csw/mgar/pkg/tomcat7/trunk/files/i.smfno
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/i.smfno	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/i.smfno	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,19 @@
+# tomcat6 - i.smfno script
+#
+# Copy the non-SMF specific files to the base directory.
+# The files to copy are:
+# /etc/init.d/cswtomcat6=cswtomcat6
+# /etc/rc0.d/K15cswtomcat6=/etc/init.d/cswtomcat6
+# /etc/rc1.d/K15cswtomcat6=/etc/init.d/cswtomcat6
+# /etc/rc2.d/K15cswtomcat6=/etc/init.d/cswtomcat6
+# /etc/rc3.d/S40cswtomcat6=/etc/init.d/cswtomcat6
+# /etc/rcS.d/K15cswtomcat6=/etc/init.d/cswtomcat6
+#
+echo "Installing class <smfno>."
+while read src dest
+do
+        # Do copy
+        /usr/bin/cp $src $dest || exit 2
+        echo $dest
+done
+exit 0

Added: csw/mgar/pkg/tomcat7/trunk/files/i.smfyes
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/i.smfyes	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/i.smfyes	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,20 @@
+# tomcat6 - i.smfyes script
+#
+# Copy the SMF specific files to the base directory.
+# The files specific to SMF are:
+# /opt/csw/var/svc
+# /opt/csw/var/svc/manifest
+# /opt/csw/var/svc/manifest/network
+# /opt/csw/var/svc/manifest/network/tomcat6.xml=/tomcat6.xml
+# /opt/csw/lib/svc
+# /opt/csw/lib/svc/method
+# /opt/csw/lib/svc/method/svc-tomcat6
+#
+echo "Installing class <smfyes>."
+while read src dest
+do
+        # Do copy
+        /usr/bin/cp $src $dest || exit 2
+        echo $dest
+done
+exit 0

Added: csw/mgar/pkg/tomcat7/trunk/files/postinstall
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/postinstall	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/postinstall	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,73 @@
+# daemons are started by default
+enable_daemon=yes
+
+# test the package root dir
+if [ "$PKG_ROOT_DIR" = "" ] ; then
+        PKG_ROOT_DIR="$PKG_INSTALL_ROOT"
+fi
+# if $PKG_ROOT_DIR is empty then there is no need to set it to / since the loop add it
+
+# Test if the confiuration file exists. If it does not, then copy the template
+# provided with this package. If it exists, then the script notify the user
+
+for i in `find $PKG_ROOT_DIR/opt/csw/share/tomcat6/conf/ -type file -name "*.CSW"` ; 
+        do newFile=`echo $i | sed -e 's/\.CSW/ /g'` ;
+        if [ ! -f $newFile ]
+        then
+                cp -p $i $newFile ;
+        else
+		eval diff $i $newFile > /dev/null
+		if test $? -eq 1
+		then
+                	echo File $newFile already exist and is different from the file included in the package. 
+			echo The latest file is available in $i
+			echo
+		fi
+        fi
+done
+
+# Source csw.conf, if it exists
+if [ -f $PKG_INSTALL_ROOT/opt/csw/etc/csw.conf ] ; then
+	. $PKG_INSTALL_ROOT/opt/csw/etc/csw.conf
+fi
+if [ -f $PKG_INSTALL_ROOT/etc/opt/csw/csw.conf ] ; then
+	. $PKG_INSTALL_ROOT/etc/opt/csw/csw.conf
+fi
+
+# If defined, autoenable for the specific daemon name takes precedence
+if [ "$autoenable_tomcat6" = "no" ] ; then
+	enable_daemon=no
+elif [ "$autoenable_daemons" = "no" -a ! -n "$autoenable_tomcat6" ] ; then
+	enable_daemon=no
+fi
+
+# Set variable smf depending on the availability of SMF binaries
+smf=no
+if [ -f /usr/sbin/svccfg -a -f /usr/sbin/svcadm ]
+	then
+  	smf=yes
+fi
+
+# If needed, configure SMF
+if [ $smf = yes ]
+then
+	# Register with SMF
+	echo "Configuring service in SMF"
+	/usr/sbin/svccfg import /opt/csw/var/svc/manifest/network/tomcat6.xml >/dev/null 2>&1
+	/usr/sbin/svcadm disable svc:/network/cswtomcat6 >/dev/null 2>&1
+	echo "Tomcat 6 is using Service Management Facility.  The FMRI is:"
+	echo "  svc:/network/cswtomcat6:default"
+fi
+
+# If enabled, start the daemon
+if [ "$enable_daemon" = "yes" ] ; then
+	echo "Starting tomcat6"
+	if [ $smf = no ]
+	then
+		/etc/init.d/cswtomcat6 start
+	else
+		/usr/sbin/svcadm enable svc:/network/cswtomcat6
+	fi
+fi
+
+exit 0


Property changes on: csw/mgar/pkg/tomcat7/trunk/files/postinstall
___________________________________________________________________
Added: svn:executable
   + *

Added: csw/mgar/pkg/tomcat7/trunk/files/preinstall
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/preinstall	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/preinstall	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,151 @@
+#!/bin/sh
+
+# test if the tomcat group exist, if not create it
+eval getent group tomcat > /dev/null
+if test $? -gt 0
+then 
+	groupadd tomcat > /dev/null
+	echo group tomcat has been added
+	
+	eval getent group tomcat > /dev/null
+	if test $? -gt 0
+	then
+		echo ERROR: Failed to add group tomcat
+		exit 1
+	fi
+fi
+
+# test if the tomcat user exist, if not create it
+eval getent passwd tomcat > /dev/null
+if test $? -gt 0
+then 	
+	useradd -c "Tomcat service user" -g tomcat -d /opt/csw/share -s /bin/sh tomcat > /dev/null
+	echo user tomcat has been added
+
+	eval getent passwd tomcat > /dev/null
+	if test $? -gt 0
+	then 	
+		echo ERROR: Failed to add user tomcat
+		exit 1
+	fi
+fi
+
+# The following code is designed to handle the case where after removing previous
+# CSWtomcat6 package, some files and directories are stillpresent on the file system.
+# Some of the directories content may need to be moved from /opt to /var
+
+# test the package root dir
+if [ "$PKG_ROOT_DIR" = "" ] ; then
+        PKG_ROOT_DIR="$PKG_INSTALL_ROOT"
+fi
+# if $PKG_ROOT_DIR is empty then there is no need to set it to / since the loop add it
+
+# For each f the directories that have been moved from /opt to /var
+for i in logs temp work ;
+
+        # Test if the directory exist. If not it will be created during install.
+        # Thus in this case, there is nothing to move
+        do if [ -d $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i ]
+        then
+                # Test if it is a symlink or not. If the symlink already exist, then
+                # there is nothing to do
+                if [ ! -h $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i ]
+                then
+                        # It is not a symlink, then we have to move data.
+                        # Test if the destination eixst or if we have to create it
+                        if [ ! -d $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i ]
+                        then
+                                echo creating  $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                                mkdir -p $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                        fi
+
+                        # Now destination exist. Need to move data to dest
+                        echo moving files from $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i to $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                        eval mv -f $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i/* $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                        if test $? -gt 0
+                        then
+                                echo ERROR: Failed to move files $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i/* to $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Files may have been partially moved. You have to move files back to $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                                echo ERROR: or finish manually to move content to $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Please check that there is not enough space available for $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i. You have to fix the issue before trying again to install this package.
+
+                                exit 1
+                        fi
+
+                        rm -fr $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                        eval ln -s $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                        if test $? -gt 0
+                        then
+                                echo ERROR: Failed to mcreate a symlink from $PKG_ROOT_DIR/var/opt/csw/tomcat6/$i to $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Please add the link manually before trying again to install this package.
+
+                                exit 1
+                        fi
+
+			# The following code handles the case where we upgrade from a previous version  
+			# User running tomcat was root. In this case we have to change the owner of
+			# the catalina.out file, or tomcat will not start. It is also needed to change the other log
+			# file owner or it may not work in some case (install old version and upgrade on the same day)
+
+			# No need to make more tests. If we are in this case (creation of the /var dir then ln to /opt) 
+			# it means that the file does not belong to tomcat but to root. 
+			if [ "$i" = "logs" ]
+			then
+				chown tomcat:tomcat  $PKG_ROOT_DIR/var/opt/csw/tomcat6/logs/* 
+			fi			 
+                fi
+        fi
+done
+
+# For each f the directories that have been moved from /opt to somewhere else in /opt
+for i in conf ;
+
+        # Test if the directory exist. If not it will be created during install.
+        # Thus in this case, there is nothing to move
+        do if [ -d $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i ]
+        then
+                # Test if it is a symlink or not. If the symlink already exist, then
+                # there is nothing to do
+                if [ ! -h $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i ]
+                then
+                        # It is not a symlink, then we have to move data.
+                        # Test if the destination eixst or if we have to create it
+                        if [ ! -d $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i ]
+                        then
+                                echo creating  $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                                mkdir -p $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                        fi
+
+                        # Now destination exist. Need to move data to dest
+                        echo moving files from $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i to $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                        eval mv -f $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i/* $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                        if test $? -gt 0
+                        then
+                                echo ERROR: Failed to move files $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i/* to $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Files may have been partially moved. You have to move files back to $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                                echo ERROR: or finish manually to move content to $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Please check that there is not enough space available for $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i. You have to fix the issue before trying again to install this package.
+
+                                exit 1
+                        fi
+
+                        rm -fr $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                        eval ln -s $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+
+                        if test $? -gt 0
+                        then
+                                echo ERROR: Failed to mcreate a symlink from $PKG_ROOT_DIR/opt/csw/etc/tomcat6/$i to $PKG_ROOT_DIR/opt/csw/share/tomcat6/$i
+                                echo ERROR:
+                                echo ERROR: Please add the link manually before trying again to install this package.
+
+                                exit 1
+                        fi
+                fi
+        fi
+done
+


Property changes on: csw/mgar/pkg/tomcat7/trunk/files/preinstall
___________________________________________________________________
Added: svn:executable
   + *

Added: csw/mgar/pkg/tomcat7/trunk/files/preremove
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/preremove	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/preremove	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,25 @@
+# tomcat6 - preremove script
+#
+
+# If removing from a filesystem that is not running the OS, exit this script.
+if [ ! x"$PKG_INSTALL_ROOT" = x"" ] ; then exit 0 ; fi
+
+# Stop tomcat6 if it is running.
+# If removing from a non-global zone, the service may still be 
+# installed/running.  Errors are ignored if nothing is done.
+smf=no
+if [ -f /usr/sbin/svccfg -a -f /usr/sbin/svcadm ] ;
+then smf=yes ; fi
+
+if [ $smf = yes ]
+  then
+  # Disable service
+     /usr/sbin/svcadm disable -s svc:network/cswtomcat6:default >/dev/null 2>&1
+else
+     /etc/init.d/cswtomcat6 stop >/dev/null 2>&1
+fi
+
+if [ $smf = yes ] ; then
+   # Unregister with SMF
+   /usr/sbin/svccfg delete svc:network/cswtomcat6:default >/dev/null 2>&1
+fi


Property changes on: csw/mgar/pkg/tomcat7/trunk/files/preremove
___________________________________________________________________
Added: svn:executable
   + *

Added: csw/mgar/pkg/tomcat7/trunk/files/space
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/space	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/space	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,3 @@
+# No additional space is actually needed.
+# In fact, only one set of the Solaris release specific files are installed.
+# So the space required for this package is less than what is in pkgmap.

Added: csw/mgar/pkg/tomcat7/trunk/files/svc-tomcat7
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/svc-tomcat7	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/svc-tomcat7	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,151 @@
+#!/sbin/sh
+
+##################################################################
+#
+# Configuration file documentation
+#
+# tomcat6
+#
+#     This file let you change the values of a few variables used 
+#     by the init script to control the environment of tomcat6
+#     The list of variables is described below.
+#
+#     The configuration file can be stored in two different path :
+#
+#     /etc/opt/csw
+#         This directory contain machine specific config files
+#
+#     /opt/csw/etc
+#         This directory contain global config files
+#
+#     If there exist a /etc/opt/csw/tomcat6 config file, then the
+#     environment variables defined in this file are used and the
+#     /opt/csw/etc/tomcat6/conf/tomcat6 file is ignored even if it 
+#     exist.
+#
+#     If there exist only a /opt/csw/etc/tomcat6/conf/tomcat6 config
+#     file, then the environnement variables defined in this file are
+#     used.
+#
+#     If no configuration file exist, all the variables needed by
+#     tomcat6 are let to their default values (see the values 
+#     below).
+#
+#     In all cases, the default values are defined, and supereded
+#     by the values stored in the configuration file. This is 
+#     necessary to define an environment usuable by tomcat.
+# 
+# Environment variables documentation
+#
+# JAVA_HOME
+#
+#     JAVA_HOME specify which version of Java should be used
+#     by tomcat. You can supered the default value in the tomcat6
+#     configuration file. The value of this variable must be a path
+#     pointing to the root of a valid JRE or JDK (the root dir not
+#     the bin dir !). The default value is /usr/java.
+#
+# TOMCAT_USER
+#
+#     TOMCAT_USER variable defines the Solaris user running the 
+#     tomcat server. You can supered the default valude in the 
+#     tomcat6 configuration file. The value of this variable must 
+#     be a valid Solaris user (ie: root, nobody). The default value
+#     is root.
+#
+#     WARNING : By default the directory permissions are set for
+#     the root user (no write access for 'nobody').
+#     The logs are stored in /opt/csw/share/tomcat6/logs, and do belong
+#     to root user. If you change the TOMCAT_USER, be sure that this
+#     user can write in the log directory.
+#
+#     The following permissions may also have to be changed :
+#     . give read access to the conf directory and all its subdirs
+#     . give write access to the conf dir to let tomcat create new files
+#     . give write access to the work dir
+#
+
+##################################################################
+# Setting the default values
+#
+# DO NOT EDIT THE FOLLOWING VALUES. 
+#
+# Use the configuration file to supered their value
+#
+
+SPECIFIC_CONFIG_FILE=/etc/opt/csw/tomcat6
+GLOBAL_CONFIG_FILE=/opt/csw/etc/tomcat6/conf/tomcat6
+
+JAVA_HOME=/usr/java
+TOMCAT_USER=tomcat
+
+##################################################################
+# Add some defines useful for SMF
+#
+
+. /lib/svc/share/smf_include.sh
+
+##################################################################
+# Search for a custom configuration file in the default CSW paths
+#
+
+if [ -f $SPECIFIC_CONFIG_FILE ]
+then
+	echo Using configuration file : $SPECIFIC_CONFIG_FILE
+        . $SPECIFIC_CONFIG_FILE
+else
+        if [ -f $GLOBAL_CONFIG_FILE ]
+        then
+		echo Using configuration file : $GLOBAL_CONFIG_FILE
+                . $GLOBAL_CONFIG_FILE
+	fi
+fi
+
+echo "Using Java from : $JAVA_HOME"
+echo "Running as : $TOMCAT_USER (please see documentation included in $0 to change user)"
+
+##################################################################
+# Test if java is in the path defined by JAVA_HOME, if not try to 
+# guess path by testing standard directories
+#
+
+if [ ! -f $JAVA_HOME/bin/java ]
+then
+        echo "Java not found in $JAVA_HOME/bin. Trying /usr/java/bin"
+        JAVA_HOME=/usr/java
+        if [ ! -f $JAVA_HOME/bin/java ]
+        then
+                echo "Java not found in $JAVA_HOME/bin. Trying /usr/j2se/bin"
+                JAVA_HOME=/usr/j2se
+                if [ ! -f $JAVA_HOME/bin/java ]
+                then
+                        echo "Java not found in $JAVA_HOME/bin"
+                        echo "Java not found !"
+                        exit 1
+                fi
+        fi
+fi
+
+CATALINA_HOME=/opt/csw/share/tomcat6
+export JAVA_HOME
+export CATALINA_HOME
+
+case $1 in 
+'start')
+	$CATALINA_HOME/bin/startup.sh
+        ;;
+'stop')
+	$CATALINA_HOME/bin/shutdown.sh
+        ;;
+
+'restart')
+	$CATALINA_HOME/bin/shutdown.sh
+	$CATALINA_HOME/bin/startup.sh
+        ;;
+*)
+        echo "Usage: $0 { start | stop | restart }"
+        exit 1
+        ;;
+esac    
+
+exit $SMF_EXIT_OK

Added: csw/mgar/pkg/tomcat7/trunk/files/tomcat7
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/tomcat7	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/tomcat7	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,34 @@
+# Environment variables documentation
+#
+# JAVA_HOME
+#
+#     JAVA_HOME specify which version of Java should be used
+#     by tomcat. You can supered the default value in the tomcat6
+#     configuration file. The value of this variable must be a path
+#     pointing to the root of a valid JRE or JDK (the root dir not
+#     the bin dir !). The default value is /usr/java.
+#
+
+# JAVA_HOME=/usr/java
+
+# TOMCAT_USER
+#
+#     TOMCAT_USER variable defines the Solaris user running the
+#     tomcat server. You can supered the default valude in the
+#     tomcat6 configuration file. The value of this variable must
+#     be a valid Solaris user (ie: root, nobody). The default value
+#     is tomcat.
+#
+#     WARNING : By default the directory permissions are set for
+#     the tomcat user (no write access for 'nobody').
+#     The logs are stored in /opt/csw/tomcat6/logs, and do belong
+#     to root user. If you change the TOMCAT_USER, be sure that this
+#     user can write in the log directory.
+#
+#     The following permissions may also have to be changed :
+#     . give read access to the conf directory and all its subdirs
+#     . give write access to the conf dir to let tomcat create new files
+#     . give write access to the work dir
+#
+
+TOMCAT_USER=tomcat 

Added: csw/mgar/pkg/tomcat7/trunk/files/tomcat7.xml
===================================================================
--- csw/mgar/pkg/tomcat7/trunk/files/tomcat7.xml	                        (rev 0)
+++ csw/mgar/pkg/tomcat7/trunk/files/tomcat7.xml	2010-11-13 13:07:55 UTC (rev 11598)
@@ -0,0 +1,43 @@
+<?xml version='1.0'?>
+<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
+<!--
+	William Pool (Puddle) 02/05
+	Service manifest for MySQL
+	E-mail:
+	Modified for CSWtomcat6 by william Bonnet 12/07
+-->
+
+<service_bundle type='manifest' name='tomcat:tomcat'>
+	<service name='network/cswtomcat6' type='service' version='1'>
+		<create_default_instance enabled='false' />
+	 	<single_instance />
+
+		<dependency name='fs' grouping='require_all' restart_on='none' type='service'>
+			<service_fmri value='svc:/system/filesystem/local' />
+		</dependency>
+	
+		<dependency name='net' grouping='require_all' restart_on='none' type='service'>
+			<service_fmri value='svc:/network/loopback' />
+		</dependency>
+	
+		<exec_method type='method' name='start' exec='/opt/csw/lib/svc/method/svc-tomcat6 start' timeout_seconds='-1'>
+            <method_context working_directory='/opt/csw/share/tomcat6'>
+				<method_credential user='tomcat' group='tomcat' />
+			</method_context>
+		</exec_method>
+	
+		<exec_method type='method' name='stop' exec='/opt/csw/lib/svc/method/svc-tomcat6 stop' timeout_seconds='-1'>
+            <method_context working_directory='/opt/csw/share/tomcat6'>
+				<method_credential user='tomcat' group='tomcat' />
+			</method_context>
+		</exec_method>
+	
+		<exec_method type='method' name='restart' exec='/opt/csw/lib/svc/method/svc-tomcat6 restart' timeout_seconds='-1'>
+            <method_context working_directory='/opt/csw/share/tomcat6'>
+				<method_credential user='tomcat' group='tomcat' />
+			</method_context>
+		</exec_method>
+	
+	</service>
+
+</service_bundle>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list