diff --git a/release/tools/ec2.conf b/release/tools/ec2.conf index 4331edc7e00c..e688b6a3d9ff 100644 --- a/release/tools/ec2.conf +++ b/release/tools/ec2.conf @@ -90,5 +90,7 @@ vm_extra_pre_umount() { # * firstboot_pkgs (install packages) touch ${DESTDIR}/firstboot + rm -f ${DESTDIR}/etc/resolv.conf + return 0 } diff --git a/release/tools/gce.conf b/release/tools/gce.conf index 0d7dc841a6b9..7c6f77e45d94 100644 --- a/release/tools/gce.conf +++ b/release/tools/gce.conf @@ -92,5 +92,7 @@ EOF touch ${DESTDIR}/firstboot + rm -f ${DESTDIR}/etc/resolv.conf + return 0 } diff --git a/release/tools/vagrant-virtualbox.conf b/release/tools/vagrant-virtualbox.conf index 772068befd30..c29d5716bac2 100644 --- a/release/tools/vagrant-virtualbox.conf +++ b/release/tools/vagrant-virtualbox.conf @@ -15,4 +15,5 @@ vm_extra_pre_umount () { # Setup the Vagrant common items vagrant_common + rm -f ${DESTDIR}/etc/resolv.conf } diff --git a/release/tools/vagrant-vmware.conf b/release/tools/vagrant-vmware.conf index 330892bc7b85..4e0f02c0e76c 100644 --- a/release/tools/vagrant-vmware.conf +++ b/release/tools/vagrant-vmware.conf @@ -19,4 +19,5 @@ vm_extra_pre_umount () { # Setup the Vagrant common items vagrant_common + rm -f ${DESTDIR}/etc/resolv.conf }