mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
- switch to new download location (and zip instead of tgz) - set JAVA_VERSION in the start script, to allow coexistence with the upcoming v3 port - while I'm here, please portlint a little bit in maintainer specifc parts
90 lines
2.9 KiB
Bash
90 lines
2.9 KiB
Bash
#!/bin/sh
|
|
|
|
# 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="-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
|
|
export JAVA_VERSION=8
|
|
|
|
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
|
|
if [ -e ${pidfile} ]; then
|
|
wait_for_pids $(cat ${pidfile})
|
|
fi
|
|
}
|
|
|
|
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"
|