lib/facter/ps.rb in facter-1.5.9 vs lib/facter/ps.rb in facter-1.6.0
- old
+ new
@@ -1,4 +1,16 @@
+# Fact: ps
+#
+# Purpose: Internal fact for what to use to list all processes. Used by
+# Service{} type in Puppet.
+#
+# Resolution:
+# Assumes "ps -ef" for all operating systems other than BSD derivatives, where
+# it uses "ps auxwww"
+#
+# Caveats:
+#
+
Facter.add(:ps) do
setcode do 'ps -ef' end
end
Facter.add(:ps) do