From 3eb9410f8f3f03730748ca0d8fa2c33b69e8a413 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 18 Mar 2011 08:40:48 -0400 Subject: arp: Cleanup indendation --- lib/facter/arp.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'lib') diff --git a/lib/facter/arp.rb b/lib/facter/arp.rb index f4b7709..65cf4c3 100644 --- a/lib/facter/arp.rb +++ b/lib/facter/arp.rb @@ -1,22 +1,22 @@ require 'facter/util/ip' Facter.add(:arp) do - confine :kernel => :linux - setcode do - arp = [] - output = %x{/usr/sbin/arp -a} - output.each_line do |s| - arp.push($1) if s =~ /^\S+\s\S+\s\S+\s(\S+)\s\S+\s\S+\s\S+$/ - end - arp[0] - end + confine :kernel => :linux + setcode do + arp = [] + output = %x{/usr/sbin/arp -a} + output.each_line do |s| + arp.push($1) if s =~ /^\S+\s\S+\s\S+\s(\S+)\s\S+\s\S+\s\S+$/ + end + arp[0] + end end Facter::Util::IP.get_interfaces.each do |interface| - Facter.add("arp_" + Facter::Util::IP.alphafy(interface)) do + Facter.add("arp_" + Facter::Util::IP.alphafy(interface)) do confine :kernel => :linux - setcode do - Facter::Util::IP.get_arp_value(interface) - end + setcode do + Facter::Util::IP.get_arp_value(interface) end + end end -- cgit