Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Apr 2018 09:25:29 +0000 (UTC)
From:      Alexander Leidinger <netchild@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r467221 - in head/misc: . openhab2 openhab2/files
Message-ID:  <201804130925.w3D9PTu7019421@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: netchild
Date: Fri Apr 13 09:25:29 2018
New Revision: 467221
URL: https://svnweb.freebsd.org/changeset/ports/467221

Log:
  Add openHAB2 (smart-home software).

Added:
  head/misc/openhab2/
  head/misc/openhab2/Makefile   (contents, props changed)
  head/misc/openhab2/distinfo   (contents, props changed)
  head/misc/openhab2/files/
  head/misc/openhab2/files/openhab2.in   (contents, props changed)
  head/misc/openhab2/files/patch-runtime_bin_setenv   (contents, props changed)
  head/misc/openhab2/files/pkg-message.in   (contents, props changed)
  head/misc/openhab2/pkg-descr   (contents, props changed)
  head/misc/openhab2/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Fri Apr 13 09:21:51 2018	(r467220)
+++ head/misc/Makefile	Fri Apr 13 09:25:29 2018	(r467221)
@@ -299,6 +299,7 @@
     SUBDIR += nut
     SUBDIR += ondir
     SUBDIR += opencyc
+    SUBDIR += openhab2
     SUBDIR += openmvg
     SUBDIR += openr2
     SUBDIR += orville-write

Added: head/misc/openhab2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/Makefile	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,62 @@
+# Created by: Alexander Leidinger
+# $FreeBSD$
+
+PORTNAME=	openhab2
+PORTVERSION=	2.2.0
+CATEGORIES=	misc java
+MASTER_SITES=	https://bintray.com/openhab/mvn/download_file?file_path=org%2Fopenhab%2Fdistro%2Fopenhab%2F${PORTVERSION}/
+DISTNAME=	openhab-${PORTVERSION}
+
+MAINTAINER=	netchild@FreeBSD.org
+COMMENT=	Vendor and technology agnostic open source smart-home software
+
+LICENSE=	EPL
+LICENSE_FILE=	${WRKSRC}/LICENSE.TXT
+
+USE_JAVA=	yes
+JAVA_VERSION=	1.8
+JAVA_RUN=	yes
+
+USERS=	openhab
+GROUPS=	openhab
+USE_RC_SUBR=	openhab2
+SUB_FILES=	pkg-message
+
+NO_WRKSUBDIR=	yes
+
+post-patch:
+	${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:g" ${WRKSRC}/runtime/bin/setenv
+
+do-build:
+.for conf in services/runtime.cfg services/addons.cfg html/index.html transform/en.map transform/de.map
+	${MV} ${WRKSRC}/conf/${conf} ${WRKSRC}/conf/${conf}.sample
+.endfor
+	${RM} -r ${WRKSRC}/runtime/bin/contrib
+	${RM} ${WRKSRC}/*.ps1 ${WRKSRC}/*.bat ${WRKSRC}/runtime/bin/*.ps1 ${WRKSRC}/runtime/bin/*.bat
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/etc/${PORTNAME}
+	${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME}
+	${MKDIR} ${STAGEDIR}/var/log/${PORTNAME}
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/home
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/persistence
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/persistence/db4o
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/persistence/rrd4j
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/persistence/mapdb
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/backups
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/userdata
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/userdata/etc
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/userdata/etc/scripts
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}/userdata/tmp
+	${MKDIR} ${STAGEDIR}/var/run/${PORTNAME}
+	(cd ${WRKSRC}/conf && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/etc/${PORTNAME})
+	(cd ${WRKSRC} && ${COPYTREE_BIN} runtime ${STAGEDIR}${PREFIX}/libexec/${PORTNAME})
+	(cd ${WRKSRC} && ${COPYTREE_BIN} addons ${STAGEDIR}${PREFIX}/libexec/${PORTNAME})
+.for script in start.sh start_debug.sh
+	${INSTALL_SCRIPT} ${WRKSRC}/${script} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/
+.endfor
+	(cd ${WRKSRC}/userdata && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/${PORTNAME})
+
+.include <bsd.port.mk>

Added: head/misc/openhab2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/distinfo	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1523448217
+SHA256 (openhab-2.2.0.tar.gz) = 8e48357dd6f4b9c0e496dd8ff2b12f25441039e3a4ef71d56e07cf14aa5c4ff3
+SIZE (openhab-2.2.0.tar.gz) = 68615144

Added: head/misc/openhab2/files/openhab2.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/files/openhab2.in	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,88 @@
+#!/bin/sh
+
+# $FreeBSD$
+#
+# PROVIDE: openhab2
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add these lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# openhab2_enable (bool):	Set to NO by default.
+#				Set it to YES to enable openhab2.
+# openhab2_user (username):	Set to openhab by default.
+# openhab2_group (groupname):	Set to openhab by default.
+# openhab2_http_port (port):	Set to 8080 by default.
+# openhab2_https_port (port):	Set to 8443 by default.
+# openhab2_listen_address (IP):	Set to 0.0.0.0 for http/https by default.
+# openhab2_backup_dir (path):	Set to /var/db/openhab2/backups by default.
+# openhab2_java_opts (string):	Empty by default. You can add additional java
+#				options like -Duser.timezone=Europe/Berlin and/or
+#				-Dgnu.io.rxtx.SerialPorts=/dev/cuau0
+# openhab2_home_dir (path):	Set to %%PREFIX%%/libexec/openhab2 by default.
+# openhab2_conf_dir (path):	Set to %%PREFIX%%/etc/openhab2 by default.
+# openhab2_runtime_dir (path):	Set to %%PREFIX%%/libexec/openhab2/runtime by default.
+# openhab2_userdata_dir (path):	Set to /var/db/openhab2/userdata by default.
+# openhab2_log_dir (path):	Set to /var/log/openhab2 by default.
+
+. /etc/rc.subr
+
+name=openhab2
+rcvar=openhab2_enable
+
+load_rc_config $name
+
+: ${openhab2_enable:="NO"}
+: ${openhab2_user:="openhab"}
+: ${openhab2_group:="openhab"}
+: ${openhab2_http_port:="8080"}
+: ${openhab2_https_port:="8443"}
+: ${openhab2_listen_address:="0.0.0.0"}
+: ${openhab2_backup_dir:="/var/db/openhab2/backups"}
+: ${openhab2_home_dir:="%%PREFIX%%/libexec/openhab2"}
+: ${openhab2_conf_dir:="%%PREFIX%%/etc/openhab2"}
+: ${openhab2_runtime_dir:="%%PREFIX%%/libexec/openhab2/runtime"}
+: ${openhab2_userdata_dir:="/var/db/openhab2/userdata"}
+: ${openhab2_log_dir:="/var/log/openhab2"}
+
+export OPENHAB_USER="${openhab2_user}"
+export OPENHAB_GROUP="${openhab2_group}"
+export OPENHAB_HTTP_PORT="${openhab2_http_port}"
+export OPENHAB_HTTPS_PORT="${openhab2_https_port}"
+export OPENHAB_HTTP_ADDRESS="${openhab2_listen_address}"
+export OPENHAB_BACKUPS="${openhab2_backup_dir}"
+export EXTRA_JAVA_OPTS="${openhab2_java_opts}"
+export OPENHAB_HOME="${openhab2_home_dir}"
+export OPENHAB_CONF="${openhab2_conf_dir}"
+export OPENHAB_RUNTIME="${openhab2_runtime_dir}"
+export OPENHAB_USERDATA="${openhab2_userdata_dir}"
+export OPENHAB_LOGDIR="${openhab2_log_dir}"
+
+#command=${OPENHAB_HOME}/start.sh
+#command_args="server"
+pidfile=/var/run/${name}/${name}.pid
+
+command=/usr/sbin/daemon
+command_args="-p ${pidfile} -t openhab2 ${OPENHAB_HOME}/start.sh server"
+
+openhab2_stop() {
+	${OPENHAB_RUNTIME}/bin/stop
+}
+
+openhab2_status() {
+	case "$(${OPENHAB_RUNTIME}/bin/status 2>&1)" in
+		"Not Running ...")
+			echo ${name} is not running,
+			;;
+		"Running ...")
+			echo ${name} is running.
+			;;
+	esac
+}
+
+stop_cmd="openhab2_stop"
+status_cmd="openhab2_status"
+
+
+run_rc_command "$1"

Added: head/misc/openhab2/files/patch-runtime_bin_setenv
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/files/patch-runtime_bin_setenv	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,39 @@
+--- runtime/bin/setenv.orig	2017-12-18 10:24:01 UTC
++++ runtime/bin/setenv
+@@ -111,7 +111,7 @@ export EXTRA_JAVA_OPTS="${EXTRA_JAVA_OPTS_COMMON} ${EX
+ 
+ die() {
+   # echo and exit, && /bin/true delays the exit for systemd logging (workaround).
+-  echo "$*" && /bin/true
++  echo "$*" && true
+   exit 1
+ }
+ 
+@@ -121,6 +121,7 @@ detectOS() {
+     darwin=false;
+     aix=false;
+     os400=false;
++    freebsd=false;
+     case "`uname`" in
+         CYGWIN*)
+             cygwin=true
+@@ -134,6 +135,9 @@ detectOS() {
+         OS400*)
+             os400=true
+             ;;
++	FreeBSD*)
++	    freebsd=true
++	    ;;
+     esac
+     # For AIX, set an environment variable
+     if $aix; then
+@@ -172,6 +176,9 @@ locateJava() {
+     fi
+     if [ "x$JAVA" = "x" ] && [ -r /etc/gentoo-release ] ; then
+         JAVA_HOME=`java-config --jre-home`
++    fi
++    if [ "x$JAVA_HOME" = "x" ] && [ "$freebsd" = "true" ] ; then
++	eval $(env JAVAVM_DRYRUN=true %%LOCALBASE%%/bin/java | grep JAVA_HOME)
+     fi
+     if [ "x$JAVA" = "x" ]; then
+         if [ "x$JAVA_HOME" != "x" ]; then

Added: head/misc/openhab2/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/files/pkg-message.in	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,10 @@
+The openHAB2 user interface "Paper UI" writes to /var/db/openhab2
+(config) and to %%ETCDIR%% (when installing add-onds).
+The config in %%ETCDIR%% is evaluated additionally to
+/var/db/openhab2.
+
+See %%PREFIX%%/etc/rc.d/openhab2 for environment variables you need
+to set by hand (all "export"-ones) if you want to execute some of
+the openHAB2 commands from the shell directly.
+
+When the openHAB2 docs talk about "userdata", look into /var/db/openhab2.

Added: head/misc/openhab2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/pkg-descr	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,5 @@
+openHAB is a software for integrating different home automation systems and
+technologies into one single solution that allows over-arching automation
+rules and that offers uniform user interfaces.
+
+WWW: http://www.openhab.org/

Added: head/misc/openhab2/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhab2/pkg-plist	Fri Apr 13 09:25:29 2018	(r467221)
@@ -0,0 +1,435 @@
+libexec/openhab2/addons/README
+libexec/openhab2/runtime/bin/backup
+libexec/openhab2/runtime/bin/client
+libexec/openhab2/runtime/bin/inc
+libexec/openhab2/runtime/bin/instance
+libexec/openhab2/runtime/bin/karaf
+libexec/openhab2/runtime/bin/oh2_dir_layout
+libexec/openhab2/runtime/bin/restore
+libexec/openhab2/runtime/bin/setenv
+libexec/openhab2/runtime/bin/shell
+libexec/openhab2/runtime/bin/start
+libexec/openhab2/runtime/bin/status
+libexec/openhab2/runtime/bin/stop
+libexec/openhab2/runtime/etc/jetty.xml
+libexec/openhab2/runtime/etc/quartz.properties
+libexec/openhab2/runtime/lib/README
+libexec/openhab2/runtime/lib/boot/README
+libexec/openhab2/runtime/lib/boot/org.apache.karaf.diagnostic.boot-4.1.3.jar
+libexec/openhab2/runtime/lib/boot/org.apache.karaf.jaas.boot-4.1.3.jar
+libexec/openhab2/runtime/lib/boot/org.apache.karaf.main-4.1.3.jar
+libexec/openhab2/runtime/lib/boot/org.osgi.core-6.0.0.jar
+libexec/openhab2/runtime/lib/endorsed/README
+libexec/openhab2/runtime/lib/endorsed/org.apache.karaf.exception-4.1.3.jar
+libexec/openhab2/runtime/lib/ext/README
+libexec/openhab2/runtime/services.cfg
+libexec/openhab2/runtime/system/README
+libexec/openhab2/runtime/system/com/eclipsesource/jaxrs/provider-security/2.2/provider-security-2.2.jar
+libexec/openhab2/runtime/system/com/eclipsesource/jaxrs/publisher/5.3.1/publisher-5.3.1.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/core/jackson-annotations/2.4.5/jackson-annotations-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/core/jackson-core/2.4.5/jackson-core-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/core/jackson-databind/2.4.5/jackson-databind-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.4.5/jackson-dataformat-xml-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.4.5/jackson-dataformat-yaml-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.4.5/jackson-datatype-joda-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.4.5/jackson-jaxrs-base-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.4.5/jackson-jaxrs-json-provider-2.4.5.jar
+libexec/openhab2/runtime/system/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.4.5/jackson-module-jaxb-annotations-2.4.5.jar
+libexec/openhab2/runtime/system/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.jar
+libexec/openhab2/runtime/system/com/google/code/gson/gson/2.3.1/gson-2.3.1.jar
+libexec/openhab2/runtime/system/com/google/code/gson/gson/2.7/gson-2.7.jar
+libexec/openhab2/runtime/system/com/google/guava/guava/15.0/guava-15.0.jar
+libexec/openhab2/runtime/system/com/google/guava/guava/18.0/guava-18.0.jar
+libexec/openhab2/runtime/system/commons-codec/commons-codec/1.6/commons-codec-1.6.jar
+libexec/openhab2/runtime/system/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
+libexec/openhab2/runtime/system/commons-io/commons-io/2.2/commons-io-2.2.jar
+libexec/openhab2/runtime/system/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
+libexec/openhab2/runtime/system/commons-net/commons-net/3.2/commons-net-3.2.jar
+libexec/openhab2/runtime/system/de/maggu2810/p2redist/com.google.inject/3.0.0.v201312141243/com.google.inject-3.0.0.v201312141243.jar
+libexec/openhab2/runtime/system/de/maggu2810/p2redist/org.antlr.runtime/3.2.0.v201101311130/org.antlr.runtime-3.2.0.v201101311130.jar
+libexec/openhab2/runtime/system/de/maggu2810/requirebundle/fix/org.objectweb.asm/5.0.2/org.objectweb.asm-5.0.2.jar
+libexec/openhab2/runtime/system/de/maggu2810/thirdparty/modified/com/eclipsesource/jaxrs/provider-swagger/1.1.1.201605111122/provider-swagger-1.1.1.201605111122.jar
+libexec/openhab2/runtime/system/de/maggu2810/thirdparty/modified/io/swagger/swagger-jersey2-jaxrs/1.5.8.v20160511-1038/swagger-jersey2-jaxrs-1.5.8.v20160511-1038.jar
+libexec/openhab2/runtime/system/de/maggu2810/thirdparty/modified/org/reflections/reflections/0.9.10.v20160429-1435/reflections-0.9.10.v20160429-1435.jar
+libexec/openhab2/runtime/system/de/maggu2810/thirdparty/org/eclipse/xtext/org.eclipse.xtext.ide/2.12.0.sp2/org.eclipse.xtext.ide-2.12.0.sp2.jar
+libexec/openhab2/runtime/system/io/swagger/swagger-annotations/1.5.5/swagger-annotations-1.5.5.jar
+libexec/openhab2/runtime/system/io/swagger/swagger-annotations/1.5.8/swagger-annotations-1.5.8.jar
+libexec/openhab2/runtime/system/io/swagger/swagger-core/1.5.8/swagger-core-1.5.8.jar
+libexec/openhab2/runtime/system/io/swagger/swagger-jaxrs/1.5.8/swagger-jaxrs-1.5.8.jar
+libexec/openhab2/runtime/system/io/swagger/swagger-models/1.5.8/swagger-models-1.5.8.jar
+libexec/openhab2/runtime/system/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar
+libexec/openhab2/runtime/system/javax/mail/mail/1.4.4/mail-1.4.4.jar
+libexec/openhab2/runtime/system/javax/mail/mail/1.4.5/mail-1.4.5.jar
+libexec/openhab2/runtime/system/javax/measure/unit-api/1.0/unit-api-1.0.jar
+libexec/openhab2/runtime/system/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar
+libexec/openhab2/runtime/system/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar
+libexec/openhab2/runtime/system/javax/websocket/javax.websocket-api/1.1/javax.websocket-api-1.1.jar
+libexec/openhab2/runtime/system/javax/ws/rs/javax.ws.rs-api/2.0.1/javax.ws.rs-api-2.0.1.jar
+libexec/openhab2/runtime/system/joda-time/joda-time/2.2/joda-time-2.2.jar
+libexec/openhab2/runtime/system/org/apache/aries/org.apache.aries.util/1.1.0/org.apache.aries.util-1.1.0.jar
+libexec/openhab2/runtime/system/org/apache/aries/org.apache.aries.util/1.1.3/org.apache.aries.util-1.1.3.jar
+libexec/openhab2/runtime/system/org/apache/aries/spifly/org.apache.aries.spifly.dynamic.bundle/1.0.2/org.apache.aries.spifly.dynamic.bundle-1.0.2.jar
+libexec/openhab2/runtime/system/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar
+libexec/openhab2/runtime/system/org/apache/commons/commons-exec/1.1/commons-exec-1.1.jar
+libexec/openhab2/runtime/system/org/apache/commons/commons-lang3/3.2.1/commons-lang3-3.2.1.jar
+libexec/openhab2/runtime/system/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.configadmin/1.8.16/org.apache.felix.configadmin-1.8.16.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.fileinstall/3.5.8/org.apache.felix.fileinstall-3.5.8.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.framework/5.6.8/org.apache.felix.framework-5.6.8.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.inventory/1.0.4/org.apache.felix.inventory-1.0.4.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.metatype/1.1.4/org.apache.felix.metatype-1.1.4.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.scr.compat/1.0.4/org.apache.felix.scr.compat-1.0.4.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.scr/2.0.12/org.apache.felix.scr-2.0.12.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.webconsole.plugins.ds/2.0.6/org.apache.felix.webconsole.plugins.ds-2.0.6.jar
+libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.webconsole.plugins.event/1.1.6/org.apache.felix.webconsole.plugins.event-1.1.6.jar
+libexec/openhab2/runtime/system/org/apache/geronimo/specs/geronimo-annotation_1.1_spec/1.0.1/geronimo-annotation_1.1_spec-1.0.1.jar
+libexec/openhab2/runtime/system/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.1/geronimo-jaspic_1.0_spec-1.1.jar
+libexec/openhab2/runtime/system/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar
+libexec/openhab2/runtime/system/org/apache/httpcomponents/httpclient-osgi/4.2.3/httpclient-osgi-4.2.3.jar
+libexec/openhab2/runtime/system/org/apache/httpcomponents/httpcore-osgi/4.2.3/httpcore-osgi-4.2.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/bundle/org.apache.karaf.bundle.core/4.1.3/org.apache.karaf.bundle.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/config/org.apache.karaf.config.core/4.1.3/org.apache.karaf.config.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/deployer/deployer/4.1.3-sp1/deployer-4.1.3-sp1.jar
+libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.blueprint/4.1.3/org.apache.karaf.deployer.blueprint-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.features/4.1.3/org.apache.karaf.deployer.features-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.kar/4.1.3/org.apache.karaf.deployer.kar-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.wrap/4.1.3/org.apache.karaf.deployer.wrap-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/diagnostic/org.apache.karaf.diagnostic.boot/4.1.3/org.apache.karaf.diagnostic.boot-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/diagnostic/org.apache.karaf.diagnostic.core/4.1.3/org.apache.karaf.diagnostic.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/features/framework/4.1.3/framework-4.1.3-features.xml
+libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.command/4.1.3/org.apache.karaf.features.command-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.core/4.1.3/org.apache.karaf.features.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.extension/4.1.3/org.apache.karaf.features.extension-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/features/standard/4.1.3/standard-4.1.3-features.xml
+libexec/openhab2/runtime/system/org/apache/karaf/http/org.apache.karaf.http.core/4.1.3/org.apache.karaf.http.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.1.3/org.apache.karaf.instance.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/jaas/blueprint/org.apache.karaf.jaas.blueprint.config/4.1.3/org.apache.karaf.jaas.blueprint.config-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.boot/4.1.3/org.apache.karaf.jaas.boot-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.command/4.1.3/org.apache.karaf.jaas.command-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.config/4.1.3/org.apache.karaf.jaas.config-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.modules/4.1.3/org.apache.karaf.jaas.modules-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/kar/org.apache.karaf.kar.core/4.1.3/org.apache.karaf.kar.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/log/org.apache.karaf.log.core/4.1.3/org.apache.karaf.log.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/org.apache.karaf.client/4.1.3/org.apache.karaf.client-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/org.apache.karaf.event/4.1.3/org.apache.karaf.event-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/package/org.apache.karaf.package.core/4.1.3/org.apache.karaf.package.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/scr/org.apache.karaf.scr.command/4.1.3/org.apache.karaf.scr.command-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/scr/org.apache.karaf.scr.management/4.1.3/org.apache.karaf.scr.management-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/scr/org.apache.karaf.scr.state/4.1.3/org.apache.karaf.scr.state-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/service/org.apache.karaf.service.core/4.1.3/org.apache.karaf.service.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/services/org.apache.karaf.services.eventadmin/4.1.3/org.apache.karaf.services.eventadmin-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.commands/4.1.3/org.apache.karaf.shell.commands-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.core/4.1.3/org.apache.karaf.shell.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.ssh/4.1.3/org.apache.karaf.shell.ssh-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/system/org.apache.karaf.system.core/4.1.3/org.apache.karaf.system.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/webconsole/org.apache.karaf.webconsole.http/4.1.3/org.apache.karaf.webconsole.http-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/karaf/wrapper/org.apache.karaf.wrapper.core/4.1.3/org.apache.karaf.wrapper.core-4.1.3.jar
+libexec/openhab2/runtime/system/org/apache/servicemix/bundles/org.apache.servicemix.bundles.commons-httpclient/3.1_7/org.apache.servicemix.bundles.commons-httpclient-3.1_7.jar
+libexec/openhab2/runtime/system/org/apache/servicemix/bundles/org.apache.servicemix.bundles.javax-inject/1_2/org.apache.servicemix.bundles.javax-inject-1_2.jar
+libexec/openhab2/runtime/system/org/apache/servicemix/bundles/org.apache.servicemix.bundles.not-yet-commons-ssl/0.3.11_1/org.apache.servicemix.bundles.not-yet-commons-ssl-0.3.11_1.jar
+libexec/openhab2/runtime/system/org/apache/servicemix/specs/org.apache.servicemix.specs.activation-api-1.1/2.5.0/org.apache.servicemix.specs.activation-api-1.1-2.5.0.jar
+libexec/openhab2/runtime/system/org/apache/servicemix/specs/org.apache.servicemix.specs.activation-api-1.1/2.9.0/org.apache.servicemix.specs.activation-api-1.1-2.9.0.jar
+libexec/openhab2/runtime/system/org/apache/sshd/sshd-core/1.6.0/sshd-core-1.6.0.jar
+libexec/openhab2/runtime/system/org/apache/xbean/xbean-bundleutils/4.1/xbean-bundleutils-4.1.jar
+libexec/openhab2/runtime/system/org/apache/xbean/xbean-finder/4.1/xbean-finder-4.1.jar
+libexec/openhab2/runtime/system/org/apache/xbean/xbean-reflect/4.1/xbean-reflect-4.1.jar
+libexec/openhab2/runtime/system/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar
+libexec/openhab2/runtime/system/org/eclipse/californium/californium-osgi/1.0.6/californium-osgi-1.0.6.jar
+libexec/openhab2/runtime/system/org/eclipse/californium/element-connector/1.0.6/element-connector-1.0.6.jar
+libexec/openhab2/runtime/system/org/eclipse/californium/scandium/1.0.6/scandium-1.0.6.jar
+libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.common/2.11.0-v20150805-0538/org.eclipse.emf.common-2.11.0-v20150805-0538.jar
+libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.ecore.xmi/2.11.1-v20150805-0538/org.eclipse.emf.ecore.xmi-2.11.1-v20150805-0538.jar
+libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.ecore/2.11.1-v20150805-0538/org.eclipse.emf.ecore-2.11.1-v20150805-0538.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/aggregate/jetty-all-server/8.1.14.v20131031/jetty-all-server-8.1.14.v20131031.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-client/9.3.15.v20161220/jetty-client-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-client/9.3.22.v20171030/jetty-client-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-continuation/9.3.15.v20161220/jetty-continuation-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-continuation/9.3.22.v20171030/jetty-continuation-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-deploy/9.3.15.v20161220/jetty-deploy-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-deploy/9.3.22.v20171030/jetty-deploy-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-http/9.3.15.v20161220/jetty-http-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-http/9.3.22.v20171030/jetty-http-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-io/9.3.15.v20161220/jetty-io-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-io/9.3.22.v20171030/jetty-io-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaas/9.3.15.v20161220/jetty-jaas-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaas/9.3.22.v20171030/jetty-jaas-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaspi/9.3.15.v20161220/jetty-jaspi-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaspi/9.3.22.v20171030/jetty-jaspi-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jmx/9.3.15.v20161220/jetty-jmx-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jmx/9.3.22.v20171030/jetty-jmx-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jndi/9.3.15.v20161220/jetty-jndi-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jndi/9.3.22.v20171030/jetty-jndi-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-plus/9.3.15.v20161220/jetty-plus-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-plus/9.3.22.v20171030/jetty-plus-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-proxy/9.3.15.v20161220/jetty-proxy-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-rewrite/9.3.15.v20161220/jetty-rewrite-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-rewrite/9.3.22.v20171030/jetty-rewrite-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-security/9.3.15.v20161220/jetty-security-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-security/9.3.22.v20171030/jetty-security-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-server/9.3.15.v20161220/jetty-server-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-server/9.3.22.v20171030/jetty-server-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlet/9.3.15.v20161220/jetty-servlet-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlet/9.3.22.v20171030/jetty-servlet-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlets/9.3.15.v20161220/jetty-servlets-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlets/9.3.22.v20171030/jetty-servlets-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util-ajax/9.3.15.v20161220/jetty-util-ajax-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util-ajax/9.3.22.v20171030/jetty-util-ajax-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util/9.3.15.v20161220/jetty-util-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util/9.3.22.v20171030/jetty-util-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-webapp/9.3.15.v20161220/jetty-webapp-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-webapp/9.3.22.v20171030/jetty-webapp-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-xml/9.3.15.v20161220/jetty-xml-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-xml/9.3.22.v20171030/jetty-xml-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.3.15.v20161220/javax-websocket-client-impl-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.3.22.v20171030/javax-websocket-client-impl-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.3.15.v20161220/javax-websocket-server-impl-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.3.22.v20171030/javax-websocket-server-impl-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-api/9.3.15.v20161220/websocket-api-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-api/9.3.22.v20171030/websocket-api-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-client/9.3.15.v20161220/websocket-client-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-client/9.3.22.v20171030/websocket-client-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-common/9.3.15.v20161220/websocket-common-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-common/9.3.22.v20171030/websocket-common-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-server/9.3.15.v20161220/websocket-server-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-server/9.3.22.v20171030/websocket-server-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-servlet/9.3.15.v20161220/websocket-servlet-9.3.15.v20161220.jar
+libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-servlet/9.3.22.v20171030/websocket-servlet-9.3.22.v20171030.jar
+libexec/openhab2/runtime/system/org/eclipse/lsp4j/org.eclipse.lsp4j.jsonrpc/0.2.1/org.eclipse.lsp4j.jsonrpc-0.2.1.jar
+libexec/openhab2/runtime/system/org/eclipse/lsp4j/org.eclipse.lsp4j/0.2.1/org.eclipse.lsp4j-0.2.1.jar
+libexec/openhab2/runtime/system/org/eclipse/paho/org.eclipse.paho.client.mqttv3/1.0.2/org.eclipse.paho.client.mqttv3-1.0.2.jar
+libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.common/3.8.0/org.eclipse.equinox.common-3.8.0.jar
+libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.registry/3.6.100/org.eclipse.equinox.registry-3.6.100.jar
+libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.supplement/1.6.100/org.eclipse.equinox.supplement-1.6.100.jar
+libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.osgi/3.11.3/org.eclipse.osgi-3.11.3.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/auth/org.eclipse.smarthome.auth.jaas/0.10.0.b1/org.eclipse.smarthome.auth.jaas-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.api/0.10.0.b1/org.eclipse.smarthome.automation.api-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.commands/0.10.0.b1/org.eclipse.smarthome.automation.commands-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.core/0.10.0.b1/org.eclipse.smarthome.automation.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.core/0.10.0.b1/org.eclipse.smarthome.automation.module.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.media/0.10.0.b1/org.eclipse.smarthome.automation.module.media-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.script.defaultscope/0.10.0.b1/org.eclipse.smarthome.automation.module.script.defaultscope-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.script.rulesupport/0.10.0.b1/org.eclipse.smarthome.automation.module.script.rulesupport-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.script/0.10.0.b1/org.eclipse.smarthome.automation.module.script-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.module.timer/0.10.0.b1/org.eclipse.smarthome.automation.module.timer-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.parser.gson/0.10.0.b1/org.eclipse.smarthome.automation.parser.gson-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.providers/0.10.0.b1/org.eclipse.smarthome.automation.providers-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/automation/org.eclipse.smarthome.automation.rest/0.10.0.b1/org.eclipse.smarthome.automation.rest-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.core/0.10.0.b1/org.eclipse.smarthome.config.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.discovery.mdns/0.10.0.b1/org.eclipse.smarthome.config.discovery.mdns-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.discovery.upnp/0.10.0.b1/org.eclipse.smarthome.config.discovery.upnp-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.discovery/0.10.0.b1/org.eclipse.smarthome.config.discovery-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.dispatch/0.10.0.b1/org.eclipse.smarthome.config.dispatch-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.serial/0.10.0.b1/org.eclipse.smarthome.config.serial-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/config/org.eclipse.smarthome.config.xml/0.10.0.b1/org.eclipse.smarthome.config.xml-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.audio/0.10.0.b1/org.eclipse.smarthome.core.audio-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.autoupdate/0.10.0.b1/org.eclipse.smarthome.core.autoupdate-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.binding.xml/0.10.0.b1/org.eclipse.smarthome.core.binding.xml-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.id/0.10.0.b1/org.eclipse.smarthome.core.id-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.persistence/0.10.0.b1/org.eclipse.smarthome.core.persistence-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.scheduler/0.10.0.b1/org.eclipse.smarthome.core.scheduler-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.thing.xml/0.10.0.b1/org.eclipse.smarthome.core.thing.xml-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.thing/0.10.0.b1/org.eclipse.smarthome.core.thing-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.transform/0.10.0.b1/org.eclipse.smarthome.core.transform-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core.voice/0.10.0.b1/org.eclipse.smarthome.core.voice-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/core/org.eclipse.smarthome.core/0.10.0.b1/org.eclipse.smarthome.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/extension/ui/iconset/org.eclipse.smarthome.ui.iconset.classic/0.10.0.b1/org.eclipse.smarthome.ui.iconset.classic-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.console.karaf/0.10.0.b1/org.eclipse.smarthome.io.console.karaf-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.console/0.10.0.b1/org.eclipse.smarthome.io.console-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.javasound/0.10.0.b1/org.eclipse.smarthome.io.javasound-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.monitor/0.10.0.b1/org.eclipse.smarthome.io.monitor-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.net/0.10.0.b1/org.eclipse.smarthome.io.net-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.auth.basic/0.10.0.b1/org.eclipse.smarthome.io.rest.auth.basic-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.auth/0.10.0.b1/org.eclipse.smarthome.io.rest.auth-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.core/0.10.0.b1/org.eclipse.smarthome.io.rest.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.log/0.10.0.b1/org.eclipse.smarthome.io.rest.log-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.mdns/0.10.0.b1/org.eclipse.smarthome.io.rest.mdns-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.optimize/0.10.0.b1/org.eclipse.smarthome.io.rest.optimize-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.sitemap/0.10.0.b1/org.eclipse.smarthome.io.rest.sitemap-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.sse/0.10.0.b1/org.eclipse.smarthome.io.rest.sse-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest.voice/0.10.0.b1/org.eclipse.smarthome.io.rest.voice-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.rest/0.10.0.b1/org.eclipse.smarthome.io.rest-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.transport.dbus/0.10.0.b1/org.eclipse.smarthome.io.transport.dbus-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.transport.mdns/0.10.0.b1/org.eclipse.smarthome.io.transport.mdns-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.transport.mqtt/0.10.0.b1/org.eclipse.smarthome.io.transport.mqtt-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.transport.upnp/0.10.0.b1/org.eclipse.smarthome.io.transport.upnp-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/io/org.eclipse.smarthome.io.webaudio/0.10.0.b1/org.eclipse.smarthome.io.webaudio-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.core/0.10.0.b1/org.eclipse.smarthome.model.core-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.item.ide/0.10.0.b1/org.eclipse.smarthome.model.item.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.item.runtime/0.10.0.b1/org.eclipse.smarthome.model.item.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.item/0.10.0.b1/org.eclipse.smarthome.model.item-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.lsp/0.10.0.b1/org.eclipse.smarthome.model.lsp-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.persistence.ide/0.10.0.b1/org.eclipse.smarthome.model.persistence.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.persistence.runtime/0.10.0.b1/org.eclipse.smarthome.model.persistence.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.persistence/0.10.0.b1/org.eclipse.smarthome.model.persistence-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.rule.ide/0.10.0.b1/org.eclipse.smarthome.model.rule.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.rule.runtime/0.10.0.b1/org.eclipse.smarthome.model.rule.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.rule/0.10.0.b1/org.eclipse.smarthome.model.rule-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.script.ide/0.10.0.b1/org.eclipse.smarthome.model.script.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.script.runtime/0.10.0.b1/org.eclipse.smarthome.model.script.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.script/0.10.0.b1/org.eclipse.smarthome.model.script-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.sitemap.ide/0.10.0.b1/org.eclipse.smarthome.model.sitemap.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.sitemap.runtime/0.10.0.b1/org.eclipse.smarthome.model.sitemap.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.sitemap/0.10.0.b1/org.eclipse.smarthome.model.sitemap-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.thing.ide/0.10.0.b1/org.eclipse.smarthome.model.thing.ide-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.thing.runtime/0.10.0.b1/org.eclipse.smarthome.model.thing.runtime-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/model/org.eclipse.smarthome.model.thing/0.10.0.b1/org.eclipse.smarthome.model.thing-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/storage/org.eclipse.smarthome.storage.json/0.10.0.b1/org.eclipse.smarthome.storage.json-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/storage/org.eclipse.smarthome.storage.mapdb/0.10.0.b1/org.eclipse.smarthome.storage.mapdb-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/ui/org.eclipse.smarthome.ui.icon/0.10.0.b1/org.eclipse.smarthome.ui.icon-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/smarthome/ui/org.eclipse.smarthome.ui/0.10.0.b1/org.eclipse.smarthome.ui-0.10.0.b1.jar
+libexec/openhab2/runtime/system/org/eclipse/xtend/org.eclipse.xtend.lib.macro/2.12.0/org.eclipse.xtend.lib.macro-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtend/org.eclipse.xtend.lib/2.12.0/org.eclipse.xtend.lib-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.common.types/2.12.0/org.eclipse.xtext.common.types-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.smap/2.12.0/org.eclipse.xtext.smap-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.util/2.12.0/org.eclipse.xtext.util-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase.ide/2.12.0/org.eclipse.xtext.xbase.ide-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.12.0/org.eclipse.xtext.xbase.lib-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase/2.12.0/org.eclipse.xtext.xbase-2.12.0.jar
+libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext/2.12.0/org.eclipse.xtext-2.12.0.jar
+libexec/openhab2/runtime/system/org/fusesource/jansi/jansi/1.16/jansi-1.16.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/external/aopalliance-repackaged/2.4.0-b34/aopalliance-repackaged-2.4.0-b34.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/external/javax.inject/2.4.0-b34/javax.inject-2.4.0-b34.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/hk2-api/2.4.0-b34/hk2-api-2.4.0-b34.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/hk2-locator/2.4.0-b34/hk2-locator-2.4.0-b34.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/hk2-utils/2.4.0-b34/hk2-utils-2.4.0-b34.jar
+libexec/openhab2/runtime/system/org/glassfish/hk2/osgi-resource-locator/1.0.1/osgi-resource-locator-1.0.1.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/bundles/repackaged/jersey-guava/2.22.2/jersey-guava-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/containers/jersey-container-servlet-core/2.22.2/jersey-container-servlet-core-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/containers/jersey-container-servlet/2.22.2/jersey-container-servlet-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/core/jersey-client/2.22.2/jersey-client-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/core/jersey-common/2.22.2/jersey-common-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/core/jersey-server/2.22.2/jersey-server-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/media/jersey-media-jaxb/2.22.2/jersey-media-jaxb-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/media/jersey-media-multipart/2.22.2/jersey-media-multipart-2.22.2.jar
+libexec/openhab2/runtime/system/org/glassfish/jersey/media/jersey-media-sse/2.22.2/jersey-media-sse-2.22.2.jar
+libexec/openhab2/runtime/system/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.jar
+libexec/openhab2/runtime/system/org/javassist/javassist/3.19.0-GA/javassist-3.19.0-GA.jar
+libexec/openhab2/runtime/system/org/jline/jline/3.5.0/jline-3.5.0.jar
+libexec/openhab2/runtime/system/org/jline/jline/3.5.1-sp1/jline-3.5.1-sp1.jar
+libexec/openhab2/runtime/system/org/jmdns/jmdns/3.5.2/jmdns-3.5.2.jar
+libexec/openhab2/runtime/system/org/jupnp/org.jupnp/2.3.0/org.jupnp-2.3.0.jar
+libexec/openhab2/runtime/system/org/jvnet/mimepull/mimepull/1.9.6/mimepull-1.9.6.jar
+libexec/openhab2/runtime/system/org/mapdb/mapdb/1.0.9/mapdb-1.0.9.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.core.compat1x/2.2.0/org.openhab.core.compat1x-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.core.karaf/2.2.0/org.openhab.core.karaf-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.core/2.2.0/org.openhab.core-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.io.jetty.certificate/2.2.0/org.openhab.io.jetty.certificate-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.io.sound/2.2.0/org.openhab.io.sound-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.ui.dashboard/2.2.0/org.openhab.ui.dashboard-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/core/org.openhab.ui.homebuilder/2.2.0/org.openhab.ui.homebuilder-2.2.0.jar
+libexec/openhab2/runtime/system/org/openhab/distro/distro-kar/2.2.0/distro-kar-2.2.0-features.xml
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-automation-js.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-items.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-persistence-rrd4j.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-rules.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-scripts.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-services-basicui.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-services-classicui.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-services-logging.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-sitemaps.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-things.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-transform-de.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.2.0/distro-resources-2.2.0-transform-en.cfg
+libexec/openhab2/runtime/system/org/openhab/distro/distro/2.2.0/distro-2.2.0-features.xml
+libexec/openhab2/runtime/system/org/openhab/distro/openhab-addons/2.2.0/openhab-addons-2.2.0-features.xml
+libexec/openhab2/runtime/system/org/openhab/distro/overrides/2.2.0/overrides-2.2.0-features.xml
+libexec/openhab2/runtime/system/org/openhab/nrjavaserial/3.12.0.OH/nrjavaserial-3.12.0.OH.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-api/1.10.1/pax-logging-api-1.10.1.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-log4j2/1.10.1/pax-logging-log4j2-1.10.1.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-logback/1.10.1/pax-logging-logback-1.10.1.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/url/pax-url-aether/2.5.3/pax-url-aether-2.5.3.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/url/pax-url-wrap/2.5.3/pax-url-wrap-2.5.3-uber.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-api/6.0.7/pax-web-api-6.0.7.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-features/6.0.7/pax-web-features-6.0.7-features.xml
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-features/6.0.7/pax-web-features-6.0.7-jettyconfig.xml
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-jetty/6.0.7/pax-web-jetty-6.0.7.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-runtime/6.0.7/pax-web-runtime-6.0.7.jar
+libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-spi/6.0.7/pax-web-spi-6.0.7.jar
+libexec/openhab2/runtime/system/org/ow2/asm/asm-all/5.0.2/asm-all-5.0.2.jar
+libexec/openhab2/runtime/system/org/ow2/asm/asm-all/5.2/asm-all-5.2.jar
+libexec/openhab2/runtime/system/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.jar
+libexec/openhab2/runtime/system/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.jar
+libexec/openhab2/runtime/system/org/yaml/snakeyaml/1.12/snakeyaml-1.12.jar
+libexec/openhab2/runtime/system/tec/uom/lib/uom-lib-common/1.0.1/uom-lib-common-1.0.1.jar
+libexec/openhab2/runtime/system/tec/uom/uom-se/1.0.3/uom-se-1.0.3.jar
+libexec/openhab2/start.sh
+libexec/openhab2/start_debug.sh
+@owner openhab
+@group openhab
+@sample share/openhab2/etc/all.policy /var/db/openhab2/userdata/etc/all.policy
+@sample share/openhab2/etc/branding-ssh.properties /var/db/openhab2/userdata/etc/branding-ssh.properties
+@sample share/openhab2/etc/branding.properties /var/db/openhab2/userdata/etc/branding.properties
+@sample share/openhab2/etc/com.eclipsesource.jaxrs.connector.cfg /var/db/openhab2/userdata/etc/com.eclipsesource.jaxrs.connector.cfg
+@sample share/openhab2/etc/com.eclipsesource.jaxrs.swagger.config.cfg /var/db/openhab2/userdata/etc/com.eclipsesource.jaxrs.swagger.config.cfg
+@sample share/openhab2/etc/config.properties /var/db/openhab2/userdata/etc/config.properties
+@sample share/openhab2/etc/custom.properties /var/db/openhab2/userdata/etc/custom.properties
+@sample share/openhab2/etc/custom.system.properties /var/db/openhab2/userdata/etc/custom.system.properties
+@sample share/openhab2/etc/distribution.info /var/db/openhab2/userdata/etc/distribution.info
+@sample share/openhab2/etc/equinox-debug.properties /var/db/openhab2/userdata/etc/equinox-debug.properties
+@sample share/openhab2/etc/java.util.logging.properties /var/db/openhab2/userdata/etc/java.util.logging.properties
+@sample share/openhab2/etc/jmx.acl.org.apache.karaf.bundle.cfg /var/db/openhab2/userdata/etc/jmx.acl.org.apache.karaf.bundle.cfg
+@sample share/openhab2/etc/jmx.acl.org.apache.karaf.config.cfg /var/db/openhab2/userdata/etc/jmx.acl.org.apache.karaf.config.cfg
+@sample share/openhab2/etc/jre.properties /var/db/openhab2/userdata/etc/jre.properties
+@sample share/openhab2/etc/keys.properties /var/db/openhab2/userdata/etc/keys.properties
+@sample share/openhab2/etc/keystore /var/db/openhab2/userdata/etc/keystore
+@sample share/openhab2/etc/org.apache.felix.eventadmin.impl.EventAdmin.cfg /var/db/openhab2/userdata/etc/org.apache.felix.eventadmin.impl.EventAdmin.cfg
+@sample share/openhab2/etc/org.apache.felix.fileinstall-deploy.cfg /var/db/openhab2/userdata/etc/org.apache.felix.fileinstall-deploy.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.bundle.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.bundle.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.config.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.config.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.feature.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.feature.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.jaas.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.jaas.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.kar.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.kar.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.scope_bundle.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.scope_bundle.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.shell.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.shell.cfg
+@sample share/openhab2/etc/org.apache.karaf.command.acl.system.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.system.cfg
+@sample share/openhab2/etc/org.apache.karaf.features.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.features.cfg
+@sample share/openhab2/etc/org.apache.karaf.features.repos.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.features.repos.cfg
+@sample share/openhab2/etc/org.apache.karaf.jaas.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.jaas.cfg
+@sample share/openhab2/etc/org.apache.karaf.kar.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.kar.cfg
+@sample share/openhab2/etc/org.apache.karaf.log.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.log.cfg
+@sample share/openhab2/etc/org.apache.karaf.shell.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.shell.cfg
+@sample share/openhab2/etc/org.eclipse.smarthome.audio.cfg /var/db/openhab2/userdata/etc/org.eclipse.smarthome.audio.cfg
+@sample share/openhab2/etc/org.eclipse.smarthome.voice.cfg /var/db/openhab2/userdata/etc/org.eclipse.smarthome.voice.cfg
+@sample share/openhab2/etc/org.jupnp.cfg /var/db/openhab2/userdata/etc/org.jupnp.cfg
+@sample share/openhab2/etc/org.ops4j.pax.logging.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.logging.cfg
+@sample share/openhab2/etc/org.ops4j.pax.url.mvn.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.url.mvn.cfg
+@sample share/openhab2/etc/org.ops4j.pax.web.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.web.cfg
+@sample share/openhab2/etc/overrides.properties /var/db/openhab2/userdata/etc/overrides.properties
+@sample share/openhab2/etc/profile.cfg /var/db/openhab2/userdata/etc/profile.cfg
+@sample share/openhab2/etc/scripts/shell.completion.script /var/db/openhab2/userdata/etc/scripts/shell.completion.script
+@sample share/openhab2/etc/shell.init.script /var/db/openhab2/userdata/etc/shell.init.script
+@sample share/openhab2/etc/startup.properties /var/db/openhab2/userdata/etc/startup.properties
+@sample share/openhab2/etc/system.properties /var/db/openhab2/userdata/etc/system.properties
+@sample share/openhab2/etc/users.properties /var/db/openhab2/userdata/etc/users.properties
+@sample share/openhab2/etc/version.properties /var/db/openhab2/userdata/etc/version.properties
+@sample share/openhab2/tmp/README /var/db/openhab2/userdata/etc/README
+@sample %%ETCDIR%%/html/index.html.sample
+%%ETCDIR%%/html/readme.txt
+%%ETCDIR%%/icons/classic/readme.txt
+%%ETCDIR%%/items/readme.txt
+%%ETCDIR%%/persistence/readme.txt
+%%ETCDIR%%/rules/readme.txt
+%%ETCDIR%%/scripts/readme.txt
+@sample %%ETCDIR%%/services/addons.cfg.sample
+%%ETCDIR%%/services/readme.txt
+@sample %%ETCDIR%%/services/runtime.cfg.sample
+%%ETCDIR%%/sitemaps/readme.txt
+%%ETCDIR%%/sounds/barking.mp3
+%%ETCDIR%%/sounds/doorbell.mp3
+%%ETCDIR%%/things/readme.txt
+@sample %%ETCDIR%%/transform/de.map.sample
+@sample %%ETCDIR%%/transform/en.map.sample
+%%ETCDIR%%/transform/readme.txt
+@dir /var/run/openhab2
+@dir /var/db/openhab2/home
+@dir /var/db/openhab2/persistence/db4o
+@dir /var/db/openhab2/persistence/mapdb
+@dir /var/db/openhab2/persistence/rrd4j
+@dir /var/db/openhab2/persistence
+@dir /var/db/openhab2/backups
+@dir /var/db/openhab2/userdata/etc/scripts
+@dir /var/db/openhab2/userdata/etc
+@dir /var/db/openhab2/userdata/tmp
+@dir /var/db/openhab2/userdata
+@dir /var/db/openhab2
+@dir /var/log/openhab2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804130925.w3D9PTu7019421>