Your message dated Mon, 11 Aug 2008 13:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#491567: fixed in qcontrol 0.4.2-1
has caused the Debian Bug report #491567,
regarding Please add (pseudo) QNAP TS-409 support
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
491567: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491567
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: qcontrol
Version: 0.4.1-3
Severity: wishlist

qcontrol currently doesn't have support for the QNAP TS-409 but the
TS-209 and TS-409 are similar enough to use the TS-209 support code
for now.  Can you please upload with the attached patch so qcontrol
will also recognize the TS-409 and use the TS-209 support code.  It
would be good to get this into lenny.

Differences between the TS-209 and TS-409:

 - The TS-409 has no power LED, but the "powerled" command employed
   in the init script and udeb is harmless on the TS-409 since it
   simply does nothing.
 - The TS-409 has better temperature reporting, but this is only
   useful in daemon mode, which is currently not used in the .deb.



diff -urN qcontrol-0.4.1~/debian/control qcontrol-0.4.1/debian/control
--- qcontrol-0.4.1~/debian/control      2008-07-20 16:59:03.000000000 +0300
+++ qcontrol-0.4.1/debian/control       2008-07-20 17:01:07.000000000 +0300
@@ -9,7 +9,7 @@
 Package: qcontrol
 Architecture: arm armel
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: hardware control for QNAP TS-109 and TS-209
+Description: hardware control for QNAP TS-109, TS-209 and TS-409
  Allows to send commands to the microcontroller of supported devices,
  for example to change leds or sound a buzzer.
  .
@@ -17,8 +17,9 @@
  presses or temperature, with events triggering actions defined in the
  configuration file.
  .
- Supported devices at this time are the QNAP TS-109 and TS-209 but the
- code is extensible so more devices may be added in future releases.
+ Supported devices at this time are the QNAP TS-109, TS-209 and TS-409
+ but the code is extensible so more devices may be added in future
+ releases.
  .
  Warning: the program is in alpha state, use at your own risk.
 
@@ -27,5 +28,5 @@
 Architecture: arm armel
 Depends: ${shlibs:Depends}, ${misc:Depends}, input-modules
 XC-Package-Type: udeb
-Description: hardware control for QNAP TS-109 and TS-209
+Description: hardware control for QNAP TS-109, TS-209 and TS-409
  Allows to change status leds or sound the buzzer of supported devices.
diff -urN qcontrol-0.4.1~/debian/init.d qcontrol-0.4.1/debian/init.d
--- qcontrol-0.4.1~/debian/init.d       2008-07-20 16:59:03.000000000 +0300
+++ qcontrol-0.4.1/debian/init.d        2008-07-20 17:00:06.000000000 +0300
@@ -8,7 +8,7 @@
 # Should-Stop:       
 # Default-Start:     2 3 4 5
 # Default-Stop:      0 6
-# Short-Description: Change status leds for QNAP TS-109/TS-209
+# Short-Description: Change status leds for QNAP TS-109/TS-209 and TS-409
 ### END INIT INFO
 
 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
@@ -70,7 +70,7 @@
        device=$(grep "Hardware[[:space:]]*:" /proc/cpuinfo 2>/dev/null | \
                 head -n1 | sed "s/^[^:]*: //")
        case $device in
-           "QNAP TS-109/TS-209")
+           "QNAP TS-109/TS-209" | "QNAP TS-409")
                test_event_dev || exit 0
                if pid=$(qcontrol_start); then
                        log_action_msg "System boot completed"
@@ -96,7 +96,7 @@
        device=$(grep "Hardware[[:space:]]*:" /proc/cpuinfo 2>/dev/null | \
                 head -n1 | sed "s/^[^:]*: //")
        case $device in
-           "QNAP TS-109/TS-209")
+           "QNAP TS-109/TS-209" | "QNAP TS-409")
                test_event_dev || exit 0
                if pid=$(qcontrol_start); then
                        log_action_msg "Preparing for shutdown"
diff -urN qcontrol-0.4.1~/debian/qcontrol.1 qcontrol-0.4.1/debian/qcontrol.1
--- qcontrol-0.4.1~/debian/qcontrol.1   2008-07-20 16:59:03.000000000 +0300
+++ qcontrol-0.4.1/debian/qcontrol.1    2008-07-20 17:01:55.000000000 +0300
@@ -1,7 +1,7 @@
 .TH QCONTROL 1 "2008-05-29" "Debian Project" ""
 
 .SH NAME
-qcontrol \- Hardware control for QNAP TS-109 and TS-209
+qcontrol \- Hardware control for QNAP TS-109, TS-209 and TS-409
 
 .SH SYNOPSIS
 \fBqcontrol\fB -d
@@ -18,8 +18,8 @@
 therefore advised when using qcontrol as a real daemon to monitor and
 control a device.
 .PP
-Currently supported devices are the QNAP TS-109 and QNAP TS-209, but
-support for additional devices may be added in future releases.
+Currently supported devices are the QNAP TS-109, QNAP TS-209 and QNAP
+TS-409, but support for additional devices may be added in future releases.
 
 .SH BASIC USAGE
 First a control process needs to be started that opens a socket through
diff -urN qcontrol-0.4.1~/debian/udeb/qcommand 
qcontrol-0.4.1/debian/udeb/qcommand
--- qcontrol-0.4.1~/debian/udeb/qcommand        2008-07-20 16:59:03.000000000 
+0300
+++ qcontrol-0.4.1/debian/udeb/qcommand 2008-07-20 16:59:28.000000000 +0300
@@ -7,7 +7,7 @@
 device=$(grep "Hardware[[:space:]]*:" /proc/cpuinfo 2>/dev/null | \
         head -n1 | sed "s/^[^:]*: //")
 case $device in
-    "QNAP TS-109/TS-209")
+    "QNAP TS-109/TS-209" | "QNAP TS-409")
        # Success or continue 
        [ "$1" = "-t" ] && exit 0 || true ;;
     *)

-- 
Martin Michlmayr
http://www.cyrius.com/



--- End Message ---
--- Begin Message ---
Source: qcontrol
Source-Version: 0.4.2-1

We believe that the bug you reported is fixed in the latest version of
qcontrol, which is due to be installed in the Debian FTP archive:

qcontrol-udeb_0.4.2-1_armel.udeb
  to pool/main/q/qcontrol/qcontrol-udeb_0.4.2-1_armel.udeb
qcontrol_0.4.2-1.diff.gz
  to pool/main/q/qcontrol/qcontrol_0.4.2-1.diff.gz
qcontrol_0.4.2-1.dsc
  to pool/main/q/qcontrol/qcontrol_0.4.2-1.dsc
qcontrol_0.4.2-1_armel.deb
  to pool/main/q/qcontrol/qcontrol_0.4.2-1_armel.deb
qcontrol_0.4.2.orig.tar.gz
  to pool/main/q/qcontrol/qcontrol_0.4.2.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop <[EMAIL PROTECTED]> (supplier of updated qcontrol package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 11 Aug 2008 15:21:21 +0200
Source: qcontrol
Binary: qcontrol qcontrol-udeb
Architecture: source armel
Version: 0.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Frans Pop <[EMAIL PROTECTED]>
Changed-By: Frans Pop <[EMAIL PROTECTED]>
Description: 
 qcontrol   - hardware control for QNAP TS-109, TS-209 and TS-409
 qcontrol-udeb - hardware control for QNAP TS-109, TS-209 and TS-409 (udeb)
Closes: 491567
Changes: 
 qcontrol (0.4.2-1) unstable; urgency=low
 .
   * New upstream version:
     - support for QNAP TS-409 (closes: #491567)
   * Update config values for restart and media buttons in line with change in
     Debian kernel 2.6.26 (upstream 2.6.27). Thanks to Martin Michlmayr for
     alerting me to the change.
   * udeb: Modify /etc/modules during base-installer instead of finish-install;
     it is slightly more logical to do this at the same time as installing the
     package.
Checksums-Sha1: 
 7e1f16b9760479b89fee3b3856e3ab22acd92507 1046 qcontrol_0.4.2-1.dsc
 942027d7f26da368fa1f34b0bd4fecffa808b211 18344 qcontrol_0.4.2.orig.tar.gz
 2717d222565a5bb966c3d04cba40ccef833337f9 7550 qcontrol_0.4.2-1.diff.gz
 e5c7ea408ca80adedb8c9d4b31ce36f9a9b18369 16286 qcontrol_0.4.2-1_armel.deb
 46f6f7fa6b997b0124f73066ac68e71c13b0974f 68972 qcontrol-udeb_0.4.2-1_armel.udeb
Checksums-Sha256: 
 946d077d20f5a5dfcecb5119d544d465beae3fb830ebf543cd071689bec79281 1046 
qcontrol_0.4.2-1.dsc
 efe7311cdd460a51475d22f737540e7bb3c4303e5eba97b782d765c8f1e67055 18344 
qcontrol_0.4.2.orig.tar.gz
 554abddd0453b691673b2f26cf43b03b6e09fbacc2063ef0cbbcd15a4a26f9bf 7550 
qcontrol_0.4.2-1.diff.gz
 d7e7a2f9a5ef33faf5b27ce236d932d618278f29db59c705c6f4422ffe761389 16286 
qcontrol_0.4.2-1_armel.deb
 fd18725b919cb308708e9409318790b5c32b15c58c6024c045ddcaa9fda61778 68972 
qcontrol-udeb_0.4.2-1_armel.udeb
Files: 
 adde1280f7c353fa34f51ec6a0422f36 1046 utils optional qcontrol_0.4.2-1.dsc
 d9eb4eb19d599cfcf134eee3828b1bd4 18344 utils optional 
qcontrol_0.4.2.orig.tar.gz
 c931cc503569c8855416aa9179bab135 7550 utils optional qcontrol_0.4.2-1.diff.gz
 bacbc646235222a728756e64ed992c87 16286 utils optional 
qcontrol_0.4.2-1_armel.deb
 b0b316eb57d50750008fe16a6bc3f758 68972 debian-installer optional 
qcontrol-udeb_0.4.2-1_armel.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkigP0kACgkQgm/Kwh6ICoQeKgCgvvQ0fntySpvMsGzvYTC0/4K6
AOoAn0DcZ50E6crInMfCfoc5HbUjpE8+
=pi1y
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to