aboutsummaryrefslogtreecommitdiff
path: root/manifests/listchanges.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/listchanges.pp')
-rw-r--r--manifests/listchanges.pp12
1 files changed, 7 insertions, 5 deletions
diff --git a/manifests/listchanges.pp b/manifests/listchanges.pp
index 4194463..0c163ae 100644
--- a/manifests/listchanges.pp
+++ b/manifests/listchanges.pp
@@ -7,11 +7,13 @@ class apt::listchanges(
$saveseen = '/var/lib/apt/listchanges.db',
$which = 'both'
){
- package { apt-listchanges: ensure => $ensure_version }
-
- file { "/etc/apt/listchanges.conf":
+ package { 'apt-listchanges': ensure => $ensure_version }
+
+ file { '/etc/apt/listchanges.conf':
content => template($apt::listchanges::config),
- mode => 0644, owner => root, group => root,
- require => Package["apt-listchanges"];
+ owner => root,
+ group => root,
+ mode => '0644',
+ require => Package['apt-listchanges'];
}
}