summaryrefslogtreecommitdiff
path: root/manifests/config.pp
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2016-12-22 22:58:18 -0500
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2016-12-22 22:58:18 -0500
commit247b3b2c2a269dcd584b25f6b67fe9282befbbde (patch)
treec8a84cf73a5548d1e33227fd8ec1a1b72b3da35e /manifests/config.pp
parent7d52ff7414ff887c3e2128e3e05df936db9ab4ca (diff)
fix errors by replacing some semicolons by commas
Diffstat (limited to 'manifests/config.pp')
-rw-r--r--manifests/config.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 4c5c5d3..881a091 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -10,7 +10,7 @@ class apt::config inherits apt {
$sources_content = $custom_sources_list ? {
'' => template( "apt/${::operatingsystem}/sources.list.erb"),
- default => $custom_sources_list;
+ default => $custom_sources_list,
}
file {
# include main and security
@@ -82,7 +82,7 @@ class apt::config inherits apt {
}
if $custom_preferences != false {
Exec['custom_keys'] {
- before => File['apt_config'];
+ before => File['apt_config'],
}
}
}