diff options
| author | James Turnbull <james@lovedthanlost.net> | 2009-04-21 07:25:10 +1000 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2009-04-21 07:25:10 +1000 |
| commit | 7fa257689b08d5c6c8e22da9da49f0679aa9b1d9 (patch) | |
| tree | 779b9ad9c5adf99a6f2d9cc75c2c75914c7b653c /lib | |
| parent | 7a819454febdf34f4384e1bc64c5b2599df4bd38 (diff) | |
| download | facter-7fa257689b08d5c6c8e22da9da49f0679aa9b1d9.tar.gz facter-7fa257689b08d5c6c8e22da9da49f0679aa9b1d9.tar.xz facter-7fa257689b08d5c6c8e22da9da49f0679aa9b1d9.zip | |
Fixed #2132 - support for named interface aliases under linux
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/facter/util/ip.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/facter/util/ip.rb b/lib/facter/util/ip.rb index 55b5e92..e06e506 100644 --- a/lib/facter/util/ip.rb +++ b/lib/facter/util/ip.rb @@ -52,7 +52,7 @@ module Facter::Util::IP # We get lots of warnings on platforms that don't get an output # made. if output - int = output.scan(/^\w+[.:]?\d+[.:]?\d*/) + int = output.scan(/^\w+[.:]?\d+[.:]?\d*[.:]?\w*/) else [] end |
