[Pkg-sysvinit-commits] r1851 - in sysvinit/trunk/debian: . src/initscripts/etc/init.d
Petter Reinholdtsen
pere at alioth.debian.org
Mon Mar 22 19:04:15 UTC 2010
Author: pere
Date: 2010-03-22 19:04:09 +0000 (Mon, 22 Mar 2010)
New Revision: 1851
Modified:
sysvinit/trunk/debian/changelog
sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd
sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd-single
Log:
Implement status reporting in init.d/stop-bootlogd and
init.d/stop-bootlogd-single.
Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog 2010-03-21 21:57:22 UTC (rev 1850)
+++ sysvinit/trunk/debian/changelog 2010-03-22 19:04:09 UTC (rev 1851)
@@ -19,6 +19,8 @@
mounted before /, and avoid umounting file systems listed before /
in /proc/mounts to avoid hangs during shutdown. Patch from Colin
Watson and Ubuntu.
+ * Implement status reporting in init.d/stop-bootlogd and
+ init.d/stop-bootlogd-single.
[ Kel Modderman ]
* Exit with value rather than echo the value for the status action in
Modified: sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd
===================================================================
--- sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd 2010-03-21 21:57:22 UTC (rev 1850)
+++ sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd 2010-03-22 19:04:09 UTC (rev 1851)
@@ -21,6 +21,9 @@
stop|restart|force-reload)
# No-op
;;
+ status)
+ exec /etc/init.d/bootlogd status
+ ;;
*)
echo "Usage: $NAME {start|stop|restart|force-reload}" >&2
exit 3
Modified: sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd-single
===================================================================
--- sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd-single 2010-03-21 21:57:22 UTC (rev 1850)
+++ sysvinit/trunk/debian/src/initscripts/etc/init.d/stop-bootlogd-single 2010-03-22 19:04:09 UTC (rev 1851)
@@ -39,6 +39,9 @@
stop|restart|force-reload)
# No-op
;;
+ status)
+ exec /etc/init.d/bootlogd status
+ ;;
*)
echo "Usage: $NAME {start|stop|restart|force-reload}" >&2
exit 3
More information about the Pkg-sysvinit-commits
mailing list