-
Notifications
You must be signed in to change notification settings - Fork 4
/
metadata.rb
39 lines (33 loc) · 1.23 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name "multipath"
maintainer "Ovais Tariq"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and configures device-mapper-multipath"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
recommends "iscsi"
recommends "dbench"
version "0.0.9"
%w{ redhat centos scientific amazon oracle }.each do |os|
supports os, ">= 5.0"
end
%w{ debian ubuntu }.each do |os|
supports os
end
attribute "multipath/blacklist_regex",
:display_name => "multipath/blacklist_regex",
:description => "An array of regular expression strings for blacklisting devices",
:required => "recommended"
attribute "multipath/blacklist_wwid",
:display_name => "multipath/blacklist_wwid",
:description => "An array of Worldwide Identifiers for blacklisting devices",
:required => "recommended"
attribute "multipath/storage_type",
:display_name => "multipath/storage_type",
:choice => [ "default", "equallogic", "clariion", "powervault" ],
:description => "default",
:required => "optional",
:default => "default"
attribute "multipath/aliases",
:display_name => "multipath/aliases",
:required => "optional",
:description => "An array of alias:wwid mappings"