aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-08-05 11:12:29 +0200
committerintrigeri <intrigeri@boum.org>2012-04-11 11:35:31 +0200
commit5173c717154e1fba74bdc9a7227401bc7b398397 (patch)
tree7deffb6171fb7eedebb8577ecdc249c7f6591d44
parent8996d83489159ec34187a18d18bc0d7566f2cbe5 (diff)
downloadpuppet-apt-5173c717154e1fba74bdc9a7227401bc7b398397.tar.gz
puppet-apt-5173c717154e1fba74bdc9a7227401bc7b398397.tar.bz2
use the correct name
-rw-r--r--manifests/preferences_snippet.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/preferences_snippet.pp b/manifests/preferences_snippet.pp
index bcc12de..91b3dde 100644
--- a/manifests/preferences_snippet.pp
+++ b/manifests/preferences_snippet.pp
@@ -21,12 +21,12 @@ define apt::preferences_snippet(
# lenny, we can't generalize without going into ugly special-casing.
case $source {
'': {
- Concat::Fragment[$name]{
+ Concat::Fragment["apt_preference_${name}"]{
content => template("apt/preferences_snippet.erb")
}
}
default: {
- Concat::Fragment[$name]{
+ Concat::Fragment["apt_preference_${name}"]{
source => $source
}
}