summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG2
-rw-r--r--lib/facter/ps.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 070bee6..7cb6bff 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
?:
+ Fixes #1357 - change ps syntax for OSX and BSD
+
Set the timeout on the AIX kernelrelease fact to 5 seconds.
Refactored so each fact resolution can specify a separate timeout,
diff --git a/lib/facter/ps.rb b/lib/facter/ps.rb
index 23f238d..e7bcdae 100644
--- a/lib/facter/ps.rb
+++ b/lib/facter/ps.rb
@@ -4,5 +4,5 @@ end
Facter.add(:ps) do
confine :operatingsystem => %w{FreeBSD NetBSD OpenBSD Darwin}
- setcode do 'ps -auxwww' end
+ setcode do 'ps auxwww' end
end