diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-29 12:29:23 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-29 12:29:23 -0400 |
commit | aefa01016057e17828948e47c86eb6e3d702a692 (patch) | |
tree | 2d511c7a6b56d95b080f4d14a841be2354c3e257 /manifests | |
parent | 4995dff49d49c9a5ca85467a94fd78a0d4b4e317 (diff) | |
download | puppet-apt-aefa01016057e17828948e47c86eb6e3d702a692.tar.gz puppet-apt-aefa01016057e17828948e47c86eb6e3d702a692.tar.bz2 |
fix another trivial syntax error
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index cacb109..e7eddbc 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -47,7 +47,7 @@ class apt { } default: { config_file { "/etc/apt/preferences": - content => $custom_preferences + content => $custom_preferences, alias => apt_config, require => File["/etc/apt/sources.list"]; } |