Browse Source

ifcfg/write-ifcfg.sh: do not bind s390 to MAC if SUBCHANNELS set

If SUBCHANNELS are set, do not specify HWADDR, because the SUBCHANNELS
are the identifier for the interface.

https://bugzilla.redhat.com/show_bug.cgi?id=1056438
master
Harald Hoyer 11 years ago
parent
commit
79b3c8bfa1
  1. 13
      modules.d/45ifcfg/write-ifcfg.sh

13
modules.d/45ifcfg/write-ifcfg.sh

@ -55,9 +55,9 @@ print_s390() {


SUBCHANNELS=${SUBCHANNELS%,} SUBCHANNELS=${SUBCHANNELS%,}
echo "SUBCHANNELS=\"${SUBCHANNELS}\"" echo "SUBCHANNELS=\"${SUBCHANNELS}\""
CONFIG_LINE=$(get_config_line_by_subchannel $SUBCHANNELS)


[ $? -ne 0 -o -z "$CONFIG_LINE" ] && return CONFIG_LINE=$(get_config_line_by_subchannel $SUBCHANNELS)
[ $? -ne 0 -o -z "$CONFIG_LINE" ] && return 0


OLD_IFS=$IFS OLD_IFS=$IFS
IFS="," IFS=","
@ -77,6 +77,7 @@ print_s390() {
OPTIONS=${OPTIONS## } OPTIONS=${OPTIONS## }
echo "NETTYPE=\"${NETTYPE}\"" echo "NETTYPE=\"${NETTYPE}\""
echo "OPTIONS=\"${OPTIONS}\"" echo "OPTIONS=\"${OPTIONS}\""
return 0
} }


for netup in /tmp/net.*.did-setup ; do for netup in /tmp/net.*.did-setup ; do
@ -159,12 +160,10 @@ for netup in /tmp/net.*.did-setup ; do
if [ -z "$bridge" ] && [ -z "$bond" ] && [ -z "$vlan" ]; then if [ -z "$bridge" ] && [ -z "$bond" ] && [ -z "$vlan" ]; then
# standard interface # standard interface
{ {
if [ -n "$macaddr" ]; then [ -n "$macaddr" ] && echo "MACADDR=\"$macaddr\""
echo "MACADDR=\"$macaddr\"" if ! print_s390 $netif; then
else [ -n "$macaddr" ] || echo "HWADDR=\"$(cat /sys/class/net/$netif/address)\""
echo "HWADDR=\"$(cat /sys/class/net/$netif/address)\""
fi fi
print_s390 $netif
echo "TYPE=Ethernet" echo "TYPE=Ethernet"
echo "NAME=\"$netif\"" echo "NAME=\"$netif\""
[ -n "$mtu" ] && echo "MTU=\"$mtu\"" [ -n "$mtu" ] && echo "MTU=\"$mtu\""

Loading…
Cancel
Save