--- /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
+##
+
+# conversion from MSA stype WWIDs to multipathd.conf:
+#
+# sed -re 's#(.{6})(.{6})0000(.{2})(.*)#36\1000\2\3\4#'
+
+blacklist_exceptions {
+ devnode "cciss!c[0-9]d[0-9]*"
+}
+
+multipaths {
+ multipath {
+ wwid 3600c0ff000d83a70b613585301000000
+ alias openstack
+ }
+}
+# = Class: multipath
+#
+# Manage a multipath installation
+#
+# == Sample Usage:
+#
+# include multipath
+#
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: {
+ bm-bl9: {
+ $conffile = 'multipath-bm-os.conf'
+ }
+ bm-bl1,bm-bl2,bm-bl3,bm-bl4,bm-bl5,bm-bl6,bm-bl7,bm-bl8,bm-bl13,bm-bl14: {
$conffile = 'multipath-bm.conf'
}
dijkstra,luchesi,rossini,salieri: {
path => '/usr/bin:/usr/sbin:/bin:/sbin',
command => 'service multipath-tools reload',
refreshonly => true,
- require => Package['multipath-tools'],
+ require => Package['multipath-tools'],
}
file { '/etc/multipath.conf':
- source => "puppet:///modules/multipath/$conffile",
+ source => "puppet:///modules/multipath/${conffile}",
notify => Exec['multipath reload']
}
}