storage.pp: fix spacing
authorPeter Palfrader <peter@palfrader.org>
Mon, 23 Sep 2019 17:00:28 +0000 (19:00 +0200)
committerPeter Palfrader <peter@palfrader.org>
Mon, 23 Sep 2019 17:00:28 +0000 (19:00 +0200)
modules/bacula/manifests/storage.pp

index 39e619d..09f0d0d 100644 (file)
@@ -59,22 +59,22 @@ class bacula::storage inherits bacula {
   }
 
   file { "${bacula_backup_path}/Catalog":
-    ensure  => directory,
-    mode    => '0755',
-    owner   => bacula,
-    group   => bacula,
+    ensure => directory,
+    mode   => '0755',
+    owner  => bacula,
+    group  => bacula,
     ;
   }
 
   package { 'python3-psycopg2': ensure => installed }
   file { '/usr/local/bin/bacula-unlink-removed-volumes':
-    source  => 'puppet:///modules/bacula/bacula-unlink-removed-volumes',
-    mode    => '0555',
+    source => 'puppet:///modules/bacula/bacula-unlink-removed-volumes',
+    mode   => '0555',
   }
-  file { "/etc/cron.d/puppet-bacula-storage-stuff": ensure => absent, }
+  file { '/etc/cron.d/puppet-bacula-storage-stuff': ensure => absent, }
   concat::fragment { 'puppet-crontab--bacula-storage':
-    target => '/etc/cron.d/puppet-crontab',
-    content  => @(EOF)
+    target  => '/etc/cron.d/puppet-crontab',
+    content => @(EOF)
       @daily bacula chronic /usr/local/bin/bacula-unlink-removed-volumes -v
       | EOF
   }