diff --git a/sbin/gentoo-upgrade.sh b/sbin/gentoo-upgrade.sh index 81ffeba..df48219 100755 --- a/sbin/gentoo-upgrade.sh +++ b/sbin/gentoo-upgrade.sh @@ -1,7 +1,7 @@ #!/bin/bash STAGE=0 -NICE_CMD="nice -n 19 ionice -c2 -n7" +NICE_CMD="nice -n 19 ionice -c2" source /etc/make.conf [ -f /etc/gentoo-upgrade.conf ] && source /etc/gentoo-upgrade.conf diff --git a/sbin/kernel-clean.sh b/sbin/kernel-clean.sh index 7122ff3..c12d64f 100755 --- a/sbin/kernel-clean.sh +++ b/sbin/kernel-clean.sh @@ -1,6 +1,6 @@ #!/bin/bash -NICE_CMD="nice -n 19 ionice -c2 -n7" +NICE_CMD="nice -n 19 ionice -c2" REVISION=`kernel-config list | grep \*$ | cut -d" " -f6 | cut -d- -f2-8` [ "" == "$REVISION" ] && echo "No appropriate kernel revision found ;-(" && exit -1 diff --git a/sbin/kernel-rebuild.sh b/sbin/kernel-rebuild.sh index ca7b44f..467aa69 100755 --- a/sbin/kernel-rebuild.sh +++ b/sbin/kernel-rebuild.sh @@ -1,7 +1,7 @@ #!/bin/bash SILENT=false -NICE_CMD="nice -n 19 ionice -c2 -n7" +NICE_CMD="nice -n 19 ionice -c2" # available parameters eval set -- "`getopt -o hs --long help,silent -- \"$@\"`"