nice/ionice fix

This commit is contained in:
Kolan Sh 2012-08-17 10:56:21 +04:00
parent 0e8011f70a
commit 3ceacc5c55
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
STAGE=0
NICE_CMD=nice -n 19 ionice -c2 -n7
NICE_CMD="nice -n 19 ionice -c2 -n7"
source /etc/make.conf
[ -f /etc/gentoo-upgrade.conf ] && source /etc/gentoo-upgrade.conf

View File

@ -1,6 +1,6 @@
#!/bin/bash
NICE_CMD=nice -n 19 ionice -c2 -n7
NICE_CMD="nice -n 19 ionice -c2 -n7"
REVISION=`kernel-config list | grep \*$ | cut -d" " -f6 | cut -d- -f2-8`
[ "" == "$REVISION" ] && echo "No appropriate kernel revision found ;-(" && exit -1

View File

@ -1,7 +1,7 @@
#!/bin/bash
SILENT=false
NICE_CMD=nice -n 19 ionice -c2 -n7
NICE_CMD="nice -n 19 ionice -c2 -n7"
# available parameters
eval set -- "`getopt -o hs --long help,silent -- \"$@\"`"