diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/ipmitool.ipmievd.init | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 9227063..ab03f92 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,12 +3,13 @@ ipmitool (1.8.11-4) unstable; urgency=low * debian/control: - Add ${misc:Depends} so deps can be added by debhelper. * debian/README.source: Add reference to quilt docs. - * debian/ipmitool.ipmievd.init: Test if /etc/default/rcS - exists, before executing it. + * debian/ipmitool.ipmievd.init: + - Test if /etc/default/rcS exists, before executing it. + - Add status support (Closes: #536119). * debian/ipmitool.{post,pre}{inst,rm}: Add -e. * Fix buffer overflow in tsol session. - -- Luk Claes <luk@debian.org> Tue, 20 Sep 2011 08:00:57 +0200 + -- Luk Claes <luk@debian.org> Tue, 20 Sep 2011 08:07:40 +0200 ipmitool (1.8.11-3) unstable; urgency=high diff --git a/debian/ipmitool.ipmievd.init b/debian/ipmitool.ipmievd.init index 14c13c0..a0c5f20 100644 --- a/debian/ipmitool.ipmievd.init +++ b/debian/ipmitool.ipmievd.init @@ -93,8 +93,11 @@ case "$1" in log_end_msg $CODE exit $CODE ;; + status) + status_of_proc $DAEMON $NAME + ;; *) - echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 + echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2 exit 1 ;; esac |