From 32d786e786e2caf2ba9704bf55562e65b1a4e70c Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 5 Jun 2024 10:35:44 +0800 Subject: tools: correct resolv.conf filename for nameserver configuration Signed-off-by: Richard Smith --- tools/create-gce-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/create-gce-image.sh') diff --git a/tools/create-gce-image.sh b/tools/create-gce-image.sh index 2e16ced84..39d01c2e3 100755 --- a/tools/create-gce-image.sh +++ b/tools/create-gce-image.sh @@ -139,7 +139,7 @@ if [ "$SYZ_SYSCTL_FILE" != "" ]; then fi echo -en "127.0.0.1\tlocalhost\n" | sudo tee disk.mnt/etc/hosts -echo "nameserver 8.8.8.8" | sudo tee -a disk.mnt/etc/resolve.conf +echo "nameserver 8.8.8.8" | sudo tee -a disk.mnt/etc/resolv.conf echo "syzkaller" | sudo tee disk.mnt/etc/hostname sudo mkdir -p disk.mnt/boot/grub -- cgit mrf-deployment