diff options
author | Mark Guertin <gerk@gentoo.org> | 2002-07-20 00:06:16 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2002-07-20 00:06:16 +0000 |
commit | 96b9aea510c8990675bd7e3e9cdb0c0bb5d8f13d (patch) | |
tree | f1e103c6fe8d02de7ed2e88f724fa5e6c7065457 /sys-apps/pmud | |
parent | fixo (diff) | |
download | historical-96b9aea510c8990675bd7e3e9cdb0c0bb5d8f13d.tar.gz historical-96b9aea510c8990675bd7e3e9cdb0c0bb5d8f13d.tar.bz2 historical-96b9aea510c8990675bd7e3e9cdb0c0bb5d8f13d.zip |
adjusted pmud.start to surpress output at startup
Diffstat (limited to 'sys-apps/pmud')
-rw-r--r-- | sys-apps/pmud/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/pmud/files/pmud.start | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-apps/pmud/ChangeLog b/sys-apps/pmud/ChangeLog index abd074afc8ed..80a11a38643b 100644 --- a/sys-apps/pmud/ChangeLog +++ b/sys-apps/pmud/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for sys-apps/pmud # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Id: ChangeLog,v 1.5 2002/07/17 14:50:44 gerk Exp $ +# $Id: ChangeLog,v 1.6 2002/07/20 00:06:16 gerk Exp $ *pmud-0.10.1-r2.ebuild (14 July 2002) + 19 Jul 2002; Mark Guertin <gerk@gentoo.org> files/pmud.start + Added >/dev/null 2>&1 to surpress extra output of pmud at system startup + fixing bug #5218 + 17 Jul 2002; Mark Guertin <gerk@gentoo.org> : Fixed keywords (please be sure you know what programs are before you set keywords, this will _not_ run on x86). Fixed typo in makefile-x.diff diff --git a/sys-apps/pmud/files/pmud.start b/sys-apps/pmud/files/pmud.start index 12d2b5c922c5..338ab754a1e2 100644 --- a/sys-apps/pmud/files/pmud.start +++ b/sys-apps/pmud/files/pmud.start @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pmud/files/pmud.start,v 1.2 2002/04/27 23:34:20 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pmud/files/pmud.start,v 1.3 2002/07/20 00:06:16 gerk Exp $ depend() { need bootmisc @@ -12,7 +12,7 @@ depend() { start() { ebegin "Starting PMUD" - start-stop-daemon --start --quiet --exec /sbin/pmud -- $PMUD_FLAGS + start-stop-daemon --start --quiet --exec /sbin/pmud -- $PMUD_FLAGS >/dev/null 2>&1 eend $? } |