Skip to content

Commit

Permalink
added the single missed $idata.get() item
Browse files Browse the repository at this point in the history
  • Loading branch information
lanky committed Mar 29, 2011
1 parent 9b7b823 commit 462faa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snippets/post_install_network_config
Expand Up @@ -25,7 +25,7 @@

## do not configure by mac address if we don't have one AND it's not for bonding/vlans
## as opposed to a "real" physical interface
#if $idata.get("mac_address", "") == "" and not $vlanpattern.match($iname) and not $idata["bonding"].lower() == "master":
#if $idata.get("mac_address", "") == "" and not $vlanpattern.match($iname) and not $idata.get("bonding", "").lower() == "master":
## we have to globally turn off the config by mac feature as we can't
## use it now
#set $configbymac = False
Expand Down

0 comments on commit 462faa7

Please sign in to comment.