summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authordavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-08-07 11:43:21 +0000
committerdavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-08-07 11:43:21 +0000
commit0e61c02b2b7a460f26867f91051660fe6124517d (patch)
treeb9524385cbca06c985467012588b1e2c7eb7f546 /files
parent51e43cf0233e87ca2e473a85397795cbcd1b1052 (diff)
commit second half of wrong commit of r176
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@177 f03ff2f1-f02d-0410-970d-b9634babeaa1
Diffstat (limited to 'files')
-rwxr-xr-xfiles/facter/interfaces.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/files/facter/interfaces.rb b/files/facter/interfaces.rb
new file mode 100755
index 0000000..dc9e37c
--- /dev/null
+++ b/files/facter/interfaces.rb
@@ -0,0 +1,13 @@
+# return the set of active interfaces as an array
+Facter.add("interfaces") do
+ setcode do
+ `ip -o link show`.split(/\n/).collect do |line|
+ value = nil
+ matches = line.match(/^\d*: ([^:]*): <(.*,)?UP(,.*)?>/)
+ if !matches.nil?
+ value = matches[1]
+ end
+ value
+ end.compact.join(" ")
+ end
+end