Comment 5 for bug 1621393

Revision history for this message
GGeorg (georg-ubuntu-com) wrote :

Hi,

in the meanwhile you can use this Workaround in Vagrantfile (multimachine example):

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
     servers.each do |machine|
          config.vm.define machine["hostname"] do |node|
               node.vm.provision "shell", inline: "ln -nsf ../run/resolvconf/resolv.conf /etc/resolv.conf", privileged: true, name: "FIX RESOLV.CONF"
          end
     end
end