forked from chef-boneyard/ohai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
22 lines (19 loc) · 768 Bytes
/
metadata.rb
File metadata and controls
22 lines (19 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
maintainer "Opscode, Inc"
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Distributes a directory of custom ohai plugins"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.0.2"
recipe "ohai::default", "Distributes a directory of custom ohai plugins"
attribute "ohai/plugin_path",
:display_name => "Ohai Plugin Path",
:description => "Distribute plugins to this path.",
:type => "string",
:required => "optional",
:default => "/etc/chef/ohai_plugins"
attribute "ohai/plugins",
:display_name => "Ohai Plugin Sources",
:description => "Read plugins from these cookbooks and paths",
:type => "hash",
:required => "optional",
:default => {'ohai' => 'plugins'}