diff -Nru at-3.1.10.1ubuntu2/debian/changelog at-3.1.10.1ubuntu3/debian/changelog --- at-3.1.10.1ubuntu2/debian/changelog 2008-05-16 04:53:09.000000000 -0500 +++ at-3.1.10.1ubuntu3/debian/changelog 2008-07-08 16:22:20.000000000 -0500 @@ -1,3 +1,11 @@ +at (3.1.10.1ubuntu3) intrepid; urgency=low + + * debian/control: Depend on lsb >= 3.2-12ubuntu2, which has the + status_of_proc() function. + * debian/rc: Add the 'status' action (LP: #203169). + + -- Dustin Kirkland Tue, 08 Jul 2008 13:55:42 -0500 + at (3.1.10.1ubuntu2) intrepid; urgency=low * debian/control: Drop mail-transport-agent to a Suggests: again, and prefer diff -Nru at-3.1.10.1ubuntu2/debian/control at-3.1.10.1ubuntu3/debian/control --- at-3.1.10.1ubuntu2/debian/control 2008-05-16 04:52:30.000000000 -0500 +++ at-3.1.10.1ubuntu3/debian/control 2008-07-08 16:22:11.000000000 -0500 @@ -8,7 +8,7 @@ Package: at Architecture: any -Depends: ${shlibs:Depends}, lsb-base (>= 3.0-10) +Depends: ${shlibs:Depends}, lsb-base (>= 3.2-12ubuntu2) Suggests: postfix | mail-transport-agent Description: Delayed job execution and batch processing At and batch read shell commands from standard input diff -Nru at-3.1.10.1ubuntu2/debian/rc at-3.1.10.1ubuntu3/debian/rc --- at-3.1.10.1ubuntu2/debian/rc 2008-05-15 08:45:28.000000000 -0500 +++ at-3.1.10.1ubuntu3/debian/rc 2008-07-08 18:20:35.000000000 -0500 @@ -36,8 +36,11 @@ $0 stop $0 start ;; + status) + status_of_proc $DAEMON atd && exit 0 || exit $? + ;; *) - echo "Usage: /etc/init.d/atd {start|stop|restart|force-reload}" + echo "Usage: /etc/init.d/atd {start|stop|restart|force-reload|status}" exit 1 ;; esac