From: Lars Wirzenius Date: Sun, 14 Jul 2013 16:04:06 +0000 (+0100) Subject: Fix eth0 to come up automatically X-Git-Url: https://git.siccegge.de//index.cgi?p=forks%2Fvmdebootstrap.git;a=commitdiff_plain;h=dbd91a3dcb756fc4ea4ba929bd026c8a06d1b24d Fix eth0 to come up automatically Thank you, Antonio Terceiro. --- diff --git a/vmdebootstrap b/vmdebootstrap index 7327414..a7a67e1 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -310,7 +310,7 @@ class VmDebootstrap(cliapp.Application): if self.settings['enable-dhcp']: f.write('\n') - f.write('allow-hotplug eth0\n') + f.write('auto eth0\n') f.write('iface eth0 inet dhcp\n') f.close()