diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-05 21:23:53 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-05 21:23:53 +0000 |
commit | ca71142e0d6254dc8d26482d1fc0fcf1ae81861e (patch) | |
tree | 52302b128ba4fb93f43d6d206b417cb4c72dd912 /net-p2p | |
parent | Stable on sparc (diff) | |
download | historical-ca71142e0d6254dc8d26482d1fc0fcf1ae81861e.tar.gz historical-ca71142e0d6254dc8d26482d1fc0fcf1ae81861e.tar.bz2 historical-ca71142e0d6254dc8d26482d1fc0fcf1ae81861e.zip |
fix init script
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/gift/files/gift.initd | 4 | ||||
-rw-r--r-- | net-p2p/mldonkey/files/mldonkey.initd | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net-p2p/gift/files/gift.initd b/net-p2p/gift/files/gift.initd index bc6f69dac883..8607c59c5559 100644 --- a/net-p2p/gift/files/gift.initd +++ b/net-p2p/gift/files/gift.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift/files/gift.initd,v 1.4 2004/08/04 21:01:28 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift/files/gift.initd,v 1.5 2004/08/05 21:23:53 squinky86 Exp $ depend() { need net @@ -14,7 +14,7 @@ start() { --local-dir=${SHAREDIR} &>${LOG} & for i in `pgrep -u ${USER} giftd` do - renice -p $i ${NICE} + renice ${NICE} -p $i > /dev/null done eend $? } diff --git a/net-p2p/mldonkey/files/mldonkey.initd b/net-p2p/mldonkey/files/mldonkey.initd index c844792b2897..696d5f0cbe02 100644 --- a/net-p2p/mldonkey/files/mldonkey.initd +++ b/net-p2p/mldonkey/files/mldonkey.initd @@ -39,7 +39,7 @@ start() { fi for i in `pgrep -u ${USER} mlnet` do - renice -p $i ${NICE} + renice ${NICE} -p $i > /dev/null done eend $? } |