autofs: make the linter happy
authorJulien Cristau <jcristau@debian.org>
Sat, 26 Oct 2019 22:53:38 +0000 (00:53 +0200)
committerJulien Cristau <jcristau@debian.org>
Sat, 26 Oct 2019 22:53:38 +0000 (00:53 +0200)
modules/autofs/manifests/init.pp

index fc3e32d..159d064 100644 (file)
@@ -1,13 +1,15 @@
+# Set up NFS mounts via autofs
 class autofs {
-       case $::hostname {
-               piu-slave-bm-a, picconi, quantz, sor, tate, respighi: {
-                       include autofs::bytemark
-               }
-               lw07,lw08: {
-                       include autofs::leaseweb
-               }
-               tye,ullmann,piu-slave-ubc-01,hier,manziarly,lindsay,pinel,ticharich,donizetti,mekeel,pejacevic,delfin, coccia: {
-                       include autofs::ubc
-               }
-       }
+  case $::hostname {
+    piu-slave-bm-a, picconi, quantz, sor, tate, respighi: {
+      include autofs::bytemark
+    }
+    lw07,lw08: {
+      include autofs::leaseweb
+    }
+    tye,ullmann,piu-slave-ubc-01,hier,manziarly,lindsay,pinel,ticharich,donizetti,mekeel,pejacevic,delfin, coccia: {
+      include autofs::ubc
+    }
+    default: {}
+  }
 }