diff options
author | Claire McQuin <mcquin@users.noreply.github.com> | 2015-10-09 11:36:44 -0700 |
---|---|---|
committer | Claire McQuin <mcquin@users.noreply.github.com> | 2015-10-09 11:36:44 -0700 |
commit | 32e378236ccf98398d65aa6fe0cc4c88c1c2f979 (patch) | |
tree | 6004d82d74f032ec7124916838aa8d3c0b9e96cc | |
parent | a39d63cb1a6c1031abd1bcb3a8e9a30127a89b10 (diff) | |
parent | 80a4726f0a0123b6fb56f60046e3bc00797f30e3 (diff) | |
download | ohai-32e378236ccf98398d65aa6fe0cc4c88c1c2f979.tar.gz |
Merge pull request #616 from clewis/OHAI-615
Tell ps to stop constraining the width of it's output
-rw-r--r-- | lib/ohai/plugins/ps.rb | 2 |
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 |