summaryrefslogtreecommitdiff
path: root/manifests/preseeded_package.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-04-15 15:41:58 +0200
committermh <mh@immerda.ch>2012-04-15 15:41:58 +0200
commitf1a0eca4662f8c7ec47bfc3d60aa9099c8f9fa77 (patch)
tree60de0e1fa00d034aab292b400ce4e651f0a12a89 /manifests/preseeded_package.pp
parentbdc244667161c3fa9140632c535921db61468800 (diff)
Migrate - in class names to _
In newer puppet releases the old way to name class/modules with a -, won't anymore be supported.
Diffstat (limited to 'manifests/preseeded_package.pp')
-rw-r--r--manifests/preseeded_package.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/preseeded_package.pp b/manifests/preseeded_package.pp
index 839f200..d831934 100644
--- a/manifests/preseeded_package.pp
+++ b/manifests/preseeded_package.pp
@@ -1,7 +1,7 @@
define apt::preseeded_package ($content = "", $ensure = "installed") {
$seedfile = "/var/cache/local/preseeding/$name.seeds"
$real_content = $content ? {
- "" => template ( "site-apt/$lsbdistcodename/$name.seeds" ),
+ "" => template ( "site_apt/$lsbdistcodename/$name.seeds" ),
default => $content
}