summaryrefslogtreecommitdiff
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
parent7d52ff7414ff887c3e2128e3e05df936db9ab4ca (diff)
fix errors by replacing some semicolons by commas
-rw-r--r--manifests/config.pp4
-rw-r--r--manifests/preferences_snippet.pp6
-rw-r--r--manifests/unattended_upgrades.pp2
3 files changed, 6 insertions, 6 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'],
}
}
}
diff --git a/manifests/preferences_snippet.pp b/manifests/preferences_snippet.pp
index 3044638..8905318 100644
--- a/manifests/preferences_snippet.pp
+++ b/manifests/preferences_snippet.pp
@@ -40,19 +40,19 @@ define apt::preferences_snippet (
case $release {
undef: {
File["/etc/apt/preferences.d/${name}"]{
- content => template('apt/preferences_snippet.erb');
+ content => template('apt/preferences_snippet.erb'),
}
}
default: {
File["/etc/apt/preferences.d/${name}"]{
- content => template('apt/preferences_snippet_release.erb');
+ content => template('apt/preferences_snippet_release.erb'),
}
}
}
}
default: {
File["/etc/apt/preferences.d/${name}"]{
- source => $source;
+ source => $source,
}
}
}
diff --git a/manifests/unattended_upgrades.pp b/manifests/unattended_upgrades.pp
index 4067044..c6db396 100644
--- a/manifests/unattended_upgrades.pp
+++ b/manifests/unattended_upgrades.pp
@@ -23,7 +23,7 @@ class apt::unattended_upgrades (
$file_content = $config_content ? {
undef => template($config_template),
- default => $config_content;
+ default => $config_content,
}
::apt::apt_conf { '50unattended-upgrades':