Move rsync ssl setup into the rsync module
[mirror/dsa-puppet.git] / modules / debian-org / lib / facter / lsb-for-bsd.rb
index 09fd370..c95d7f2 100644 (file)
@@ -7,13 +7,13 @@
     Facter.add(fact) do
         confine :kernel => 'GNU/kFreeBSD'
         setcode do
-            unless defined?(@@lsbdata) and defined?(@@lsbtime) and (Time.now.to_i - @@lsbtime.to_i < 5)
+            unless defined?(lsbdata) and defined?(lsbtime) and (Time.now.to_i - lsbtime.to_i < 5)
                 type = nil
-                @@lsbtime = Time.now
-                @@lsbdata = Facter::Util::Resolution.exec('lsb_release -a 2>/dev/null')
+                lsbtime = Time.now
+                lsbdata = Facter::Util::Resolution.exec('lsb_release -a 2>/dev/null')
             end
 
-            if pattern.match(@@lsbdata)
+            if pattern.match(lsbdata)
                 $1
             else
                 nil