summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-07-14 17:04:06 +0100
committerLars Wirzenius <liw@liw.fi>2013-07-14 17:04:06 +0100
commitdbd91a3dcb756fc4ea4ba929bd026c8a06d1b24d (patch)
treeace956d8ff6fb62a631e1387edc4f606d6ab94e9
parent83d5fb709c6f75557a0fc3511042205d2a722357 (diff)
downloadvmdebootstrap-dbd91a3dcb756fc4ea4ba929bd026c8a06d1b24d.tar.gz
Fix eth0 to come up automatically
Thank you, Antonio Terceiro.
-rwxr-xr-xvmdebootstrap2
1 files changed, 1 insertions, 1 deletions
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()