diff --git a/xCAT-server/share/xcat/netboot/rh/dracut_033/xcatroot b/xCAT-server/share/xcat/netboot/rh/dracut_033/xcatroot index 1a9f9789e..69f13b8c0 100755 --- a/xCAT-server/share/xcat/netboot/rh/dracut_033/xcatroot +++ b/xCAT-server/share/xcat/netboot/rh/dracut_033/xcatroot @@ -37,7 +37,7 @@ if [ ! -z "$imgurl" ]; then while [ ! -r "$FILENAME" ]; do [ "$xcatdebugmode" > "0" ] && logger -t xcat -p debug "downloading $imgurl...." echo Getting $imgurl... - if ! wget $imgurl; then + if ! wget -nv $imgurl; then [ "$xcatdebugmode" > "0" ] && logger -t xcat -p debug "downloading $imgurl failed,retrying...." rm -f $FILENAME sleep 27 diff --git a/xCAT-server/share/xcat/netboot/sles/dracut_033/xcatroot b/xCAT-server/share/xcat/netboot/sles/dracut_033/xcatroot index 80b366d9a..ac45f2f6c 100755 --- a/xCAT-server/share/xcat/netboot/sles/dracut_033/xcatroot +++ b/xCAT-server/share/xcat/netboot/sles/dracut_033/xcatroot @@ -36,7 +36,7 @@ if [ ! -z "$imgurl" ]; then while [ ! -r "$FILENAME" ]; do [ "$xcatdebugmode" > "0" ] && logger -t xcat -p debug "downloading $imgurl...." echo Getting $imgurl... - if ! wget $imgurl; then + if ! wget -nv $imgurl; then [ "$xcatdebugmode" > "0" ] && logger -t xcat -p debug "downloading $imgurl failed,retrying...." rm -f $FILENAME sleep 27