diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-02 05:33:19 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-02 05:33:19 +0000 |
commit | 7541c4eb46b0b904d187a0156e0060c9db01b4a3 (patch) | |
tree | 4ca78684645de5e877dc2bec20ac74885b65c99c /scripts/upd-instroot | |
parent | fa67a9461bc50127e6abcdfc0b3fcc4b61335394 (diff) | |
download | anaconda-7541c4eb46b0b904d187a0156e0060c9db01b4a3.tar.gz anaconda-7541c4eb46b0b904d187a0156e0060c9db01b4a3.tar.xz anaconda-7541c4eb46b0b904d187a0156e0060c9db01b4a3.zip |
redirect runroot output to /dev/null
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 65f10faea..0022d606a 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -469,7 +469,7 @@ for p in $DEST $DESTGR; do if [ -x /usr/bin/runroot ]; then REALPATH=`(cd $p; /bin/pwd)` - runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" + runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" > /dev/null else $p/usr/lib/anaconda-runtime/scrubtree $p fi |