diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-02-27 20:17:19 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-27 20:20:30 -0500 |
commit | e04c5112a8c784a0d831df3ca9aa7635c39a1693 (patch) | |
tree | b4e49754ccbca354c5ccc75bf08cc2b59ae7f123 /scripts/upd-instroot | |
parent | 460e83b8369b4a510d8859a3b928606a1e3c76bb (diff) | |
download | anaconda-e04c5112a8c784a0d831df3ca9aa7635c39a1693.tar.gz anaconda-e04c5112a8c784a0d831df3ca9aa7635c39a1693.tar.xz anaconda-e04c5112a8c784a0d831df3ca9aa7635c39a1693.zip |
Fix backwards logic for yum verbosity
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index e5a8d58ea..71a76b8dd 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -91,7 +91,7 @@ expandPackageSet() { KEEPFILES=$5 [ -d $PKGDEST ] || die "ERROR: directory missing: $PKGDEST" - if [ -n "$DEBUG" ]; then outlvl="--quiet" ; else outlvl="--verbose"; fi + if [ -z "$DEBUG" ]; then outlvl="--quiet" ; else outlvl="--verbose"; fi yum $outlvl -c $YUMCONF -y --installroot=$YUMDIR install $RPMS 2>&1 || die "ERROR: could not install packages" # figure out the theme to keep |