diff options
author | Louis-Philippe VĂ©ronneau <pollito@riseup.net> | 2017-01-21 16:15:06 -0500 |
---|---|---|
committer | Louis-Philippe VĂ©ronneau <pollito@riseup.net> | 2017-01-21 16:15:06 -0500 |
commit | 904be827acc3cc377123544eaf401f26eb984495 (patch) | |
tree | 18f3439205b380a711d66ab643d0689142d81a73 /manifests | |
parent | 83dd6b478f2799b0d515b577d10c14f24e1f8b9b (diff) |
minor style fixes to comply with CI warnings
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/config.pp | 2 | ||||
-rw-r--r-- | manifests/cron/dist_upgrade.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp index 4b984c7..542fc1f 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -42,7 +42,7 @@ class apt::config { source => [ "puppet:///modules/site_apt/${::fqdn}/03clean_vserver", 'puppet:///modules/site_apt/03clean_vserver', 'puppet:///modules/apt/03clean_vserver' ], - alias => '03clean'; + alias => '03clean'; } } else { diff --git a/manifests/cron/dist_upgrade.pp b/manifests/cron/dist_upgrade.pp index d0d9a98..db36544 100644 --- a/manifests/cron/dist_upgrade.pp +++ b/manifests/cron/dist_upgrade.pp @@ -14,7 +14,7 @@ class apt::cron::dist_upgrade ( cron { 'apt_cron_every_N_hours': command => 'test -x /usr/sbin/cron-apt && /usr/sbin/cron-apt', user => root, - hour => "${cron_hours}", + hour => $cron_hours, minute => 10, require => Package['cron-apt'], } |