whitespace change
authorPeter Palfrader <peter@palfrader.org>
Sun, 22 Sep 2019 19:29:30 +0000 (21:29 +0200)
committerPeter Palfrader <peter@palfrader.org>
Sun, 22 Sep 2019 19:29:30 +0000 (21:29 +0200)
modules/roles/manifests/init.pp

index a65e7a9..29416e8 100644 (file)
@@ -1,25 +1,19 @@
 # = Class: roles
 #
-# Lookup role and include relevant classes for roles
-#
-# == Sample Usage:
-#
-#   include roles
-#
 class roles {
-       if has_role('security_mirror') {
-               include roles::security_mirror
-       }
+  if has_role('security_mirror') {
+    include roles::security_mirror
+  }
 
-       if has_role('postgres_backup_server') {
-               include postgres::backup_server
-       }
+  if has_role('postgres_backup_server') {
+    include postgres::backup_server
+  }
 
-       if has_role('postgresql_server') {
-               include postgres::backup_source
-       }
+  if has_role('postgresql_server') {
+    include postgres::backup_source
+  }
 
-       if $::keyring_debian_org_mirror {
-               include roles::keyring_debian_org_mirror
-       }
+  if $::keyring_debian_org_mirror {
+    include roles::keyring_debian_org_mirror
+  }
 }