From: Peter Palfrader Date: Mon, 23 Sep 2019 17:00:28 +0000 (+0200) Subject: storage.pp: fix spacing X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=8b22735de3dd63392e79167a9c7865963f8cb5b4;p=mirror%2Fdsa-puppet.git storage.pp: fix spacing --- diff --git a/modules/bacula/manifests/storage.pp b/modules/bacula/manifests/storage.pp index 39e619dfa..09f0d0de8 100644 --- a/modules/bacula/manifests/storage.pp +++ b/modules/bacula/manifests/storage.pp @@ -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 }