Puppet Class: psick::multipath
- Defined in:
- manifests/multipath.pp
Overview
This class installs and configures multipath (only on physical servers)
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/multipath.pp', line 9
class psick::multipath (
String $config_file_template = 'psick/multipath/multipath.conf.erb',
String $user_friendly_names = 'yes',
) {
if $config_file_template != '' and $::virtual == 'physical' {
tp::conf { 'multipath':
content => template($config_file_template),
}
tp::install { 'multipath': }
}
}
|