You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2006/03/11 06:18:53 UTC

svn commit: r385010 - /directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml

Author: akarasulu
Date: Fri Mar 10 21:18:50 2006
New Revision: 385010

URL: http://svn.apache.org/viewcvs?rev=385010&view=rev
Log:
enable users to install as non-root and added installer packs for doco and srcs

Modified:
    directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml

Modified: directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml
URL: http://svn.apache.org/viewcvs/directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml?rev=385010&r1=385009&r2=385010&view=diff
==============================================================================
--- directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml (original)
+++ directory/branches/apacheds/1.0/server-installers/src/main/installers/izpack-unix.xml Fri Mar 10 21:18:50 2006
@@ -53,6 +53,8 @@
     <res id="InfoPanel.info" src="${app.readme}" />
     <res id="ImgPacksPanel.img.0" src="${app.icon}" />
     <res id="ImgPacksPanel.img.1" src="${app.icon}" />
+    <res id="ImgPacksPanel.img.2" src="${app.icon}" />
+    <res id="ImgPacksPanel.img.3" src="${app.icon}" />
     <res id="shortcutSpec.xml" src="${unix.shortcuts}" />
     <res id="Unix_shortcutSpec.xml" src="${unix.shortcuts}" />
     <res id="userInputSpec.xml" src="${user.input}" />
@@ -70,18 +72,35 @@
   </panels>
 
   <packs>
+    <pack name="Init Script (root only)" required="no">
+      <description>Init script installable only by root</description>
+      <singlefile os="unix" src="bin/${server.init}" target="/etc/init.d/${app}" />
+      <parsable os="unix" targetfile="/etc/init.d/${app}" type="shell" />
+      <executable os="unix" targetfile="/etc/init.d/${app}" stage="never" keep="true" />
+    </pack>
+    <pack name="Sources" required="no">
+      <description>ApacheDS Sources</description>
+      <fileset dir="${image.basedir}" targetdir="$INSTALL_PATH/">
+        <include name="src/**"/>
+      </fileset>
+    </pack>
+    <pack name="Documentation" required="no">
+      <description>ApacheDS Documentation</description>
+      <fileset dir="${image.basedir}" targetdir="$INSTALL_PATH/">
+        <include name="docs/**"/>
+      </fileset>
+    </pack>
     <pack name="Binaries" required="yes">
       <description>Binary Executables</description>
       <fileset dir="${image.basedir}" targetdir="$INSTALL_PATH">
         <include name="**/*" />
+        <exclude name="docs/**"/>
+        <exclude name="src/**"/>
       </fileset>
-    
+
       <executable os="unix" targetfile="$INSTALL_PATH/bin/${app}" stage="never" keep="true" />
-      <singlefile os="unix" src="bin/${server.init}" target="/etc/init.d/${app}" />
       <parsable os="unix" targetfile="$INSTALL_PATH/bin/${server.init}" type="shell" />
       <parsable os="unix" targetfile="$INSTALL_PATH/bin/apacheds-tools.sh" type="shell" />
-      <parsable os="unix" targetfile="/etc/init.d/${app}" type="shell" />
-      <executable os="unix" targetfile="/etc/init.d/${app}" stage="never" keep="true" />
       <executable os="unix" targetfile="$INSTALL_PATH/bin/${server.init}" stage="never" keep="true" />
       <executable os="unix" targetfile="$INSTALL_PATH/bin/apacheds-tools.sh" stage="never" keep="true" />
     </pack>