Files
ironic/nova/virt/baremetal/net-dhcp.ubuntu.template
Robert Collins 5b04310d99 Remove obsolete baremetal override of MAC addresses.
Now that the hypervisor driver can specify what MAC addresses it
needs, overriding the MAC address during bare metal instance
provisioning is no longer appropriate.

Change-Id: I2b0790753297104ddd40a410c8acb5fdac97ad15
2013-01-16 13:20:47 +13:00

19 lines
375 B
Plaintext

# Injected by Nova on instance boot
#
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
#for $ifc in $interfaces
auto ${ifc.name}
iface ${ifc.name} inet dhcp
#if $use_ipv6
iface ${ifc.name} inet6 dhcp
#end if
#end for