Merge pull request #11103 from sysadmin75/11046_media_type_setup

fix fact gathering on OS X
pull/11076/merge
Brian Coca 9 years ago
commit 5aa1a42848

@ -2163,7 +2163,7 @@ class DarwinNetwork(GenericBsdIfconfigNetwork, Network):
current_if['media'] = 'Unknown' # Mac does not give us this
current_if['media_select'] = words[1]
if len(words) > 2:
current_if['media_type'] = words[2][1:]
current_if['media_type'] = words[2][1:-1]
if len(words) > 3:
current_if['media_options'] = self.get_options(words[3])

Loading…
Cancel
Save