aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-10-16 14:21:36 +0200
committerintrigeri <intrigeri@boum.org>2010-10-16 14:21:36 +0200
commite50e35e4c8dfe1da878aebec46e5aee8480b9a8a (patch)
treea7d5d11d065f75b630c607988692f9d7ca398cc8
parente5c40bc6f07331572c1999b086eddcd14e73dcf8 (diff)
downloadpuppet-apt-e50e35e4c8dfe1da878aebec46e5aee8480b9a8a.tar.gz
puppet-apt-e50e35e4c8dfe1da878aebec46e5aee8480b9a8a.tar.bz2
apt::preseeded_package: concatenate $name.seeds with $debian_version/$name.seeds.
-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 276c90f..594b608 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 ( "$debian_version/$name.seeds" ),
+ "" => template ( "$name.seeds", "$debian_version/$name.seeds" ),
Default => $content
}