diff options
author | Marius Mauch <genone@gentoo.org> | 2008-07-31 04:51:33 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2008-07-31 04:51:33 +0000 |
commit | c75779b2a5f0674681a7cbb42c364ba010572a4c (patch) | |
tree | 4da9bfab6049e58d42c11c8268e205c09f297a16 | |
parent | f1d0edfcfa19ad7b14201be299fe2fe33d737eb0 (diff) | |
download | portage-c75779b2a5f0674681a7cbb42c364ba010572a4c.tar.gz portage-c75779b2a5f0674681a7cbb42c364ba010572a4c.tar.bz2 portage-c75779b2a5f0674681a7cbb42c364ba010572a4c.zip |
disable default IONICE command as it breaks for non-root, and ionice might not always be available
svn path=/main/trunk/; revision=11291
-rw-r--r-- | cnf/make.globals | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cnf/make.globals b/cnf/make.globals index f63fae280..005961628 100644 --- a/cnf/make.globals +++ b/cnf/make.globals @@ -63,7 +63,8 @@ PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5" PORTAGE_FETCH_RESUME_MIN_SIZE="350K" # Command called to adjust the io priority of portage and it's subprocesses. -PORTAGE_IONICE_COMMAND="ionice -c 3 -p \${PID}" +# Note: should be wrapped inside a uid check +#PORTAGE_IONICE_COMMAND="ionice -c 3 -p \${PID}" # Number of times 'emerge --sync' will run before giving up. PORTAGE_RSYNC_RETRIES="3" |