include ganeti2
}
+ if $::hostname in [bm-bl1,bm-bl2,bm-bl3,bm-bl4,bm-bl5,bm-bl6,bm-bl7,bm-bl8,bm-bl9,bm-bl10,bm-bl11,bm-bl12,bm-bl13,bm-bl14] {
+ include multipath
+ }
+
if $::hostname == 'dinis' {
include bacula::director
} else {
--- /dev/null
+##
+## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
+## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
+##
+
+blacklist_exceptions {
+ devnode "cciss!c[0-9]d[0-9]*"
+}
+
+multipaths {
+ multipath {
+ wwid 3600c0ff000d75b58d376655101000000
+ alias zobel-testlun
+ }
+
+ multipath {
+ wwid 3600c0ff000d75b58409f695101000000
+ alias milanollo
+ }
+ multipath {
+ wwid 3600c0ff000d75b584e9f695101000000
+ alias milanollo-srv
+ }
+}
--- /dev/null
+class multipath {
+ case $::hostname {
+ bm-bl1,bm-bl2,bm-bl3,bm-bl4,bm-bl5,bm-bl6,bm-bl7,bm-bl8,bm-bl9,bm-bl10,bm-bl11,bm-bl12,bm-bl13,bm-bl14: {
+ $conffile = 'bm-multipath.conf';
+ }
+ default: {
+ $conffile = ''
+ }
+ }
+
+ if $conffile != '' {
+ package { 'multipath-tools':
+ ensure => installed,
+ }
+ exec { 'multipath reload':
+ path => '/usr/bin:/usr/sbin:/bin:/sbin',
+ command => 'service multipath-tools reload',
+ refreshonly => true,
+ require => Package['multipath-tools'],
+ }
+
+ file { '/etc/multipath.conf':
+ source => "puppet:///modules/multipath/$conffile",
+ notify => Exec['multipath reload']
+ }
+ }
+}