diff options
Diffstat (limited to 'sys-power/cpudyn/files/cpudyn.init')
-rw-r--r-- | sys-power/cpudyn/files/cpudyn.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-power/cpudyn/files/cpudyn.init b/sys-power/cpudyn/files/cpudyn.init index 78f943c648fe..b18dedc037a5 100644 --- a/sys-power/cpudyn/files/cpudyn.init +++ b/sys-power/cpudyn/files/cpudyn.init @@ -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/sys-power/cpudyn/files/cpudyn.init,v 1.1 2005/03/14 22:37:27 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpudyn/files/cpudyn.init,v 1.2 2009/10/16 20:03:50 bangert Exp $ # # Based on the Debian init script written by Celso Gonzalez <celso@bulma.net>, # and on the cpufreqd Gentoo init script written by Robert Gogolok <robertgogolok@web.de>. @@ -64,7 +64,7 @@ start() { if [ -n "$THROTTLING_LOW" ]; then CPUDYN_OPTS="$CPUDYN_OPTS -l $THROTTLING_LOW"; fi if [ -n "$TIMEOUT" ]; then CPUDYN_OPTS="$CPUDYN_OPTS -t $TIMEOUT"; fi if [ -n "$DISKS" ]; then CPUDYN_OPTS="$CPUDYN_OPTS -h $DISKS"; fi - if [ "$NICE" == "yes" ]; then CPUDYN_OPTS="$CPUDYN_OPTS -nice"; fi + if [ "$NICE" = "yes" ]; then CPUDYN_OPTS="$CPUDYN_OPTS -nice"; fi ebegin "Starting cpudynd" if checkconfig; then |