]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Rename $apt_use_volatile to $apt_volatile_enabled.
authorintrigeri <intrigeri@boum.org>
Sat, 16 Oct 2010 23:12:19 +0000 (01:12 +0200)
committerintrigeri <intrigeri@boum.org>
Sat, 16 Oct 2010 23:18:33 +0000 (01:18 +0200)
This will help merging with Nadir's changes.

README
manifests/init.pp

diff --git a/README b/README
index 8a291417f23d2af2bdb923826a3f2e6592016b52..d1249a0b2a0317653533843b9fab506e86730931 100644 (file)
--- a/README
+++ b/README
@@ -76,7 +76,7 @@ If this variable is set to true apt::unattended_upgrades is included,
 which will install the package unattended-upgrades and configure it to
 daily upgrade the system.
 
-$apt_use_volatile
+$apt_volatile_enabled
 -----------------
 
 If this variable is set to true the Debian Volatile sources are added.
index dc581f52c1098efa76bad543577e233a39f976ce..85cab9fbfbafaabf754d3fc58429ce9e503aef29 100644 (file)
@@ -11,9 +11,9 @@ class apt {
     default => $apt_clean,
   }
 
-  $use_volatile = $apt_use_volatile ? {
+  $use_volatile = $apt_volatile_enabled ? {
     ''      => false,
-    default => $apt_use_volatile,
+    default => $apt_volatile_enabled,
   }
 
   $include_src = $apt_include_src ? {