[
https://issues.apache.org/jira/browse/KARAF-686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13054312#comment-13054312
]
Freeman Fang commented on KARAF-686:
------------------------------------
I'd like to introduce an override flag to configfile element, the default value
is true which means we keep same with current behavior.
However if we specify override="false", then if finalname already exist, then
don't override it.
For example
<feature name="http" version="2.2.1" resolver="(obr)">
<configfile finalname="/etc/jetty.xml"
override="false">mvn:org.apache.karaf/apache-karaf/2.2.2-SNAPSHOT/xml/jettyconfig</configfile>
<config name="org.ops4j.pax.web">
org.osgi.service.http.port=8181
javax.servlet.context.tempdir=${karaf.data}/pax-web-jsp
org.ops4j.pax.web.config.file=${karaf.base}/etc/jetty.xml
</config>
If etc/jetty.xml already there, don't download a new one and override it, so
that customer specified jetty.xml could be used.
> introduce an override flag to configfile element so that we get chance to not
> override the finalname if it already exist
> ------------------------------------------------------------------------------------------------------------------------
>
> Key: KARAF-686
> URL: https://issues.apache.org/jira/browse/KARAF-686
> Project: Karaf
> Issue Type: Bug
> Affects Versions: 2.2.1
> Reporter: Freeman Fang
> Assignee: Freeman Fang
>
> currently http feature has configuration like
> <feature name="http" version="2.2.1" resolver="(obr)">
> <configfile
> finalname="/etc/jetty.xml">mvn:org.apache.karaf/apache-karaf/2.2.2-SNAPSHOT/xml/jettyconfig</configfile>
> <config name="org.ops4j.pax.web">
> org.osgi.service.http.port=8181
> javax.servlet.context.tempdir=${karaf.data}/pax-web-jsp
> org.ops4j.pax.web.config.file=${karaf.base}/etc/jetty.xml
> </config>
> This means each time we install http feature it will download jettyconfig.xml
> remotely and override the local etc/jetty.xml, so any configuration we saved
> in local etc/jetty.xml will lose.
> We should ship jetty.xml in kit etc folder and always refer it for the http
> feature, which is easier for customer to configure the jetty.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira