diff options
author | mh <mh@immerda.ch> | 2011-08-05 11:12:29 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-04-11 11:35:31 +0200 |
commit | 5173c717154e1fba74bdc9a7227401bc7b398397 (patch) | |
tree | 7deffb6171fb7eedebb8577ecdc249c7f6591d44 /manifests | |
parent | 8996d83489159ec34187a18d18bc0d7566f2cbe5 (diff) |
use the correct name
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/preferences_snippet.pp | 4 |
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 } } |