diff options
author | Bill Nottingham <notting@redhat.com> | 2012-11-26 15:43:03 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2012-12-07 16:00:45 -0500 |
commit | df3a2308f87e9a35bba975dce4ebb37097ef093c (patch) | |
tree | bcde142a65133ef30a37da72046e48c9a2476d88 | |
parent | 5e7f5b5542660e255ea82d25eda264bd083466c7 (diff) | |
download | initscripts-df3a2308f87e9a35bba975dce4ebb37097ef093c.tar initscripts-df3a2308f87e9a35bba975dce4ebb37097ef093c.tar.gz initscripts-df3a2308f87e9a35bba975dce4ebb37097ef093c.tar.bz2 initscripts-df3a2308f87e9a35bba975dce4ebb37097ef093c.tar.xz initscripts-df3a2308f87e9a35bba975dce4ebb37097ef093c.zip |
Change the net rule that reads ifcfg files to explicitly set the interface name. (#870859)
-rw-r--r-- | udev/rules.d/60-net.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/rules.d/60-net.rules b/udev/rules.d/60-net.rules index 0e0507a1..1e9d940a 100644 --- a/udev/rules.d/60-net.rules +++ b/udev/rules.d/60-net.rules @@ -1 +1 @@ -ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/rename_device", RESULT=="?*", ENV{INTERFACE_NAME}="$result" +ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/rename_device", RESULT=="?*", NAME="$result" |