Move plugins around
authorStephen Gran <steve@lobefin.net>
Sat, 28 Feb 2009 19:12:23 +0000 (19:12 +0000)
committerStephen Gran <steve@lobefin.net>
Sat, 28 Feb 2009 19:12:23 +0000 (19:12 +0000)
Signed-off-by: Stephen Gran <steve@lobefin.net>
modules/debian-org/plugins/facter/raidcontroller.rb [deleted file]
plugins/facter/raidcontroller.rb [new file with mode: 0644]

diff --git a/modules/debian-org/plugins/facter/raidcontroller.rb b/modules/debian-org/plugins/facter/raidcontroller.rb
deleted file mode 100644 (file)
index 5ec322a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-Facter.add("raidcontroller") do
-        confine :kernel => :linux
-        ENV["PATH"]="/bin:/sbin:/usr/bin:/usr/sbin"
-        setcode do
-                controllers = []
-                lspciexists = system "/bin/bash -c 'which lspci >&/dev//null'"
-                if $?.exitstatus == 0
-                        output = %x{lspci}
-                        output.each { |s|
-                                controllers.push($1) if s =~ /RAID bus controller: (.*)/
-                        }
-                end
-                controllers
-        end
-end
diff --git a/plugins/facter/raidcontroller.rb b/plugins/facter/raidcontroller.rb
new file mode 100644 (file)
index 0000000..5ec322a
--- /dev/null
@@ -0,0 +1,15 @@
+Facter.add("raidcontroller") do
+        confine :kernel => :linux
+        ENV["PATH"]="/bin:/sbin:/usr/bin:/usr/sbin"
+        setcode do
+                controllers = []
+                lspciexists = system "/bin/bash -c 'which lspci >&/dev//null'"
+                if $?.exitstatus == 0
+                        output = %x{lspci}
+                        output.each { |s|
+                                controllers.push($1) if s =~ /RAID bus controller: (.*)/
+                        }
+                end
+                controllers
+        end
+end