summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-01-21 16:12:18 -0500
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-01-21 16:12:18 -0500
commit83dd6b478f2799b0d515b577d10c14f24e1f8b9b (patch)
tree51c009c4fcfc6a447ff7f2950c9fefe4a16c3dcd
parenta7fcc79268052f2090fa09e97a1ac9189daf62a5 (diff)
missed a few variables - fully qualify them
-rw-r--r--manifests/config.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 7705551..4b984c7 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -8,7 +8,7 @@ class apt::config {
refreshonly => true;
}
- $sources_content = $custom_sources_list ? {
+ $sources_content = $apt::custom_sources_list ? {
'' => template( "apt/${::operatingsystem}/sources.list.erb"),
default => $apt::custom_sources_list,
}
@@ -58,7 +58,7 @@ class apt::config {
'backports':
content => "deb ${apt::debian_url} ${::debian_codename}-backports ${apt::repos}",
}
- if $include_src {
+ if $apt::include_src {
apt::sources_list {
'backports-src':
content => "deb-src ${apt::debian_url} ${::debian_codename}-backports ${apt::repos}",