From: nadir Date: Tue, 18 Dec 2012 21:31:00 +0000 (+0100) Subject: comparing variabled should use double quotes (interestingly, it does work with only... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3a473dafd5887cb77b0b764dd951d9581b69f160;p=puppet-apt.git comparing variabled should use double quotes (interestingly, it does work with only one too) --- diff --git a/manifests/dist_upgrade.pp b/manifests/dist_upgrade.pp index 347ccc7..47b1cff 100644 --- a/manifests/dist_upgrade.pp +++ b/manifests/dist_upgrade.pp @@ -1,6 +1,8 @@ class apt::dist_upgrade { - if $apt::disable_update = false { include apt::update } + if $apt::disable_update == false { + include apt::update + } exec { 'apt_dist-upgrade': command => "/usr/bin/apt-get -q -y -o 'DPkg::Options::=--force-confold' dist-upgrade",