diff options
author | Gabriel Filion <lelutin@gmail.com> | 2013-01-02 08:12:11 -0500 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2013-01-02 17:28:59 +0100 |
commit | ded81d8edcc9a7cc8275a68f669fde896379b12e (patch) | |
tree | 244f0fda87dc42ab62474b306fabcb658604342d /manifests/apticron.pp | |
parent | 17f67d9fac83193f4436e82fc6046e065d9ab024 (diff) |
Apply code style corrections from puppet-lint
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
+ more linting by intrigeri.
Conflicts:
manifests/apticron.pp
manifests/cron/dist_upgrade.pp
manifests/cron/download.pp
manifests/dist_upgrade/initiator.pp
manifests/init.pp
manifests/listchanges.pp
manifests/preferences.pp
manifests/preseeded_package.pp
manifests/proxy_client.pp
manifests/unattended_upgrades.pp
manifests/update.pp
Diffstat (limited to 'manifests/apticron.pp')
-rw-r--r-- | manifests/apticron.pp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/manifests/apticron.pp b/manifests/apticron.pp index ebdd5b5..54d7b71 100644 --- a/manifests/apticron.pp +++ b/manifests/apticron.pp @@ -12,11 +12,13 @@ class apt::apticron( $customsubject = '' ) { - package { apticron: ensure => $ensure_version } + package { 'apticron': ensure => $ensure_version } - file { "/etc/apticron/apticron.conf": + file { '/etc/apticron/apticron.conf': content => template($apt::apticron::config), - mode => 0644, owner => root, group => root, - require => Package["apticron"]; + owner => root, + group => root, + mode => '0644', + require => Package['apticron']; } } |