diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-06-18 09:33:31 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-06-18 09:33:31 +1000 |
commit | def18b5352c8d3365531e9bdb030e240c9178925 (patch) | |
tree | d6fb8bc57c38b1918744a4025a3e6bf76d7eeaab | |
parent | df14e51b900b332f7861d48377d5c411b7100abb (diff) | |
download | facter-def18b5352c8d3365531e9bdb030e240c9178925.tar.gz facter-def18b5352c8d3365531e9bdb030e240c9178925.tar.xz facter-def18b5352c8d3365531e9bdb030e240c9178925.zip |
Fixes #1357 - change ps syntax for OSX and BSD
-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 |