summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2016-12-30 01:48:41 -0500
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2016-12-30 01:48:41 -0500
commitc72ceac8b339a159db6819455ed47ebb295519ae (patch)
tree8941928093b6410b358b5a6f6463c97682f82f1b
parentf8ac878c19bb98db4d95f7cbb988999c33fe8e53 (diff)
more ; to ,
-rw-r--r--manifests/preseeded_package.pp2
-rw-r--r--manifests/update.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/preseeded_package.pp b/manifests/preseeded_package.pp
index 7e092fd..29a981e 100644
--- a/manifests/preseeded_package.pp
+++ b/manifests/preseeded_package.pp
@@ -8,7 +8,7 @@ define apt::preseeded_package (
$seedfile = "/var/cache/local/preseeding/${name}.seeds"
$real_content = $content ? {
'' => template ( "site_apt/${::debian_codename}/${name}.seeds" ),
- default => $content;
+ default => $content,
}
file { $seedfile:
diff --git a/manifests/update.pp b/manifests/update.pp
index 4cb4e5f..72cedc2 100644
--- a/manifests/update.pp
+++ b/manifests/update.pp
@@ -1,6 +1,6 @@
class apt::update inherits ::apt {
Exec['update_apt'] {
- refreshonly => false;
+ refreshonly => false,
}
}