Skip to content

Instantly share code, notes, and snippets.

@vinyar
Created September 12, 2014 19:35
Show Gist options
  • Save vinyar/c6b70270102d8d914891 to your computer and use it in GitHub Desktop.
Save vinyar/c6b70270102d8d914891 to your computer and use it in GitHub Desktop.
Rebuilding ohai slide
Ohai.plugin(:ApacheModules) do
require 'mixlib/shellout'
provides "apache/modules"
collect_data(:default) do
string = Mixlib::ShellOut.new("apachectl -t -D DUMP_MODULES")
string.run_command
apache Mash.new
apache[:modules] = string.stdout
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment