07c22185bd
Updates additional elements in diskimage-builder to use the declarative package install support provided by the package-installs element. package-installs does not yet support the pkg-map functionality, so elements using pkg-map are not migrated. That support will come in the near future. Change-Id: I3d36adad317ba44326eabd95243d45807e2a8a16
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# 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
|