2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-18 20:30:56 +00:00

grep in busybox do not support long optipn string, use short instead

This commit is contained in:
immarvin
2013-12-19 19:11:31 -08:00
parent 1e3062d8e4
commit 8b38c35e63

View File

@ -576,7 +576,7 @@ ResolveLinks
#cp -r -a ${DEFAULT}/* /.snapshot/tmpfs/
# foo
# If the resolv.conf is not setup in rootimg, copy the dhcp generated one into rootimg
if grep --quiet --no-messages "Dummy resolv.conf" "$MNTDIR/etc/resolv.conf"; then
if grep -q -s "Dummy resolv.conf" "$MNTDIR/etc/resolv.conf"; then
/bin/cat /etc/resolv.conf > $MNTDIR/etc/resolv.conf
fi