[jboss-cvs] JBossAS SVN: r88017 - in projects/fresh/trunk: etc/fresh and 3 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 29 13:20:36 EDT 2009


Author: ctomc
Date: 2009-04-29 13:20:36 -0400 (Wed, 29 Apr 2009)
New Revision: 88017

Added:
   projects/fresh/trunk/etc/fresh/
   projects/fresh/trunk/etc/fresh/init/
   projects/fresh/trunk/etc/fresh/init/init.rc
   projects/fresh/trunk/etc/fresh/init/static-init.sh
   projects/fresh/trunk/etc/fresh/ssh/
   projects/fresh/trunk/etc/fresh/ssh/automation.xml
   projects/fresh/trunk/etc/fresh/ssh/hello.txt
   projects/fresh/trunk/etc/fresh/ssh/platform.xml
   projects/fresh/trunk/etc/fresh/ssh/priv.skk
   projects/fresh/trunk/etc/fresh/ssh/pub.pkk
   projects/fresh/trunk/etc/fresh/ssh/server.xml
   projects/fresh/trunk/etc/fresh/ssh/sshtools.xml
Modified:
   projects/fresh/trunk/etc/0010-cp2-system-service.xml
   projects/fresh/trunk/etc/0020-cp2-threadpool-service.xml
   projects/fresh/trunk/etc/0040-cp2-vfs-service.xml
   projects/fresh/trunk/etc/0050-cp2-systemshell-service.xml
   projects/fresh/trunk/etc/0051-cp2-vfs-init-service.xml
   projects/fresh/trunk/fresh-shell/src/main/java/org/jboss/fresh/deployer/ContextBinder.java
Log:
deployment

Modified: projects/fresh/trunk/etc/0010-cp2-system-service.xml
===================================================================
--- projects/fresh/trunk/etc/0010-cp2-system-service.xml	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/etc/0010-cp2-system-service.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -3,14 +3,14 @@
 <!--  # # #  SYSTEM  # # # -->
 <!-- we should change this ... don't use constructor to initialize parameters. -->
 <server>
-	<mbean code="org.jboss.fresh.deployer.deployer.Cp2ConfigurationService" name="FRESH:service=Cp2ConfigurationService">
+	<mbean code="org.jboss.fresh.deployer.Cp2ConfigurationService" name="FRESH:service=Cp2ConfigurationService">
 		<attribute name="JNDIName">java:/FRESH/Configuration</attribute>
                 <attribute name="Properties">
-				cp2.UserTransaction.jndiName=UserTransaction
-		</attribute>
+										cp2.UserTransaction.jndiName=UserTransaction
+								</attribute>
 	</mbean>
 
-    <mbean code="org.jboss.fresh.deployer.deployer.ContextBinder" name="FRESH:service=GlobalContext">
+    <mbean code="org.jboss.fresh.deployer.ContextBinder" name="FRESH:service=GlobalContext">
 	    <attribute name="JNDIName">java:/FRESH/GlobalContext</attribute>
     </mbean>
 

Modified: projects/fresh/trunk/etc/0020-cp2-threadpool-service.xml
===================================================================
--- projects/fresh/trunk/etc/0020-cp2-threadpool-service.xml	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/etc/0020-cp2-threadpool-service.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <server>
-  <mbean code="org.jboss.fresh.deployer.deployer.PoolService" name="FRESH:service=ThreadPool">
+  <mbean code="org.jboss.fresh.deployer.PoolService" name="FRESH:service=ThreadPool">
 		<attribute name="JNDIName">java:/FRESH/ThreadPool</attribute>
 		<attribute name="FactoryName">org.jboss.fresh.cpii.services.PoolRunnerFactory</attribute>
 		<attribute name="PoolName">ThreadPool</attribute>

Modified: projects/fresh/trunk/etc/0040-cp2-vfs-service.xml
===================================================================
--- projects/fresh/trunk/etc/0040-cp2-vfs-service.xml	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/etc/0040-cp2-vfs-service.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -2,7 +2,7 @@
 
 <server>
 
-        <mbean code="org.jboss.fresh.deployer.deployer.VFSService" name="FRESH:service=VFS.Mem">
+        <mbean code="org.jboss.fresh.deployer.VFSService" name="FRESH:service=VFS.Mem">
                 <attribute name="JNDIName">java:/FRESH/VFSMem</attribute>
                 <attribute name="VFSImpl">org.jboss.fresh.vfs.impl.DefaultVFS</attribute>
                 <attribute name="MetaClassFactory">org.jboss.fresh.vfs.impl.mem.MemVFSMetaFactory</attribute>
@@ -13,7 +13,7 @@
                 <depends>FRESH:service=Cp2ConfigurationService</depends>
         </mbean>
 
-        <mbean code="org.jboss.fresh.deployer.deployer.RootVFSService" name="FRESH:service=VFS.Root">
+        <mbean code="org.jboss.fresh.deployer.RootVFSService" name="FRESH:service=VFS.Root">
                 <attribute name="JNDIName">java:/FRESH/VFS</attribute>
                 <attribute name="Automount">/=java:/FRESH/VFSMem</attribute>
                 <depends>FRESH:service=VFS.Mem</depends>

Modified: projects/fresh/trunk/etc/0050-cp2-systemshell-service.xml
===================================================================
--- projects/fresh/trunk/etc/0050-cp2-systemshell-service.xml	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/etc/0050-cp2-systemshell-service.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <server>
-	<mbean code="org.jboss.fresh.deployer.deployer.SystemShellService" name="FRESH:service=SystemShell">
+	<mbean code="org.jboss.fresh.deployer.SystemShellService" name="FRESH:service=SystemShell">
 		<attribute name="JNDIName">java:/FRESH/SystemShell</attribute>
 		<attribute name="ThreadPoolJNDIName">java:/FRESH/ThreadPool</attribute>
 		<attribute name="VFSJNDIName">java:/FRESH/VFS</attribute>

Modified: projects/fresh/trunk/etc/0051-cp2-vfs-init-service.xml
===================================================================
--- projects/fresh/trunk/etc/0051-cp2-vfs-init-service.xml	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/etc/0051-cp2-vfs-init-service.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -3,225 +3,224 @@
 <server>
 
 
-        <mbean code="com.parsek.deployer.modules.ShellExecutorService" name="FRESH:service=VFS.Mem.Init">
+        <mbean code="org.jboss.fresh.deployer.ShellExecutorService" name="FRESH:service=VFS.Mem.Init">
                 <attribute name="BatchCode">
 mkdir /home
 mkdir /home/admin
 mkdir /bin
 touch /bin/cd
 setffld /bin/cd mime cp2-shell/executable
-setattr /bin/cd Class com.parsek.shell.commands.CDExe
+setattr /bin/cd Class org.jboss.fresh.shell.commands.CDExe
 touch /bin/ls
 setffld /bin/ls mime cp2-shell/executable
-setattr /bin/ls Class com.parsek.shell.commands.LsExe
+setattr /bin/ls Class org.jboss.fresh.shell.commands.LsExe
 touch /bin/cat
 setffld /bin/cat mime cp2-shell/executable
-setattr /bin/cat Class com.parsek.shell.commands.CatExe
+setattr /bin/cat Class org.jboss.fresh.shell.commands.CatExe
 touch /bin/mkdir
 setffld /bin/mkdir mime cp2-shell/executable
-setattr /bin/mkdir Class com.parsek.shell.commands.MkDirExe
+setattr /bin/mkdir Class org.jboss.fresh.shell.commands.MkDirExe
 touch /bin/ln
 setffld /bin/ln mime cp2-shell/executable
-setattr /bin/ln Class com.parsek.shell.commands.LnExe
+setattr /bin/ln Class org.jboss.fresh.shell.commands.LnExe
 touch /bin/touch
 setffld /bin/touch mime cp2-shell/executable
-setattr /bin/touch Class com.parsek.shell.commands.TouchExe
+setattr /bin/touch Class org.jboss.fresh.shell.commands.TouchExe
 touch /bin/rm
 setffld /bin/rm mime cp2-shell/executable
-setattr /bin/rm Class com.parsek.shell.commands.RmExe
+setattr /bin/rm Class org.jboss.fresh.shell.commands.RmExe
 touch /bin/setattr
 setffld /bin/setattr mime cp2-shell/executable
-setattr /bin/setattr Class com.parsek.shell.commands.SetAttrExe
+setattr /bin/setattr Class org.jboss.fresh.shell.commands.SetAttrExe
 touch /bin/info
 setffld /bin/info mime cp2-shell/executable
-setattr /bin/info Class com.parsek.shell.commands.InfoExe
+setattr /bin/info Class org.jboss.fresh.shell.commands.InfoExe
 touch /bin/cp
 setffld /bin/cp mime cp2-shell/executable
-setattr /bin/cp Class com.parsek.shell.commands.CpExe
+setattr /bin/cp Class org.jboss.fresh.shell.commands.CpExe
 touch /bin/mv
 setffld /bin/mv mime cp2-shell/executable
-setattr /bin/mv Class com.parsek.shell.commands.MvExe
+setattr /bin/mv Class org.jboss.fresh.shell.commands.MvExe
 touch /bin/run
 setffld /bin/run mime cp2-shell/executable
-setattr /bin/run Class com.parsek.shell.commands.RunExe
+setattr /bin/run Class org.jboss.fresh.shell.commands.RunExe
 touch /bin/set
 setffld /bin/set mime cp2-shell/executable
-setattr /bin/set Class com.parsek.shell.commands.SetCommand
+setattr /bin/set Class org.jboss.fresh.shell.commands.SetCommand
 touch /bin/echo
 setffld /bin/echo mime cp2-shell/executable
-setattr /bin/echo Class com.parsek.shell.commands.EchoExe
+setattr /bin/echo Class org.jboss.fresh.shell.commands.EchoExe
 touch /bin/ps
 setffld /bin/ps mime cp2-shell/executable
-setattr /bin/ps Class com.parsek.shell.commands.PsExe
+setattr /bin/ps Class org.jboss.fresh.shell.commands.PsExe
 touch /bin/setffld
 setffld /bin/setffld mime cp2-shell/executable
-setattr /bin/setffld Class com.parsek.shell.commands.SetFileFieldExe
+setattr /bin/setffld Class org.jboss.fresh.shell.commands.SetFileFieldExe
 touch /bin/lslns
 setffld /bin/lslns mime cp2-shell/executable
-setattr /bin/lslns Class com.parsek.shell.commands.LsLnsExe
+setattr /bin/lslns Class org.jboss.fresh.shell.commands.LsLnsExe
 touch /bin/echos
 setffld /bin/echos mime cp2-shell/executable
-setattr /bin/echos Class com.parsek.shell.commands.EchosExe
+setattr /bin/echos Class org.jboss.fresh.shell.commands.EchosExe
 touch /bin/ctx
 setffld /bin/ctx mime cp2-shell/executable
-setattr /bin/ctx Class com.parsek.shell.commands.ContextExe
+setattr /bin/ctx Class org.jboss.fresh.shell.commands.ContextExe
 touch /bin/project
 setffld /bin/project mime cp2-shell/executable
-setattr /bin/project Class com.parsek.shell.commands.ProjectExe
+setattr /bin/project Class org.jboss.fresh.shell.commands.ProjectExe
 touch /bin/exec
 setffld /bin/exec mime cp2-shell/executable
-setattr /bin/exec Class com.parsek.shell.commands.RunExe
+setattr /bin/exec Class org.jboss.fresh.shell.commands.RunExe
 touch /bin/sh
 setffld /bin/sh mime cp2-shell/executable
-setattr /bin/sh Class com.parsek.shell.commands.ScriptExe
+setattr /bin/sh Class org.jboss.fresh.shell.commands.ScriptExe
 touch /bin/jndi
 setffld /bin/jndi mime cp2-shell/executable
-setattr /bin/jndi Class com.parsek.shell.commands.JNDIExe
+setattr /bin/jndi Class org.jboss.fresh.shell.commands.JNDIExe
 touch /bin/deploy
 setffld /bin/deploy mime cp2-shell/executable
-setattr /bin/deploy Class com.parsek.shell.commands.ProjectDeployExe
+setattr /bin/deploy Class org.jboss.fresh.shell.commands.ProjectDeployExe
 touch /bin/grep
 setffld /bin/grep mime cp2-shell/executable
-setattr /bin/grep Class com.parsek.shell.commands.GrepExe
+setattr /bin/grep Class org.jboss.fresh.shell.commands.GrepExe
 touch /bin/reg
 setffld /bin/reg mime cp2-shell/executable
-setattr /bin/reg Class com.parsek.shell.commands.RegistryExe
+setattr /bin/reg Class org.jboss.fresh.shell.commands.RegistryExe
 touch /bin/ecquery
 setffld /bin/ecquery mime cp2-shell/executable
-setattr /bin/ecquery Class com.parsek.shell.commands.EventCentralQueryExe
+setattr /bin/ecquery Class org.jboss.fresh.shell.commands.EventCentralQueryExe
 touch /bin/wget
 setffld /bin/wget mime cp2-shell/executable
-setattr /bin/wget Class com.parsek.shell.commands.util.WebGetExe
+setattr /bin/wget Class org.jboss.fresh.shell.commands.util.WebGetExe
 touch /bin/history
 setffld /bin/history mime cp2-shell/executable
-setattr /bin/history Class com.parsek.shell.commands.HistoryExe
+setattr /bin/history Class org.jboss.fresh.shell.commands.HistoryExe
 touch /bin/sync
 setffld /bin/sync mime cp2-shell/executable
-setattr /bin/sync Class com.parsek.shell.commands.cms.SyncQueueExecutable
+setattr /bin/sync Class org.jboss.fresh.shell.commands.cms.SyncQueueExecutable
 touch /bin/kill
 setffld /bin/kill mime cp2-shell/executable
-setattr /bin/kill Class com.parsek.shell.commands.KillExe
+setattr /bin/kill Class org.jboss.fresh.shell.commands.KillExe
 touch /bin/mbinvoke
 setffld /bin/mbinvoke mime cp2-shell/executable
-setattr /bin/mbinvoke Class com.parsek.shell.commands.MBeanInvokeExe
+setattr /bin/mbinvoke Class org.jboss.fresh.shell.commands.MBeanInvokeExe
 touch /bin/mbquery
 setffld /bin/mbquery mime cp2-shell/executable
-setattr /bin/mbquery Class com.parsek.shell.commands.MBeanQueryExe
+setattr /bin/mbquery Class org.jboss.fresh.shell.commands.MBeanQueryExe
 touch /bin/alias
 setffld /bin/alias mime cp2-shell/executable
-setattr /bin/alias Class com.parsek.shell.commands.AliasExe
+setattr /bin/alias Class org.jboss.fresh.shell.commands.AliasExe
 mkdir /etc
-cat &gt; /etc/seg_fetch.js &amp;&lt; ../cp2/vfs/init/etc/seg_fetch.js
 mkdir /etc/shell
-cat &gt; /etc/shell/init.rc &amp;&lt; ../cp2/vfs/init/init.rc
+cat &gt; /etc/shell/init.rc &amp;&lt; ../fresh/init/init.rc
 mkdir /usr
 mkdir /usr/local
 mkdir /usr/local/cms
 touch /usr/local/cms/cmsfilter
 setffld /usr/local/cms/cmsfilter mime cp2-shell/executable
-setattr /usr/local/cms/cmsfilter Class com.parsek.shell.commands.cms.CMSFilterExe
+setattr /usr/local/cms/cmsfilter Class org.jboss.fresh.shell.commands.cms.CMSFilterExe
 touch /usr/local/cms/events
 setffld /usr/local/cms/events mime cp2-shell/executable
-setattr /usr/local/cms/events Class com.parsek.shell.commands.EventsExe
+setattr /usr/local/cms/events Class org.jboss.fresh.shell.commands.EventsExe
 touch /usr/local/cms/loadObject
 setffld /usr/local/cms/loadObject mime cp2-shell/executable
-setattr /usr/local/cms/loadObject Class com.parsek.shell.commands.cms.LoadObjExe
+setattr /usr/local/cms/loadObject Class org.jboss.fresh.shell.commands.cms.LoadObjExe
 touch /usr/local/cms/queryObjects
 setffld /usr/local/cms/queryObjects mime cp2-shell/executable
-setattr /usr/local/cms/queryObjects Class com.parsek.shell.commands.cms.QueryObjExe
+setattr /usr/local/cms/queryObjects Class org.jboss.fresh.shell.commands.cms.QueryObjExe
 touch /usr/local/cms/removeObject
 setffld /usr/local/cms/removeObject mime cp2-shell/executable
-setattr /usr/local/cms/removeObject Class com.parsek.shell.commands.cms.RemoveObjExe
+setattr /usr/local/cms/removeObject Class org.jboss.fresh.shell.commands.cms.RemoveObjExe
 touch /usr/local/cms/saveObject
 setffld /usr/local/cms/saveObject mime cp2-shell/executable
-setattr /usr/local/cms/saveObject Class com.parsek.shell.commands.cms.SaveObjExe
+setattr /usr/local/cms/saveObject Class org.jboss.fresh.shell.commands.cms.SaveObjExe
 touch /usr/local/cms/ctxdelegate
 setffld /usr/local/cms/ctxdelegate mime cp2-shell/executable
-setattr /usr/local/cms/ctxdelegate Class com.parsek.shell.commands.cms.CtxDelegateExe
+setattr /usr/local/cms/ctxdelegate Class org.jboss.fresh.shell.commands.cms.CtxDelegateExe
 touch /usr/local/cms/objformat
 setffld /usr/local/cms/objformat mime cp2-shell/executable
-setattr /usr/local/cms/objformat Class com.parsek.shell.commands.cms.ObjIFormatExe
+setattr /usr/local/cms/objformat Class org.jboss.fresh.shell.commands.cms.ObjIFormatExe
 touch /usr/local/cms/binary
 setffld /usr/local/cms/binary mime cp2-shell/executable
-setattr /usr/local/cms/binary Class com.parsek.shell.commands.cms.BinaryExe
+setattr /usr/local/cms/binary Class org.jboss.fresh.shell.commands.cms.BinaryExe
 touch /usr/local/cms/createObject
 setffld /usr/local/cms/createObject mime cp2-shell/executable
-setattr /usr/local/cms/createObject Class com.parsek.shell.commands.cms.CreateObjExe
+setattr /usr/local/cms/createObject Class org.jboss.fresh.shell.commands.cms.CreateObjExe
 touch /usr/local/cms/pkgen
 setffld /usr/local/cms/pkgen mime cp2-shell/executable
-setattr /usr/local/cms/pkgen Class com.parsek.shell.commands.cms.PKGenExe
+setattr /usr/local/cms/pkgen Class org.jboss.fresh.shell.commands.cms.PKGenExe
 touch /usr/local/cms/category
 setffld /usr/local/cms/category mime cp2-shell/executable
-setattr /usr/local/cms/category Class com.parsek.shell.commands.cms.CategoryExe
+setattr /usr/local/cms/category Class org.jboss.fresh.shell.commands.cms.CategoryExe
 touch /usr/local/cms/children
 setffld /usr/local/cms/children mime cp2-shell/executable
-setattr /usr/local/cms/children Class com.parsek.shell.commands.cms.ChildrenExe
+setattr /usr/local/cms/children Class org.jboss.fresh.shell.commands.cms.ChildrenExe
 touch /usr/local/cms/diag
 setffld /usr/local/cms/diag mime cp2-shell/executable
-setattr /usr/local/cms/diag Class com.parsek.shell.commands.util.DiagExe
+setattr /usr/local/cms/diag Class org.jboss.fresh.shell.commands.util.DiagExe
 touch /usr/local/cms/queryRelations
 setffld /usr/local/cms/queryRelations mime cp2-shell/executable
-setattr /usr/local/cms/queryRelations Class com.parsek.shell.commands.cms.QueryRelationsExe
+setattr /usr/local/cms/queryRelations Class org.jboss.fresh.shell.commands.cms.QueryRelationsExe
 touch /usr/local/cms/addRelation
 setffld /usr/local/cms/addRelation mime cp2-shell/executable
-setattr /usr/local/cms/addRelation Class com.parsek.shell.commands.cms.AddRelationExe
+setattr /usr/local/cms/addRelation Class org.jboss.fresh.shell.commands.cms.AddRelationExe
 touch /usr/local/cms/removeRelation
 setffld /usr/local/cms/removeRelation mime cp2-shell/executable
-setattr /usr/local/cms/removeRelation Class com.parsek.shell.commands.cms.RemoveRelationExe
+setattr /usr/local/cms/removeRelation Class org.jboss.fresh.shell.commands.cms.RemoveRelationExe
 touch /usr/local/cms/cquery
 setffld /usr/local/cms/cquery mime cp2-shell/executable
-setattr /usr/local/cms/cquery Class com.parsek.shell.commands.cms.CachedQueryObjExe
+setattr /usr/local/cms/cquery Class org.jboss.fresh.shell.commands.cms.CachedQueryObjExe
 touch /usr/local/cms/rsget
 setffld /usr/local/cms/rsget mime cp2-shell/executable
-setattr /usr/local/cms/rsget Class com.parsek.shell.commands.cms.RSGetExe
+setattr /usr/local/cms/rsget Class org.jboss.fresh.shell.commands.cms.RSGetExe
 touch /usr/local/cms/rsclose
 setffld /usr/local/cms/rsclose mime cp2-shell/executable
-setattr /usr/local/cms/rsclose Class com.parsek.shell.commands.cms.RSCloseExe
+setattr /usr/local/cms/rsclose Class org.jboss.fresh.shell.commands.cms.RSCloseExe
 touch /usr/local/cms/cqueryRelations
 setffld /usr/local/cms/cqueryRelations mime cp2-shell/executable
-setattr /usr/local/cms/cqueryRelations Class com.parsek.shell.commands.cms.CachedQueryRelationsExe
+setattr /usr/local/cms/cqueryRelations Class org.jboss.fresh.shell.commands.cms.CachedQueryRelationsExe
 touch /usr/local/cms/rsinfo
 setffld /usr/local/cms/rsinfo mime cp2-shell/executable
-setattr /usr/local/cms/rsinfo Class com.parsek.shell.commands.cms.RSInfoExe
+setattr /usr/local/cms/rsinfo Class org.jboss.fresh.shell.commands.cms.RSInfoExe
 touch /usr/local/cms/savexml
 setffld /usr/local/cms/savexml mime cp2-shell/executable
-setattr /usr/local/cms/savexml Class com.parsek.shell.commands.cms.XmlSaverExe
+setattr /usr/local/cms/savexml Class org.jboss.fresh.shell.commands.cms.XmlSaverExe
 touch /usr/local/cms/moveRelation
 setffld /usr/local/cms/moveRelation mime cp2-shell/executable
-setattr /usr/local/cms/moveRelation Class com.parsek.shell.commands.cms.MoveRelationExe
+setattr /usr/local/cms/moveRelation Class org.jboss.fresh.shell.commands.cms.MoveRelationExe
 touch /usr/local/cms/security
 setffld /usr/local/cms/security mime cp2-shell/executable
-setattr /usr/local/cms/security Class com.parsek.shell.commands.cms.SecurityExe
+setattr /usr/local/cms/security Class org.jboss.fresh.shell.commands.cms.SecurityExe
 touch /usr/local/cms/idxclear
 setffld /usr/local/cms/idxclear mime cp2-shell/executable
-setattr /usr/local/cms/idxclear Class com.parsek.shell.commands.IndexClearExe
+setattr /usr/local/cms/idxclear Class org.jboss.fresh.shell.commands.IndexClearExe
 touch /usr/local/cms/types
 setffld /usr/local/cms/types mime cp2-shell/executable
-setattr /usr/local/cms/types Class com.parsek.shell.commands.cms.ListAssetTypesExe
+setattr /usr/local/cms/types Class org.jboss.fresh.shell.commands.cms.ListAssetTypesExe
 touch /usr/local/cms/queryMeta
 setffld /usr/local/cms/queryMeta mime cp2-shell/executable
-setattr /usr/local/cms/queryMeta Class com.parsek.shell.commands.cms.QueryMetaExe
+setattr /usr/local/cms/queryMeta Class org.jboss.fresh.shell.commands.cms.QueryMetaExe
 touch /usr/local/cms/idxcreate
 setffld /usr/local/cms/idxcreate mime cp2-shell/executable
-setattr /usr/local/cms/idxcreate Class com.parsek.shell.commands.IndexCreateExe
+setattr /usr/local/cms/idxcreate Class org.jboss.fresh.shell.commands.IndexCreateExe
 touch /usr/local/cms/idxquery
 setffld /usr/local/cms/idxquery mime cp2-shell/executable
-setattr /usr/local/cms/idxquery Class com.parsek.shell.commands.IndexQueryExe
+setattr /usr/local/cms/idxquery Class org.jboss.fresh.shell.commands.IndexQueryExe
 touch /usr/local/cms/idxadd
 setffld /usr/local/cms/idxadd mime cp2-shell/executable
-setattr /usr/local/cms/idxadd Class com.parsek.shell.commands.IndexAddExe
+setattr /usr/local/cms/idxadd Class org.jboss.fresh.shell.commands.IndexAddExe
 touch /usr/local/cms/idxdump
 setffld /usr/local/cms/idxdump mime cp2-shell/executable
-setattr /usr/local/cms/idxdump Class com.parsek.shell.commands.IndexDumpExe
+setattr /usr/local/cms/idxdump Class org.jboss.fresh.shell.commands.IndexDumpExe
 touch /usr/local/cms/idxupdate
 setffld /usr/local/cms/idxupdate mime cp2-shell/executable
-setattr /usr/local/cms/idxupdate Class com.parsek.shell.commands.IndexUpdateExe
+setattr /usr/local/cms/idxupdate Class org.jboss.fresh.shell.commands.IndexUpdateExe
 touch /usr/local/cms/idxoptimize
 setffld /usr/local/cms/idxoptimize mime cp2-shell/executable
-setattr /usr/local/cms/idxoptimize Class com.parsek.shell.commands.IndexOptimizeExe
+setattr /usr/local/cms/idxoptimize Class org.jboss.fresh.shell.commands.IndexOptimizeExe
 touch /usr/local/cms/idxmerge
 setffld /usr/local/cms/idxmerge mime cp2-shell/executable
-setattr /usr/local/cms/idxmerge Class com.parsek.shell.commands.IndexMergeExe
+setattr /usr/local/cms/idxmerge Class org.jboss.fresh.shell.commands.IndexMergeExe
 mkdir /tmp
 mkdir /projects
 

Added: projects/fresh/trunk/etc/fresh/init/init.rc
===================================================================
--- projects/fresh/trunk/etc/fresh/init/init.rc	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/init/init.rc	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,9 @@
+set PATH = .:/bin:/usr/local/cms
+set SERIALIZE_MODE = true
+set SESSION_TIMEOUT = 1800000
+set PROCESS_TIMEOUT = 600000
+set BINARY_STORE = binstore
+set PRODUCTION_STORE = binstore
+set TEMPORARY_STORE = tmp
+reg -g java:/CP2/Deployment | ctx -b DeploymentService
+reg -g java:/CP2/Scripting  | ctx -b ScriptingServices

Added: projects/fresh/trunk/etc/fresh/init/static-init.sh
===================================================================
--- projects/fresh/trunk/etc/fresh/init/static-init.sh	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/init/static-init.sh	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,10 @@
+
+mkdir /projects/laibach
+cat > /projects/laibach/project-init.rc &< ../cp2/laibach/init/project-init.rc
+
+mkdir /projects/adria
+cat > /projects/adria/project-init.rc &< ../cp2/adria/init/project-init.rc
+
+mkdir /projects/activita
+cat > /projects/activita/project-init.rc &< ../cp2/activita/init/project-init.rc
+

Added: projects/fresh/trunk/etc/fresh/ssh/automation.xml
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/automation.xml	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/automation.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- SSHTools automation file, defines mappings for automated configuration -->
+<Automation>
+    <RemoteIdentification defaultName="OpenSSH">
+       <Rule startsWith="OpenSSH"/>
+       <Rule startsWith="OpenSSH" contains="3.4" name="OpenSSH 3.4" priority="1"/>
+       <AuthorizedKeysFormat implementationClass="com.sshtools.common.automate.OpenSSHAuthorizedKeysFormat"
+                             defaultPath=".ssh/authorized_keys"/>
+    </RemoteIdentification>
+    <RemoteIdentification defaultName="SSHTools">
+       <Rule startsWith="http://www.sshtools.com"/>
+       <AuthorizedKeysFormat implementationClass="com.sshtools.common.automate.SshtoolsAuthorizedKeysFormat"
+                             defaultPath=".ssh2/authorization.xml"/>
+    </RemoteIdentification>
+    <RemoteIdentification defaultName="SSH2">
+       <Rule contains="SSH Secure Shell"/>
+       <AuthorizedKeysFormat implementationClass="com.sshtools.common.automate.SSH2AuthorizedKeysFormat"
+                             defaultPath=".ssh2/authorization"/>
+    </RemoteIdentification>
+
+</Automation>
\ No newline at end of file

Added: projects/fresh/trunk/etc/fresh/ssh/hello.txt
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/hello.txt	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/hello.txt	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,3 @@
+CP2 (c) 2.0 CR1 2002-2007 Parsek Ltd.
+
+Login: 

Added: projects/fresh/trunk/etc/fresh/ssh/platform.xml
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/platform.xml	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/platform.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+Platform configuration file - Determines the behaviour of platform specific services
+-->
+<PlatformConfiguration>
+   <!-- The process provider for executing and redirecting a process -->
+   <NativeProcessProvider>com.parsek.ssh.cp2.SSHShell</NativeProcessProvider>
+   <!-- The authentication provider for authenticating users and obtaining user information -->
+   <NativeAuthenticationProvider>com.parsek.ssh.cp2.Cp2AuthenticationProvider</NativeAuthenticationProvider>
+   <!-- The file system provider for SFTP -->
+   <NativeFileSystemProvider>com.parsek.vfs</NativeFileSystemProvider>
+   <!-- Native settings which may be used by the process or authentication provider -->
+   <!-- Add native settings here -->
+   <!-- <NativeSetting Name="AuthenticateOnDomain" Value="."/> -->
+</PlatformConfiguration>

Added: projects/fresh/trunk/etc/fresh/ssh/priv.skk
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/priv.skk	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/priv.skk	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,8 @@
+---- BEGIN SSHTOOLS ENCRYPTED PRIVATE KEY ----
+AAAABG5vbmUAAAFGAAAAB3NzaC1kc3MAAACBAP1/U4EddRIpUt9KnC7s5Of2EbdSPO9EAMMeP4C2
+USZpRV1AIlH7WT2NWPq/xfW6MPbLm1Vs14E7gB00b/JmYLdrmVClpJ+f6AR7ECLCT7up1/63xhv4
+O1fnxqimFQ8E+4P208UewwI1VBNaFpEy9nXzrith1yrv8iIDGZ3RSAHHAAAAFQCXYFCPFSMLzLKS
+uYKi64QL8Fgc9QAAAIEA9+GghdabPd7LvKtcNrhXuXmUr7v6OuqC+VdMCz0HgmdRWVeOutRZT+Zx
+BxCBgLRJFnEj6EwoFhO3zwkyjMim4TwWeotUfI0o4KOuHiuzpnWRbqN/C/ohNWLx+2J6ASQ7zKTx
+vqhRkImog9/hWuWfBpKLZl6Ae1UlZAFMO/7PSSoAAAAUCxrRGhfPB3cNZ5CH9aYYp6ADtLI=
+---- END SSHTOOLS ENCRYPTED PRIVATE KEY ----

Added: projects/fresh/trunk/etc/fresh/ssh/pub.pkk
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/pub.pkk	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/pub.pkk	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,10 @@
+---- BEGIN SSH2 PUBLIC KEY ----
+AAAAB3NzaC1kc3MAAACBAP1/U4EddRIpUt9KnC7s5Of2EbdSPO9EAMMeP4C2USZpRV1AIlH7WT2N
+WPq/xfW6MPbLm1Vs14E7gB00b/JmYLdrmVClpJ+f6AR7ECLCT7up1/63xhv4O1fnxqimFQ8E+4P2
+08UewwI1VBNaFpEy9nXzrith1yrv8iIDGZ3RSAHHAAAAFQCXYFCPFSMLzLKSuYKi64QL8Fgc9QAA
+AIEA9+GghdabPd7LvKtcNrhXuXmUr7v6OuqC+VdMCz0HgmdRWVeOutRZT+ZxBxCBgLRJFnEj6Ewo
+FhO3zwkyjMim4TwWeotUfI0o4KOuHiuzpnWRbqN/C/ohNWLx+2J6ASQ7zKTxvqhRkImog9/hWuWf
+BpKLZl6Ae1UlZAFMO/7PSSoAAACBAKtWdET0vgDlDCMRTCUPOORVbMY44zIKvbvJ3XLejwgYm1FV
+tSKczMbBBrobVxqf1iCpZ0iHhwTw8+Jc2/KXpL6h0im5yZxNUH5kr8mfHUi9TBI5qCq37l8ED6B+
+s/uiVGTIzEv4wtZCoaHsEupOi15r51qjlWlTVLjwqro76Wyx
+---- END SSH2 PUBLIC KEY ----

Added: projects/fresh/trunk/etc/fresh/ssh/server.xml
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/server.xml	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/server.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+Server configuration file - Determines the behaviour of platform specific services
+-->
+<ServerConfiguration>
+   <!-- Path to server private key file - you need to generate it in advance of course. -->
+   <ServerHostKey PrivateKeyFile="../cp2/ssh/priv.skk" />
+
+   <!-- Possible values for these are: ... -->
+   <!--Subsytem Type="" Name="" Provider="" /-->
+   
+   <!-- The file system provider for SFTP -->
+	<AuthenticationBanner>../cp2/ssh/hello.txt</AuthenticationBanner>   
+	<MaxConnections>3</MaxConnections>
+	<MaxAuthentications>3</MaxAuthentications>
+	<ListenAddress>192.168.2.35</ListenAddress>
+	<Port>2022</Port>
+	<CommandPort>2024</CommandPort>
+	<TerminalProvider>vt100</TerminalProvider>
+
+   <!-- Possible values: password, publickey, keyboard-interactive -->
+	<AllowedAuthentication>password</AllowedAuthentication>
+	<!--AllowedAuthentication>publickey</AllowedAuthentication>
+	<AllowedAuthentication>keyboard-interactive</AllowedAuthentication-->
+	
+	<RequiredAuthentication>password</RequiredAuthentication>
+
+	<AuthorizationFile>../cp2/ssh/authorization.xml</AuthorizationFile>
+	<UserConfigDirectory>users</UserConfigDirectory>
+	<AllowTcpForwarding>false</AllowTcpForwarding>
+   
+</ServerConfiguration>

Added: projects/fresh/trunk/etc/fresh/ssh/sshtools.xml
===================================================================
--- projects/fresh/trunk/etc/fresh/ssh/sshtools.xml	                        (rev 0)
+++ projects/fresh/trunk/etc/fresh/ssh/sshtools.xml	2009-04-29 17:20:36 UTC (rev 88017)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- The Java SSH API Configuration file -->
+<SshAPIConfiguration>
+  
+  <!-- The Cipher configuration, add or overide default cipher implementations -->
+  <CipherConfiguration>
+    <DefaultAlgorithm>blowfish-cbc</DefaultAlgorithm>
+  </CipherConfiguration>
+  <!-- The Message Authentication Code configuration, add or overide default mac implementations -->
+  <MacConfiguration>
+    <DefaultAlgorithm>hmac-md5</DefaultAlgorithm>
+  </MacConfiguration>
+  <!-- The Compression configuration, add or overide default compression implementations -->
+  <CompressionConfiguration>
+    <DefaultAlgorithm>none</DefaultAlgorithm>
+  </CompressionConfiguration>
+  <!-- The Public Key configuration, add or overide default public key implementations -->
+  <PublicKeyConfiguration>
+   <DefaultAlgorithm>ssh-dss</DefaultAlgorithm>
+   
+   <DefaultPublicFormat>SECSH-PublicKey-Base64Encoded</DefaultPublicFormat>
+   <DefaultPrivateFormat>SSHTools-PrivateKey-Base64Encoded</DefaultPrivateFormat>
+  </PublicKeyConfiguration>
+  <!-- The Authentication configuration, add or overide default authentication implementations  -->
+  <AuthenticationConfiguration>
+     
+  </AuthenticationConfiguration>
+  <!-- The Key Exchange configuration, add or overide default Key Exchange implementations -->
+  <KeyExchangeConfiguration>
+    <DefaultAlgorithm>diffie-hellman-group1-sha1</DefaultAlgorithm>
+  </KeyExchangeConfiguration>
+</SshAPIConfiguration>

Modified: projects/fresh/trunk/fresh-shell/src/main/java/org/jboss/fresh/deployer/ContextBinder.java
===================================================================
--- projects/fresh/trunk/fresh-shell/src/main/java/org/jboss/fresh/deployer/ContextBinder.java	2009-04-29 16:35:42 UTC (rev 88016)
+++ projects/fresh/trunk/fresh-shell/src/main/java/org/jboss/fresh/deployer/ContextBinder.java	2009-04-29 17:20:36 UTC (rev 88017)
@@ -7,6 +7,7 @@
 package org.jboss.fresh.deployer;
 
 import org.jboss.fresh.ctx.FlatContext;
+import org.jboss.fresh.ctx.Context;
 
 /**
  * @author strukelj
@@ -35,7 +36,7 @@
 	 * @see com.parsek.deployer.modules.RegistryNamingBinder#getBindClass()
 	 */
 	protected String getBindClass() {
-		return "com.parsek.ctx.Context";
+		return Context.class.getName();
 	}
 
 }




More information about the jboss-cvs-commits mailing list