Rename $apt_use_volatile to $apt_volatile_enabled.

This will help merging with Nadir's changes.
This commit is contained in:
intrigeri 2010-10-17 01:12:19 +02:00
parent 7ed78d549b
commit 7613ddde67
2 changed files with 3 additions and 3 deletions

2
README
View file

@ -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.

View 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 ? {