diff options
author | Britney Fransen <brfransen@gmail.com> | 2016-02-12 20:23:56 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2016-02-12 20:23:56 (GMT) |
commit | 999bede4dbfbb5ccfe83f1939f8f5cabe1d8f954 (patch) | |
tree | f4cc4baee3e0ff9b313ce385e9307d6edfef0824 /build_tools/archiso-19 | |
parent | 584630052112824b7dd476f2fac1f468d7b94b13 (diff) | |
download | linhes_dev-999bede4dbfbb5ccfe83f1939f8f5cabe1d8f954.zip |
customize_airrootfs.sh: update for systemd network naming
Diffstat (limited to 'build_tools/archiso-19')
-rwxr-xr-x | build_tools/archiso-19/mythvantage/airootfs/root/customize_airootfs.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build_tools/archiso-19/mythvantage/airootfs/root/customize_airootfs.sh b/build_tools/archiso-19/mythvantage/airootfs/root/customize_airootfs.sh index 0845424..eb288a4 100755 --- a/build_tools/archiso-19/mythvantage/airootfs/root/customize_airootfs.sh +++ b/build_tools/archiso-19/mythvantage/airootfs/root/customize_airootfs.sh @@ -24,8 +24,12 @@ if [ -e /etc/udev/rules.d/80-net-name-slot.rules ] then rm -f /etc/udev/rules.d/80-net-name-slot.rules fi +if [ -e /etc/udev/rules.d/80-net-setup-link.rules ] +then + rm -f /etc/udev/rules.d/80-net-setup-link.rules +fi -ln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules +ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules #remove tmp mount as tmpfs systemctl mask tmp.mount |