summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Lewis <craig.lewis@pgi.com>2015-09-03 17:36:42 -0700
committerCraig Lewis <craig.lewis@pgi.com>2015-09-03 17:36:42 -0700
commit80a4726f0a0123b6fb56f60046e3bc00797f30e3 (patch)
tree3ebdea2787ad10bc8ea4faffe8cf76de0d3f2a5a
parent5301f4825c4d8be036fc73712bb8eb456b9c6c3c (diff)
downloadohai-80a4726f0a0123b6fb56f60046e3bc00797f30e3.tar.gz
Tell ps to stop constraining the width of it's output
-rw-r--r--lib/ohai/plugins/ps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ohai/plugins/ps.rb b/lib/ohai/plugins/ps.rb
index ac0ee07d..584ad589 100644
--- a/lib/ohai/plugins/ps.rb
+++ b/lib/ohai/plugins/ps.rb
@@ -29,6 +29,6 @@ Ohai.plugin(:PS) do
collect_data(:freebsd, :netbsd, :openbsd) do
# ps -e requires procfs
- command[:ps] = 'ps -ax'
+ command[:ps] = 'ps -axww'
end
end