]> git.openstreetmap.org Git - chef.git/blob - cookbooks/networking/metadata.rb
Convert all notify/subscribe calls to the new style syntax
[chef.git] / cookbooks / networking / metadata.rb
1 maintainer        "OpenStreetMap Administrators"
2 maintainer_email  "admins@openstreetmap.org"
3 license           "Apache 2.0"
4 description       "Configures networking"
5 long_description  IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6 version           "1.0.0"
7 recipe            "networking", "Configures networking via attributes"
8 supports          "ubuntu"
9
10 attribute "networking",
11   :display_name => "Networking",
12   :description => "Hash of networking attributes",
13   :type => "hash"
14
15 attribute "networking/search",
16   :display_name => "Resolver Search Path",
17   :description => "List of domains to search",
18   :default => "domain"
19
20 attribute "networking/nameservers",
21   :display_name => "Nameservers",
22   :description => "List of nameservers to use",
23   :type => "array",
24   :default => [""]
25