]> git.zerfleddert.de Git - hmcfgusb/commitdiff
debian: make hmland configurable, update version
authorMichael Gernoth <michael@gernoth.net>
Thu, 16 Jul 2015 21:19:01 +0000 (23:19 +0200)
committerMichael Gernoth <michael@gernoth.net>
Thu, 16 Jul 2015 21:19:01 +0000 (23:19 +0200)
debian/changelog
debian/hmcfgusb.default.ex [deleted file]
debian/hmcfgusb.links [new file with mode: 0644]
debian/hmland.default [new file with mode: 0644]
debian/hmland.init

index d855e9e87a7425f767430e9b3b8ba2c0bdfa1cb5..3075583326b1c7e8ea5d42dcf0e2ba7bda189854 100644 (file)
@@ -1,3 +1,11 @@
+hmcfgusb (0.101-1) unstable; urgency=low
+
+  * Update to new hmland version
+  * Don't enable logging by default
+  * Make hmland configurable by /etc/default/hmland
+
+ -- Michael Gernoth <michael@gernoth.net>  Thu, 16 Jul 2015 22:55:51 +0200
+
 hmcfgusb (0.097-2) unstable; urgency=low
 
   * Add logrotate script
 hmcfgusb (0.097-2) unstable; urgency=low
 
   * Add logrotate script
diff --git a/debian/hmcfgusb.default.ex b/debian/hmcfgusb.default.ex
deleted file mode 100644 (file)
index 5fcb36c..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# Defaults for hmcfgusb initscript
-# sourced by /etc/init.d/hmcfgusb
-# installed at /etc/default/hmcfgusb by the maintainer scripts
-
-#
-# This is a POSIX shell fragment
-#
-
-# Additional options that are passed to the Daemon.
-DAEMON_OPTS=""
diff --git a/debian/hmcfgusb.links b/debian/hmcfgusb.links
new file mode 100644 (file)
index 0000000..6451e03
--- /dev/null
@@ -0,0 +1,4 @@
+/opt/hm/hmcfgusb/flash-hmcfgusb        /usr/bin/flash-hmcfgusb
+/opt/hm/hmcfgusb/flash-ota     /usr/bin/flash-ota
+/opt/hm/hmcfgusb/hmsniff       /usr/bin/hmsniff
+/opt/hm/hmcfgusb/hmland                /usr/sbin/hmland
diff --git a/debian/hmland.default b/debian/hmland.default
new file mode 100644 (file)
index 0000000..60ba9d2
--- /dev/null
@@ -0,0 +1,22 @@
+# Defaults for hmland initscript
+# sourced by /etc/init.d/hmland
+# installed at /etc/default/hmland by the maintainer scripts
+
+#
+# This is a POSIX shell fragment
+#
+
+# Is hmland enabled?
+HMLAND_ENABLED="1"
+
+# Port hmland is listening on
+HMLAND_PORT="1000"
+
+# Enable logging to /var/log/hmland.log
+#HMLAND_LOGGING="yes"
+HMLAND_LOGGING="no"
+
+# Additional options that are passed to hmland.
+# e.g. to listen on localhost only:
+#HMLAND_OPTS="-l 127.0.0.1"
+HMLAND_OPTS=""
index dd0dd0e9166c305e54c01ae942dcf997c00fc72c..229157bb7cc2bc7e34ca5608f8b4a97bc7ecffbe 100644 (file)
@@ -18,16 +18,28 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin
 DESC="Homematic LAN Adapter service" # Introduce a short description here
 NAME=hmland             # Introduce the short server's name here
 DAEMON=/opt/hm/hmcfgusb/$NAME # Introduce the server's location here
 DESC="Homematic LAN Adapter service" # Introduce a short description here
 NAME=hmland             # Introduce the short server's name here
 DAEMON=/opt/hm/hmcfgusb/$NAME # Introduce the server's location here
-DAEMON_ARGS="-r 03:30 -d -P -p 1000 -L /var/log/hmland.log"             # Arguments to run the daemon with
+DAEMON_ARGS="-d -P"             # Arguments to run the daemon with
 PIDFILE=/var/run/$NAME.pid
 SCRIPTNAME=/etc/init.d/$NAME
 
 # Exit if the package is not installed
 [ -x $DAEMON ] || exit 0
 
 PIDFILE=/var/run/$NAME.pid
 SCRIPTNAME=/etc/init.d/$NAME
 
 # Exit if the package is not installed
 [ -x $DAEMON ] || exit 0
 
+HMLAND_LOGGING="no"
+HMLAND_PORT="1000"
+HMLAND_ENABLED="0"
+
 # Read configuration variable file if it is present
 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
 
 # Read configuration variable file if it is present
 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
 
+test "$HMLAND_ENABLED" != "0" || exit 0
+
+DAEMON_ARGS="$DAEMON_ARGS -p $HMLAND_PORT $HMLAND_OPTS"
+
+if [ "$HMLAND_LOGGING" = "yes" ]; then
+       DAEMON_ARGS="$DAEMON_ARGS -L /var/log/hmland.log"
+fi
+
 # Load the VERBOSE setting and other rcS variables
 . /lib/init/vars.sh
 
 # Load the VERBOSE setting and other rcS variables
 . /lib/init/vars.sh
 
Impressum, Datenschutz