diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lib/facter/ps.rb | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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 |