Index: head/misc/openhab2/Makefile =================================================================== --- head/misc/openhab2/Makefile (revision 530268) +++ head/misc/openhab2/Makefile (revision 530269) @@ -1,71 +1,71 @@ # Created by: Alexander Leidinger # $FreeBSD$ PORTNAME= openhab2 -PORTVERSION= 2.5.1 +PORTVERSION= 2.5.3 #PORTREVISION= 3 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 USE_RC_SUBR= openhab2 SUB_FILES= pkg-message update.freebsd NO_WRKSUBDIR= yes NO_ARCH= yes USERS= openhab GROUPS= openhab 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 \ ${WRKSRC}/runtime/bin/*.psm1 \ ${WRKSRC}/runtime/bin/setenv.bak \ ${WRKSRC}/runtime/bin/setenv.orig 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 ${INSTALL_SCRIPT} ${WRKDIR}/update.freebsd ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/runtime/bin/ (cd ${WRKSRC}/userdata && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/${PORTNAME}) gen-plist: ${FIND} ${STAGEDIR} -type f | sed -e "s:${STAGEDIR}${PREFIX}/::g" | sort -u | grep libexec/ >pkg-plist.new egrep '^(@|#|%)' pkg-plist >>pkg-plist.new .include Index: head/misc/openhab2/distinfo =================================================================== --- head/misc/openhab2/distinfo (revision 530268) +++ head/misc/openhab2/distinfo (revision 530269) @@ -1,3 +1,3 @@ -TIMESTAMP = 1579349106 -SHA256 (openhab-2.5.1.tar.gz) = 79907c05d1fa2b64a843dc1e2f7f46a8f3248f1d2d583604e3538ae5af7202de -SIZE (openhab-2.5.1.tar.gz) = 83134957 +TIMESTAMP = 1584633935 +SHA256 (openhab-2.5.3.tar.gz) = 3016286ec6df5a00fdc0e84affaacb16b02afd3d898d6b580ae1a23e1feb361a +SIZE (openhab-2.5.3.tar.gz) = 83105659 Index: head/misc/openhab2/files/openhab2.in =================================================================== --- head/misc/openhab2/files/openhab2.in (revision 530268) +++ head/misc/openhab2/files/openhab2.in (revision 530269) @@ -1,88 +1,90 @@ #!/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 EXTRA_JAVA_OPTS="-Dsun.nio.fs.watchservice=polling ${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}" +# for UTF-8 encoding, language can be set inside openhab: +export LC_ALL=en_US.UTF-8 #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" Index: head/misc/openhab2/pkg-plist =================================================================== --- head/misc/openhab2/pkg-plist (revision 530268) +++ head/misc/openhab2/pkg-plist (revision 530269) @@ -1,470 +1,470 @@ 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/bin/update libexec/openhab2/runtime/bin/update.freebsd libexec/openhab2/runtime/bin/update.lst libexec/openhab2/runtime/bin/userdata_sysfiles.lst 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.2.7.jar libexec/openhab2/runtime/lib/boot/org.apache.karaf.jaas.boot-4.2.7.jar libexec/openhab2/runtime/lib/boot/org.apache.karaf.main-4.2.7.jar libexec/openhab2/runtime/lib/boot/org.apache.karaf.specs.activator-4.2.7.jar libexec/openhab2/runtime/lib/boot/osgi.core-6.0.0.jar libexec/openhab2/runtime/lib/endorsed/README libexec/openhab2/runtime/lib/endorsed/org.apache.karaf.specs.java.xml-4.2.7.jar libexec/openhab2/runtime/lib/endorsed/org.apache.karaf.specs.java.xml.ws-4.2.7.jar libexec/openhab2/runtime/lib/endorsed/org.apache.karaf.specs.locator-4.2.7.jar libexec/openhab2/runtime/lib/ext/README libexec/openhab2/runtime/lib/jdk9plus/istack-commons-runtime-3.0.8.jar libexec/openhab2/runtime/lib/jdk9plus/jakarta.xml.bind-api-2.3.2.jar libexec/openhab2/runtime/lib/jdk9plus/javax.activation-1.2.0.jar libexec/openhab2/runtime/lib/jdk9plus/javax.annotation-api-1.3.1.jar libexec/openhab2/runtime/lib/jdk9plus/jaxb-runtime-2.3.2.jar libexec/openhab2/runtime/lib/jdk9plus/txw2-2.3.2.jar libexec/openhab2/runtime/services.cfg libexec/openhab2/runtime/system/README 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.9.10/jackson-annotations-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/core/jackson-databind/2.9.10/jackson-databind-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.10/jackson-dataformat-xml-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.10/jackson-dataformat-yaml-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.9.10/jackson-datatype-joda-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.10/jackson-jaxrs-base-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.10/jackson-jaxrs-json-provider-2.9.10.jar libexec/openhab2/runtime/system/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.10/jackson-module-jaxb-annotations-2.9.10.jar libexec/openhab2/runtime/system/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.jar libexec/openhab2/runtime/system/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar libexec/openhab2/runtime/system/com/google/guava/guava/18.0/guava-18.0.jar libexec/openhab2/runtime/system/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar libexec/openhab2/runtime/system/com/hivemq/hivemq-mqtt-client/1.1.2/hivemq-mqtt-client-1.1.2.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.3/commons-net-3.3.jar libexec/openhab2/runtime/system/de/jollyday/jollyday/0.5.8/jollyday-0.5.8.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/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/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-codec-http/4.1.42.Final/netty-codec-http-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-codec-mqtt/4.1.42.Final/netty-codec-mqtt-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar libexec/openhab2/runtime/system/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar libexec/openhab2/runtime/system/io/reactivex/rxjava2/rxjava/2.2.5/rxjava-2.2.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/annotation/javax.annotation-api/1.3/javax.annotation-api-1.3.jar libexec/openhab2/runtime/system/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar libexec/openhab2/runtime/system/javax/mail/mail/1.4.7/mail-1.4.7.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/joda-time/joda-time/2.9.2/joda-time-2.9.2.jar libexec/openhab2/runtime/system/net/java/dev/jna/jna-platform/5.4.0/jna-platform-5.4.0.jar libexec/openhab2/runtime/system/net/java/dev/jna/jna/5.4.0/jna-5.4.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.2/org.apache.aries.spifly.dynamic.bundle-1.2.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/felix/org.apache.felix.configadmin/1.9.16/org.apache.felix.configadmin-1.9.16.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.coordinator/1.0.2/org.apache.felix.coordinator-1.0.2.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.fileinstall/3.6.4/org.apache.felix.fileinstall-3.6.4.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.framework/5.6.12/org.apache.felix.framework-5.6.12.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.2.2/org.apache.felix.metatype-1.2.2.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.scr/2.1.16/org.apache.felix.scr-2.1.16.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.webconsole.plugins.ds/2.1.0/org.apache.felix.webconsole.plugins.ds-2.1.0.jar libexec/openhab2/runtime/system/org/apache/felix/org.apache.felix.webconsole.plugins.event/1.1.8/org.apache.felix.webconsole.plugins.event-1.1.8.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.2.7/org.apache.karaf.bundle.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/config/org.apache.karaf.config.core/4.2.7/org.apache.karaf.config.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.blueprint/4.2.7/org.apache.karaf.deployer.blueprint-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.features/4.2.7/org.apache.karaf.deployer.features-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.kar/4.2.7/org.apache.karaf.deployer.kar-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/deployer/org.apache.karaf.deployer.wrap/4.2.7/org.apache.karaf.deployer.wrap-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/diagnostic/org.apache.karaf.diagnostic.boot/4.2.7/org.apache.karaf.diagnostic.boot-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/diagnostic/org.apache.karaf.diagnostic.core/4.2.7/org.apache.karaf.diagnostic.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/features/framework/4.2.7/framework-4.2.7-features.xml libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.command/4.2.7/org.apache.karaf.features.command-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.core/4.2.7/org.apache.karaf.features.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/features/org.apache.karaf.features.extension/4.2.7/org.apache.karaf.features.extension-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/features/standard/4.2.7/standard-4.2.7-features.xml libexec/openhab2/runtime/system/org/apache/karaf/http/org.apache.karaf.http.core/4.2.7/org.apache.karaf.http.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.2.7/org.apache.karaf.instance.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/jaas/blueprint/org.apache.karaf.jaas.blueprint.config/4.2.7/org.apache.karaf.jaas.blueprint.config-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.boot/4.2.7/org.apache.karaf.jaas.boot-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.command/4.2.7/org.apache.karaf.jaas.command-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.config/4.2.7/org.apache.karaf.jaas.config-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/jaas/org.apache.karaf.jaas.modules/4.2.7/org.apache.karaf.jaas.modules-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/kar/org.apache.karaf.kar.core/4.2.7/org.apache.karaf.kar.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/log/org.apache.karaf.log.core/4.2.7/org.apache.karaf.log.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/org.apache.karaf.client/4.2.7/org.apache.karaf.client-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/org.apache.karaf.event/4.2.7/org.apache.karaf.event-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/package/org.apache.karaf.package.core/4.2.7/org.apache.karaf.package.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/scr/org.apache.karaf.scr.management/4.2.7/org.apache.karaf.scr.management-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/scr/org.apache.karaf.scr.state/4.2.7/org.apache.karaf.scr.state-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/service/org.apache.karaf.service.core/4.2.7/org.apache.karaf.service.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/services/org.apache.karaf.services.eventadmin/4.2.7/org.apache.karaf.services.eventadmin-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.commands/4.2.7/org.apache.karaf.shell.commands-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.core/4.2.7/org.apache.karaf.shell.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/shell/org.apache.karaf.shell.ssh/4.2.7/org.apache.karaf.shell.ssh-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/system/org.apache.karaf.system.core/4.2.7/org.apache.karaf.system.core-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/webconsole/org.apache.karaf.webconsole.http/4.2.7/org.apache.karaf.webconsole.http-4.2.7.jar libexec/openhab2/runtime/system/org/apache/karaf/wrapper/org.apache.karaf.wrapper.core/4.2.7/org.apache.karaf.wrapper.core-4.2.7.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.jaxb-impl/2.2.11_1/org.apache.servicemix.bundles.jaxb-impl-2.2.11_1.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/bundles/org.apache.servicemix.bundles.saaj-impl/1.3.23_2/org.apache.servicemix.bundles.saaj-impl-1.3.23_2.jar libexec/openhab2/runtime/system/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xstream/1.4.7_1/org.apache.servicemix.bundles.xstream-1.4.7_1.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/servicemix/specs/org.apache.servicemix.specs.jaxb-api-2.2/2.9.0/org.apache.servicemix.specs.jaxb-api-2.2-2.9.0.jar libexec/openhab2/runtime/system/org/apache/servicemix/specs/org.apache.servicemix.specs.saaj-api-1.3/2.9.0/org.apache.servicemix.specs.saaj-api-1.3-2.9.0.jar libexec/openhab2/runtime/system/org/apache/sshd/sshd-core/1.7.0/sshd-core-1.7.0.jar libexec/openhab2/runtime/system/org/apache/xbean/xbean-bundleutils/4.14/xbean-bundleutils-4.14.jar libexec/openhab2/runtime/system/org/apache/xbean/xbean-finder/4.14/xbean-finder-4.14.jar libexec/openhab2/runtime/system/org/apache/xbean/xbean-reflect/4.14/xbean-reflect-4.14.jar libexec/openhab2/runtime/system/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar libexec/openhab2/runtime/system/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.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-core/2.0.0/californium-core-2.0.0.jar libexec/openhab2/runtime/system/org/eclipse/californium/californium-osgi/2.0.0/californium-osgi-2.0.0.jar libexec/openhab2/runtime/system/org/eclipse/californium/element-connector/2.0.0/element-connector-2.0.0.jar libexec/openhab2/runtime/system/org/eclipse/californium/scandium/2.0.0/scandium-2.0.0.jar libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.common/2.12.0/org.eclipse.emf.common-2.12.0.jar libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.ecore.change/2.11.0/org.eclipse.emf.ecore.change-2.11.0.jar libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.ecore.xmi/2.12.0/org.eclipse.emf.ecore.xmi-2.12.0.jar libexec/openhab2/runtime/system/org/eclipse/emf/org.eclipse.emf.ecore/2.12.0/org.eclipse.emf.ecore-2.12.0.jar libexec/openhab2/runtime/system/org/eclipse/jdt/core/compiler/ecj/4.5.1/ecj-4.5.1.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-client/9.4.20.v20190813/jetty-client-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-continuation/9.4.20.v20190813/jetty-continuation-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-deploy/9.4.20.v20190813/jetty-deploy-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-http/9.4.20.v20190813/jetty-http-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-io/9.4.20.v20190813/jetty-io-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaas/9.4.20.v20190813/jetty-jaas-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jaspi/9.4.20.v20190813/jetty-jaspi-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jmx/9.4.20.v20190813/jetty-jmx-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-jndi/9.4.20.v20190813/jetty-jndi-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-plus/9.4.20.v20190813/jetty-plus-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-proxy/9.4.20.v20190813/jetty-proxy-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-rewrite/9.4.20.v20190813/jetty-rewrite-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-security/9.4.20.v20190813/jetty-security-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-server/9.4.20.v20190813/jetty-server-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlet/9.4.20.v20190813/jetty-servlet-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-servlets/9.4.20.v20190813/jetty-servlets-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util-ajax/9.4.20.v20190813/jetty-util-ajax-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-util/9.4.20.v20190813/jetty-util-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-webapp/9.4.20.v20190813/jetty-webapp-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/jetty-xml/9.4.20.v20190813/jetty-xml-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.20.v20190813/javax-websocket-client-impl-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.20.v20190813/javax-websocket-server-impl-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-api/9.4.20.v20190813/websocket-api-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-client/9.4.20.v20190813/websocket-client-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-common/9.4.20.v20190813/websocket-common-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-server/9.4.20.v20190813/websocket-server-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/jetty/websocket/websocket-servlet/9.4.20.v20190813/websocket-servlet-9.4.20.v20190813.jar libexec/openhab2/runtime/system/org/eclipse/kura/org.eclipse.soda.dk.comm.aarch64/1.2.201/org.eclipse.soda.dk.comm.aarch64-1.2.201.jar libexec/openhab2/runtime/system/org/eclipse/kura/org.eclipse.soda.dk.comm.armv6hf/1.2.201/org.eclipse.soda.dk.comm.armv6hf-1.2.201.jar libexec/openhab2/runtime/system/org/eclipse/kura/org.eclipse.soda.dk.comm.x86_64/1.2.201/org.eclipse.soda.dk.comm.x86_64-1.2.201.jar libexec/openhab2/runtime/system/org/eclipse/kura/org.eclipse.soda.dk.comm/1.2.201/org.eclipse.soda.dk.comm-1.2.201.jar libexec/openhab2/runtime/system/org/eclipse/lsp4j/org.eclipse.lsp4j.jsonrpc/0.8.0/org.eclipse.lsp4j.jsonrpc-0.8.0.jar libexec/openhab2/runtime/system/org/eclipse/lsp4j/org.eclipse.lsp4j/0.8.0/org.eclipse.lsp4j-0.8.0.jar libexec/openhab2/runtime/system/org/eclipse/orbit/bundles/com.google.gson/2.8.2.v20180104-1110/com.google.gson-2.8.2.v20180104-1110.jar libexec/openhab2/runtime/system/org/eclipse/orbit/bundles/io.github.classgraph/4.8.35.v20190528-1517/io.github.classgraph-4.8.35.v20190528-1517.jar libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.common/3.10.400/org.eclipse.equinox.common-3.10.400.jar libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.registry/3.8.400/org.eclipse.equinox.registry-3.8.400.jar libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.equinox.supplement/1.9.0/org.eclipse.equinox.supplement-1.9.0.jar libexec/openhab2/runtime/system/org/eclipse/platform/org.eclipse.osgi/3.12.100/org.eclipse.osgi-3.12.100.jar libexec/openhab2/runtime/system/org/eclipse/xtend/org.eclipse.xtend.lib.macro/2.19.0/org.eclipse.xtend.lib.macro-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtend/org.eclipse.xtend.lib/2.19.0/org.eclipse.xtend.lib-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.common.types/2.19.0/org.eclipse.xtext.common.types-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.ide/2.19.0/org.eclipse.xtext.ide-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.smap/2.19.0/org.eclipse.xtext.smap-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.util/2.19.0/org.eclipse.xtext.util-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase.ide/2.19.0/org.eclipse.xtext.xbase.ide-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.19.0/org.eclipse.xtext.xbase.lib-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext.xbase/2.19.0/org.eclipse.xtext.xbase-2.19.0.jar libexec/openhab2/runtime/system/org/eclipse/xtext/org.eclipse.xtext/2.19.0/org.eclipse.xtext-2.19.0.jar libexec/openhab2/runtime/system/org/fusesource/jansi/jansi/1.18/jansi-1.18.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/jctools/jctools-core/2.1.2/jctools-core-2.1.2.jar libexec/openhab2/runtime/system/org/jline/jline-builtins/3.12.1/jline-builtins-3.12.1.jar libexec/openhab2/runtime/system/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar libexec/openhab2/runtime/system/org/jline/jline-terminal-jansi/3.12.1/jline-terminal-jansi-3.12.1.jar libexec/openhab2/runtime/system/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar libexec/openhab2/runtime/system/org/jline/jline/3.12.1/jline-3.12.1.jar libexec/openhab2/runtime/system/org/jmdns/jmdns/3.5.5/jmdns-3.5.5.jar libexec/openhab2/runtime/system/org/jupnp/org.jupnp/2.5.2/org.jupnp-2.5.2.jar libexec/openhab2/runtime/system/org/jvnet/mimepull/mimepull/1.9.6/mimepull-1.9.6.jar libexec/openhab2/runtime/system/org/jvnet/staxex/stax-ex/1.7.4/stax-ex-1.7.4.jar libexec/openhab2/runtime/system/org/mapdb/mapdb/1.0.9/mapdb-1.0.9.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.audio/2.5.0/org.openhab.core.audio-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.auth.jaas/2.5.0/org.openhab.core.auth.jaas-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.auth.oauth2client/2.5.0/org.openhab.core.auth.oauth2client-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.automation.module.media/2.5.0/org.openhab.core.automation.module.media-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.automation.module.script.rulesupport/2.5.0/org.openhab.core.automation.module.script.rulesupport-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.automation.module.script/2.5.0/org.openhab.core.automation.module.script-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.automation.rest/2.5.0/org.openhab.core.automation.rest-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.automation/2.5.0/org.openhab.core.automation-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.binding.xml/2.5.0/org.openhab.core.binding.xml-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.boot/2.5.0/org.openhab.core.boot-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.compat1x/2.5.0/org.openhab.core.compat1x-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.core/2.5.0/org.openhab.core.config.core-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.discovery.mdns/2.5.0/org.openhab.core.config.discovery.mdns-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.discovery.upnp/2.5.0/org.openhab.core.config.discovery.upnp-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.discovery.usbserial.linuxsysfs/2.5.0/org.openhab.core.config.discovery.usbserial.linuxsysfs-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.discovery.usbserial/2.5.0/org.openhab.core.config.discovery.usbserial-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.discovery/2.5.0/org.openhab.core.config.discovery-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.dispatch/2.5.0/org.openhab.core.config.dispatch-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.serial/2.5.0/org.openhab.core.config.serial-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.config.xml/2.5.0/org.openhab.core.config.xml-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.ephemeris/2.5.0/org.openhab.core.ephemeris-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.id/2.5.0/org.openhab.core.id-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.bin2json/2.5.0/org.openhab.core.io.bin2json-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.console.karaf/2.5.0/org.openhab.core.io.console.karaf-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.console/2.5.0/org.openhab.core.io.console-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.http.auth.basic/2.5.0/org.openhab.core.io.http.auth.basic-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.http.auth/2.5.0/org.openhab.core.io.http.auth-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.http/2.5.0/org.openhab.core.io.http-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.jetty.certificate/2.5.0/org.openhab.core.io.jetty.certificate-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.monitor/2.5.0/org.openhab.core.io.monitor-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.net/2.5.0/org.openhab.core.io.net-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.audio/2.5.0/org.openhab.core.io.rest.audio-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.auth/2.5.0/org.openhab.core.io.rest.auth-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.core/2.5.0/org.openhab.core.io.rest.core-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.log/2.5.0/org.openhab.core.io.rest.log-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.mdns/2.5.0/org.openhab.core.io.rest.mdns-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.optimize/2.5.0/org.openhab.core.io.rest.optimize-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.sitemap/2.5.0/org.openhab.core.io.rest.sitemap-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.sse/2.5.0/org.openhab.core.io.rest.sse-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest.voice/2.5.0/org.openhab.core.io.rest.voice-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.rest/2.5.0/org.openhab.core.io.rest-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.dbus/2.5.0/org.openhab.core.io.transport.dbus-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.mdns/2.5.0/org.openhab.core.io.transport.mdns-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.mqtt/2.5.0/org.openhab.core.io.transport.mqtt-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.serial.javacomm/2.5.0/org.openhab.core.io.transport.serial.javacomm-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.serial.rxtx.rfc2217/2.5.0/org.openhab.core.io.transport.serial.rxtx.rfc2217-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.serial.rxtx/2.5.0/org.openhab.core.io.transport.serial.rxtx-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.serial/2.5.0/org.openhab.core.io.transport.serial-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.io.transport.upnp/2.5.0/org.openhab.core.io.transport.upnp-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.karaf/2.5.0/org.openhab.core.karaf-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.core/2.5.0/org.openhab.core.model.core-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.item.ide/2.5.0/org.openhab.core.model.item.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.item.runtime/2.5.0/org.openhab.core.model.item.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.item/2.5.0/org.openhab.core.model.item-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.lsp/2.5.0/org.openhab.core.model.lsp-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.persistence.ide/2.5.0/org.openhab.core.model.persistence.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.persistence.runtime/2.5.0/org.openhab.core.model.persistence.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.persistence/2.5.0/org.openhab.core.model.persistence-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.rule.ide/2.5.0/org.openhab.core.model.rule.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.rule.runtime/2.5.0/org.openhab.core.model.rule.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.rule/2.5.0/org.openhab.core.model.rule-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.script.ide/2.5.0/org.openhab.core.model.script.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.script.runtime/2.5.0/org.openhab.core.model.script.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.script/2.5.0/org.openhab.core.model.script-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.sitemap.ide/2.5.0/org.openhab.core.model.sitemap.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.sitemap.runtime/2.5.0/org.openhab.core.model.sitemap.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.sitemap/2.5.0/org.openhab.core.model.sitemap-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.thing.ide/2.5.0/org.openhab.core.model.thing.ide-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.thing.runtime/2.5.0/org.openhab.core.model.thing.runtime-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.model.thing/2.5.0/org.openhab.core.model.thing-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.persistence/2.5.0/org.openhab.core.persistence-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.scheduler/2.5.0/org.openhab.core.scheduler-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.semantics/2.5.0/org.openhab.core.semantics-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.storage.json/2.5.0/org.openhab.core.storage.json-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.storage.mapdb/2.5.0/org.openhab.core.storage.mapdb-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.thing.xml/2.5.0/org.openhab.core.thing.xml-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.thing/2.5.0/org.openhab.core.thing-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.transform/2.5.0/org.openhab.core.transform-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.ui.icon/2.5.0/org.openhab.core.ui.icon-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.ui/2.5.0/org.openhab.core.ui-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core.voice/2.5.0/org.openhab.core.voice-2.5.0.jar libexec/openhab2/runtime/system/org/openhab/core/bundles/org.openhab.core/2.5.0/org.openhab.core-2.5.0.jar -libexec/openhab2/runtime/system/org/openhab/distro/distro-kar/2.5.1/distro-kar-2.5.1-features.xml -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-automation-js.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-items.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-persistence-rrd4j.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-rules.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-scripts.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-services-basicui.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-services-classicui.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-services-logging.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-sitemaps.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-things.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.1/distro-resources-2.5.1-transform-en.cfg -libexec/openhab2/runtime/system/org/openhab/distro/distro/2.5.1/distro-2.5.1-features.xml -libexec/openhab2/runtime/system/org/openhab/distro/openhab-addons/2.5.1/openhab-addons-2.5.1-features.xml +libexec/openhab2/runtime/system/org/openhab/distro/distro-kar/2.5.3/distro-kar-2.5.3-features.xml +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-automation-js.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-items.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-persistence-rrd4j.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-rules.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-scripts.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-services-basicui.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-services-classicui.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-services-logging.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-sitemaps.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-things.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro-resources/2.5.3/distro-resources-2.5.3-transform-en.cfg +libexec/openhab2/runtime/system/org/openhab/distro/distro/2.5.3/distro-2.5.3-features.xml +libexec/openhab2/runtime/system/org/openhab/distro/openhab-addons/2.5.3/openhab-addons-2.5.3-features.xml libexec/openhab2/runtime/system/org/openhab/nrjavaserial/3.15.0.OH2/nrjavaserial-3.15.0.OH2.jar libexec/openhab2/runtime/system/org/openhab/osgiify/com.google.dagger/2.20/com.google.dagger-2.20.jar libexec/openhab2/runtime/system/org/openhab/osgiify/com.igormaznitsa.jbbp/1.4.1/com.igormaznitsa.jbbp-1.4.1.jar -libexec/openhab2/runtime/system/org/openhab/ui/bundles/org.openhab.ui.dashboard/2.5.1/org.openhab.ui.dashboard-2.5.1.jar +libexec/openhab2/runtime/system/org/openhab/ui/bundles/org.openhab.ui.dashboard/2.5.3/org.openhab.ui.dashboard-2.5.3.jar libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-api/1.11.2/pax-logging-api-1.11.2.jar libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-log4j2/1.11.2/pax-logging-log4j2-1.11.2.jar libexec/openhab2/runtime/system/org/ops4j/pax/logging/pax-logging-logback/1.11.2/pax-logging-logback-1.11.2.jar libexec/openhab2/runtime/system/org/ops4j/pax/url/pax-url-aether/2.6.1/pax-url-aether-2.6.1.jar libexec/openhab2/runtime/system/org/ops4j/pax/url/pax-url-wrap/2.6.1/pax-url-wrap-2.6.1-uber.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-api/7.2.11/pax-web-api-7.2.11.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-extender-whiteboard/7.2.11/pax-web-extender-whiteboard-7.2.11.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-features/7.2.11/pax-web-features-7.2.11-features.xml libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-features/7.2.11/pax-web-features-7.2.11-jettyconfig.xml libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-jetty/7.2.11/pax-web-jetty-7.2.11.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-jsp/7.2.11/pax-web-jsp-7.2.11.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-runtime/7.2.11/pax-web-runtime-7.2.11.jar libexec/openhab2/runtime/system/org/ops4j/pax/web/pax-web-spi/7.2.11/pax-web-spi-7.2.11.jar libexec/openhab2/runtime/system/org/osgi/org.osgi.util.function/1.0.0/org.osgi.util.function-1.0.0.jar libexec/openhab2/runtime/system/org/osgi/org.osgi.util.promise/1.0.0/org.osgi.util.promise-1.0.0.jar libexec/openhab2/runtime/system/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1.jar libexec/openhab2/runtime/system/org/ow2/asm/asm-commons/7.1/asm-commons-7.1.jar libexec/openhab2/runtime/system/org/ow2/asm/asm-tree/7.1/asm-tree-7.1.jar libexec/openhab2/runtime/system/org/ow2/asm/asm-util/7.1/asm-util-7.1.jar libexec/openhab2/runtime/system/org/ow2/asm/asm/7.1/asm-7.1.jar libexec/openhab2/runtime/system/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.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/threeten/threeten-extra/1.4/threeten-extra-1.4.jar libexec/openhab2/runtime/system/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar libexec/openhab2/runtime/system/tec/uom/lib/uom-lib-common/1.0.3/uom-lib-common-1.0.3.jar libexec/openhab2/runtime/system/tec/uom/uom-se/1.0.10/uom-se-1.0.10.jar libexec/openhab2/start.sh libexec/openhab2/start_debug.sh @owner openhab @group openhab @sample %%DATADIR%%/etc/all.policy /var/db/openhab2/userdata/etc/all.policy @sample %%DATADIR%%/etc/branding-ssh.properties /var/db/openhab2/userdata/etc/branding-ssh.properties @sample %%DATADIR%%/etc/branding.properties /var/db/openhab2/userdata/etc/branding.properties @sample %%DATADIR%%/etc/com.eclipsesource.jaxrs.connector.cfg /var/db/openhab2/userdata/etc/com.eclipsesource.jaxrs.connector.cfg @sample %%DATADIR%%/etc/com.eclipsesource.jaxrs.swagger.config.cfg /var/db/openhab2/userdata/etc/com.eclipsesource.jaxrs.swagger.config.cfg @sample %%DATADIR%%/etc/config.properties /var/db/openhab2/userdata/etc/config.properties @sample %%DATADIR%%/etc/custom.properties /var/db/openhab2/userdata/etc/custom.properties @sample %%DATADIR%%/etc/custom.system.properties /var/db/openhab2/userdata/etc/custom.system.properties @sample %%DATADIR%%/etc/distribution.info /var/db/openhab2/userdata/etc/distribution.info @sample %%DATADIR%%/etc/equinox-debug.properties /var/db/openhab2/userdata/etc/equinox-debug.properties @sample %%DATADIR%%/etc/java.util.logging.properties /var/db/openhab2/userdata/etc/java.util.logging.properties @sample %%DATADIR%%/etc/jmx.acl.org.apache.karaf.bundle.cfg /var/db/openhab2/userdata/etc/jmx.acl.org.apache.karaf.bundle.cfg @sample %%DATADIR%%/etc/jmx.acl.org.apache.karaf.config.cfg /var/db/openhab2/userdata/etc/jmx.acl.org.apache.karaf.config.cfg @sample %%DATADIR%%/etc/jre.properties /var/db/openhab2/userdata/etc/jre.properties @sample %%DATADIR%%/etc/keys.properties /var/db/openhab2/userdata/etc/keys.properties @sample %%DATADIR%%/etc/keystore /var/db/openhab2/userdata/etc/keystore @sample %%DATADIR%%/etc/org.apache.felix.eventadmin.impl.EventAdmin.cfg /var/db/openhab2/userdata/etc/org.apache.felix.eventadmin.impl.EventAdmin.cfg @sample %%DATADIR%%/etc/org.apache.felix.fileinstall-deploy.cfg /var/db/openhab2/userdata/etc/org.apache.felix.fileinstall-deploy.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.bundle.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.bundle.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.config.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.config.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.feature.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.feature.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.jaas.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.jaas.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.kar.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.kar.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.scope_bundle.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.scope_bundle.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.shell.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.shell.cfg @sample %%DATADIR%%/etc/org.apache.karaf.command.acl.system.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.command.acl.system.cfg @sample %%DATADIR%%/etc/org.apache.karaf.features.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.features.cfg @sample %%DATADIR%%/etc/org.apache.karaf.features.repos.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.features.repos.cfg @sample %%DATADIR%%/etc/org.apache.karaf.jaas.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.jaas.cfg @sample %%DATADIR%%/etc/org.apache.karaf.kar.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.kar.cfg @sample %%DATADIR%%/etc/org.apache.karaf.log.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.log.cfg @sample %%DATADIR%%/etc/org.apache.karaf.shell.cfg /var/db/openhab2/userdata/etc/org.apache.karaf.shell.cfg @sample %%DATADIR%%/etc/org.eclipse.smarthome.audio.cfg /var/db/openhab2/userdata/etc/org.eclipse.smarthome.audio.cfg @sample %%DATADIR%%/etc/org.eclipse.smarthome.voice.cfg /var/db/openhab2/userdata/etc/org.eclipse.smarthome.voice.cfg @sample %%DATADIR%%/etc/org.jupnp.cfg /var/db/openhab2/userdata/etc/org.jupnp.cfg @sample %%DATADIR%%/etc/org.ops4j.pax.logging.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.logging.cfg @sample %%DATADIR%%/etc/org.ops4j.pax.url.mvn.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.url.mvn.cfg @sample %%DATADIR%%/etc/org.ops4j.pax.web.cfg /var/db/openhab2/userdata/etc/org.ops4j.pax.web.cfg @sample %%DATADIR%%/etc/overrides.properties /var/db/openhab2/userdata/etc/overrides.properties @sample %%DATADIR%%/etc/profile.cfg /var/db/openhab2/userdata/etc/profile.cfg @sample %%DATADIR%%/etc/scripts/shell.colors.script /var/db/openhab2/userdata/etc/scripts/shell.colors.script @sample %%DATADIR%%/etc/scripts/shell.completion.script /var/db/openhab2/userdata/etc/scripts/shell.completion.script @sample %%DATADIR%%/etc/shell.init.script /var/db/openhab2/userdata/etc/shell.init.script @sample %%DATADIR%%/etc/startup.properties /var/db/openhab2/userdata/etc/startup.properties @sample %%DATADIR%%/etc/system.properties /var/db/openhab2/userdata/etc/system.properties @sample %%DATADIR%%/etc/users.properties /var/db/openhab2/userdata/etc/users.properties @sample %%DATADIR%%/etc/version.properties /var/db/openhab2/userdata/etc/version.properties @sample %%DATADIR%%/tmp/README /var/db/openhab2/userdata/tmp/README @dir %%ETCDIR%% @dir %%ETCDIR%%/html @dir %%ETCDIR%%/icons @dir %%ETCDIR%%/icons/classic @dir %%ETCDIR%%/items @dir %%ETCDIR%%/persistence @dir %%ETCDIR%%/rules @dir %%ETCDIR%%/scripts @dir %%ETCDIR%%/services @dir %%ETCDIR%%/sitemaps @dir %%ETCDIR%%/sounds @dir %%ETCDIR%%/things @dir %%ETCDIR%%/transform @sample(openhab,openhab,640) %%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(openhab,openhab,640) %%ETCDIR%%/services/addons.cfg.sample %%ETCDIR%%/services/readme.txt @sample(openhab,openhab,640) %%ETCDIR%%/services/runtime.cfg.sample %%ETCDIR%%/sitemaps/readme.txt %%ETCDIR%%/sounds/barking.mp3 %%ETCDIR%%/sounds/doorbell.mp3 %%ETCDIR%%/things/readme.txt @sample(openhab,openhab,640) %%ETCDIR%%/transform/de.map.sample @sample(openhab,openhab,640) %%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 Index: head/misc/openhab2-addons/Makefile =================================================================== --- head/misc/openhab2-addons/Makefile (revision 530268) +++ head/misc/openhab2-addons/Makefile (revision 530269) @@ -1,34 +1,34 @@ # Created by: Alexander Leidinger # $FreeBSD$ PORTNAME= openhab2-addons -PORTVERSION= 2.5.1 +PORTVERSION= 2.5.3 CATEGORIES= misc java MASTER_SITES= https://bintray.com/openhab/mvn/download_file?file_path=org%2Fopenhab%2Fdistro%2Fopenhab-addons%2F${PORTVERSION}/ DISTNAME= openhab-addons-${PORTVERSION} EXTRACT_SUFX= .kar MAINTAINER= netchild@FreeBSD.org COMMENT= Addons for openhab2 LICENSE= EPL RUN_DEPENDS= ${LOCALBASE}/libexec/openhab2/addons/README:misc/openhab2 USERS= openhab GROUPS= openhab NO_WRKSUBDIR= yes NO_BUILD= yes EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS="-v" EXTRACT_AFTER_ARGS="${EXTRACT_WRKDIR}" PLIST_FILES= libexec/openhab2/addons/openhab-addons-${PORTVERSION}.kar do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/openhab2 ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/openhab2/addons (cd ${WRKSRC} && ${INSTALL_DATA} ${DISTNAME}${EXTRACT_SUFX} ${STAGEDIR}${PREFIX}/libexec/openhab2/addons/) .include Index: head/misc/openhab2-addons/distinfo =================================================================== --- head/misc/openhab2-addons/distinfo (revision 530268) +++ head/misc/openhab2-addons/distinfo (revision 530269) @@ -1,3 +1,3 @@ -TIMESTAMP = 1579350195 -SHA256 (openhab-addons-2.5.1.kar) = 2d61a4d2506c686c8cf16e71dad3ffc76a8e6018d83696628868e0419c4f9f50 -SIZE (openhab-addons-2.5.1.kar) = 190526801 +TIMESTAMP = 1585809483 +SHA256 (openhab-addons-2.5.3.kar) = 2841c4a4cbf31b94915eabf55288f45e1a372b798ee6f8a81752dbc9c8c3b04f +SIZE (openhab-addons-2.5.3.kar) = 192354550