Package: initscripts Version: 2.86.ds1-1+kbsd.1 Severity: minor Tags: patch
Hi! On GNU/kFreeBSD (and maybe others), the kernel prints more stuff to console after reboot command is issued. As a result, the "Rebooting..." message which was echoed without line-break, is concatenated with more lines of kernel output. The attached patch beautifies output of "Rebooting..." message by adding a line-break. -- System Information: Debian Release: testing/unstable Architecture: kfreebsd-i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: GNU/kFreeBSD 5.3-1 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C) Versions of packages initscripts depends on: ii coreutils 5.2.1-2+kbsd The GNU core utilities ii dpkg 1.13.10+kbsd Package maintenance system for Deb ii e2fsprogs 1.38-1 ext2 file system utilities and lib ii libc0.1 2.3-1+kbsd.10 GNU C Library: Shared libraries an ii util-linux 2.12-7+kbsd.1 Miscellaneous system utilities initscripts recommends no packages. -- no debconf information
diff -ur sysvinit-2.86.ds1.old/debian/initscripts/etc/init.d/reboot sysvinit-2.86.ds1/debian/initscripts/etc/init.d/reboot --- sysvinit-2.86.ds1.old/debian/initscripts/etc/init.d/reboot 2005-08-18 11:50:16.000000000 +0200 +++ sysvinit-2.86.ds1/debian/initscripts/etc/init.d/reboot 2005-08-18 11:52:14.000000000 +0200 @@ -7,5 +7,5 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin -echo -n "Rebooting... " +echo "Rebooting..." reboot -d -f -i