0a797c86de
Moves the code that removes default cloud interfaces into the dhcp-all-interfaces element. Having it live in stable-interface-names won't work right now because we need this for virtualized testing. Change-Id: I3166951c6fbb2faec53ffc339edd2fd0c3512300
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# remove softlink to /dev/null which disables these rules
|
|
NET_NAME_SLOT_FILE="/etc/udev/rules.d/80-net-name-slot.rules"
|
|
if [ -h $NET_NAME_SLOT_FILE ]; then
|
|
rm $NET_NAME_SLOT_FILE
|
|
fi
|
|
|
|
install-packages biosdevname
|