Skip to content

Instantly share code, notes, and snippets.

@scarolan
Created September 10, 2014 17:46
Show Gist options
  • Save scarolan/5bb84ffab9d9fe6d619c to your computer and use it in GitHub Desktop.
Save scarolan/5bb84ffab9d9fe6d619c to your computer and use it in GitHub Desktop.
modules.rb
Ohai.plugin(:Apache) do
require 'mixlib/shellout'
provides "apache/modules"
collect_data(:default) do
modules = Mixlib::ShellOut.new("apachectl -t -D DUMP_MODULES")
modules.run_command
apache Mash.new
apache[:modules] = modules.stdout
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment