diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-28 11:11:36 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-28 11:11:36 -0200 |
commit | 9c7862d255ab9082328f4e9d9d4089ba92a8b915 (patch) | |
tree | 6aba8badf67ddcedd2bea61d3501513144cbb0b9 | |
parent | 2c0571686c933baf74962506a9dcc72db07c60c8 (diff) | |
download | puppet-apt-9c7862d255ab9082328f4e9d9d4089ba92a8b915.tar.gz puppet-apt-9c7862d255ab9082328f4e9d9d4089ba92a8b915.tar.bz2 |
Variable backports_enabled should be enable with true and not 'true'
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 2d2d6b3..9ef9768 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -97,7 +97,7 @@ class apt { } case $backports_enabled { - 'true': { + true: { config_file { # backports "/etc/apt/sources.list.d/debian-backports.list": |