replace a few dijkstra occurrences with ubc-bl8
[mirror/dsa-puppet.git] / modules / multipath / manifests / init.pp
index a5ef0b3..40002ca 100644 (file)
@@ -1,9 +1,20 @@
+# = 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'
                }
-               luchesi,rossini: {
+               ubc-bl8,luchesi,pasquini,tristano,bertali,boito: {
                        $conffile = 'multipath-ubc-ganeti.conf'
                }
                default: {
@@ -19,11 +30,11 @@ class multipath {
                        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",
+                       content  => template("multipath/${conffile}.erb"),
                        notify  => Exec['multipath reload']
                }
        }