[Pkg-puppet-devel] [SCM] Packaging of Facter for debian branch, experimental, updated. debian/1.5.8-2-160-gb26a2a8

Todd Zullinger tmz at pobox.com
Tue May 10 08:39:55 UTC 2011


The following commit has been merged in the experimental branch:
commit 3eb9410f8f3f03730748ca0d8fa2c33b69e8a413
Author: Todd Zullinger <tmz at pobox.com>
Date:   Fri Mar 18 08:40:48 2011 -0400

    arp: Cleanup indendation

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

-- 
Packaging of Facter for debian



More information about the Pkg-puppet-devel mailing list