You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2013/11/21 17:07:24 UTC

svn commit: r1544235 - /karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties

Author: jbonofre
Date: Thu Nov 21 16:07:24 2013
New Revision: 1544235

URL: http://svn.apache.org/r1544235
Log:
[KARAF-2381] Set the felix.fileinstall.enableConfigSave to true by default

Modified:
    karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties

Modified: karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties
URL: http://svn.apache.org/viewvc/karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties?rev=1544235&r1=1544234&r2=1544235&view=diff
==============================================================================
--- karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties (original)
+++ karaf/trunk/assemblies/features/framework/src/main/filtered-resources/resources/etc/config.properties Thu Nov 21 16:07:24 2013
@@ -77,7 +77,9 @@ org.osgi.framework.system.packages= \
  org.apache.karaf.version;version="${karaf.osgi.version}", \
  ${jre-${java.specification.version}}
 
+#
 # Extra packages appended after standard packages
+#
 org.osgi.framework.system.packages.extra= \
  org.apache.karaf.branding, \
  org.apache.html.dom; version="2.11.0", \
@@ -141,24 +143,36 @@ eecap-1.3= osgi.ee; osgi.ee="OSGi/Minimu
 eecap-1.2= osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0,1.1", \
  osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0,1.1,1.2"
 
-# javax.transaction is needed to avoid class loader constraint violation when using javax.sql  
+#
+# javax.transaction is needed to avoid class loader constraint violation when using javax.sql
+#
 org.osgi.framework.bootdelegation=org.apache.karaf.jaas.boot,org.apache.karaf.jaas.boot.principal,org.apache.karaf.management.boot,sun.*,com.sun.*,javax.transaction,javax.transaction.*,org.apache.xerces.jaxp.datatype,org.apache.xerces.stax,org.apache.xerces.parsers,org.apache.xerces.jaxp,org.apache.xerces.jaxp.validation,org.apache.xerces.dom
 
+#
 # OSGi Execution Environment
+#
 org.osgi.framework.executionenvironment=J2SE-1.7,JavaSE-1.7,J2SE-1.6,JavaSE-1.6,J2SE-1.5,JavaSE-1.5,J2SE-1.4,JavaSE-1.4,J2SE-1.3,JavaSE-1.3,J2SE-1.2,,JavaSE-1.2,CDC-1.1/Foundation-1.1,CDC-1.0/Foundation-1.0,J2ME,OSGi/Minimum-1.1,OSGi/Minimum-1.0
 
+#
 # Set the parent classloader for the bundle to the classloader that loads the Framework (i.e. everything in lib/*.jar)
+#
 org.osgi.framework.bundle.parent=framework
 
+#
+# Definition of the default bundle start level
+#
 org.osgi.framework.startlevel.beginning=100
 karaf.startlevel.bundle=80
 
+#
+# The location of the Karaf shutdown port file
+#
 karaf.shutdown.port.file=${karaf.data}/port
 
 #
 # Configuration FileMonitor properties
 #
-felix.fileinstall.enableConfigSave = false
+felix.fileinstall.enableConfigSave = true
 felix.fileinstall.dir    = ${karaf.etc}
 felix.fileinstall.filter = .*\\.cfg
 felix.fileinstall.poll   = 1000