]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Fix 5237f9da.
authorintrigeri <intrigeri@boum.org>
Wed, 15 Dec 2010 21:11:34 +0000 (22:11 +0100)
committerintrigeri <intrigeri@boum.org>
Wed, 15 Dec 2010 21:11:34 +0000 (22:11 +0100)
README
manifests/listchanges.pp

diff --git a/README b/README
index ddcd249a329fd8250d76d31e8fd9e80bd9b060c7..99c6354a9d4e7845660adb2ef5467f3e78b7598e 100644 (file)
--- a/README
+++ b/README
@@ -216,13 +216,13 @@ apt::listchanges
 This class, when included, installs apt-listchanges and configures it using the
 following variables, the defaults are below:
 
- $listchanges_version = "present"
- $listchanges_config = "apt/${operatingsystem}/listchanges_${lsbrelease}.erb" 
- $listchanges_frontend = "pager" 
- $listchanges_email = "root" 
- $listchanges_confirm = "0" 
- $listchanges_saveseen = "/var/lib/apt/listchanges.db" 
- $listchanges_which = "both" 
+ $apt_listchanges_version = "present"
+ $apt_listchanges_config = "apt/${operatingsystem}/listchanges_${lsbrelease}.erb"
+ $apt_listchanges_frontend = "pager"
+ $apt_listchanges_email = "root"
+ $apt_listchanges_confirm = "0"
+ $apt_listchanges_saveseen = "/var/lib/apt/listchanges.db"
+ $apt_listchanges_which = "both"
 
 apt::proxy_client
 -----------------
index 04cbc523f8d0110a9d89476b3057f94e8dbd4fe1..038d5c9ab06695ab615778c6e49dfcb0b3f2695a 100644 (file)
@@ -1,31 +1,31 @@
 class apt::listchanges {
 
   case $apt_listchanges_version {
-    '': { $listchanges_version = "present" }
+    '': { $apt_listchanges_version = "present" }
   }
 
   case $apt_listchanges_config {
-    '': { $listchanges_config = "apt/${operatingsystem}/listchanges_${lsbdistcodename}.erb" }
+    '': { $apt_listchanges_config = "apt/${operatingsystem}/listchanges_${lsbdistcodename}.erb" }
   }
 
   case $apt_listchanges_frontend {
-    '': { $listchanges_frontend = "mail" }
+    '': { $apt_listchanges_frontend = "mail" }
   }
 
   case $apt_listchanges_email {
-    '': { $listchanges_email = "root" }
+    '': { $apt_listchanges_email = "root" }
   }
 
   case $apt_listchanges_confirm {
-    '': { $listchanges_confirm = "0" }
+    '': { $apt_listchanges_confirm = "0" }
   }
 
   case $apt_listchanges_saveseen {
-    '': { $listchanges_saveseen = "/var/lib/apt/listchanges.db" }
+    '': { $apt_listchanges_saveseen = "/var/lib/apt/listchanges.db" }
   }
 
   case $apt_listchanges_which {
-    '': { $listchanges_which = "both" }
+    '': { $apt_listchanges_which = "both" }
   }
 
   package { apt-listchanges: ensure => $apt_listchanges_ensure_version }