diff options
author | david <david@f03ff2f1-f02d-0410-970d-b9634babeaa1> | 2007-07-11 11:59:15 +0000 |
---|---|---|
committer | david <david@f03ff2f1-f02d-0410-970d-b9634babeaa1> | 2007-07-11 11:59:15 +0000 |
commit | 82c10cd0d86f8d199a474d77b61a0e85726858c4 (patch) | |
tree | 2ede010f9a9e91bd7ae796bb2a87d69d65f0823b | |
parent | ebb51cf7547017ffbfca96090aaddb4e40614cdf (diff) | |
download | puppet-apt-82c10cd0d86f8d199a474d77b61a0e85726858c4.tar.gz puppet-apt-82c10cd0d86f8d199a474d77b61a0e85726858c4.tar.bz2 |
add the key package for the backports key
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@107 f03ff2f1-f02d-0410-970d-b9634babeaa1
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index b626aad..edae228 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -76,11 +76,12 @@ class apt { case $lsbdistcodename { etch: { ## This package should really always be current - package { "debian-archive-keyring": ensure => latest, } + package { [ "debian-archive-keyring", "debian-backports-keyring" ]: + ensure => latest, } # This key was downloaded from # http://backports.org/debian/archive.key - # and is needed to verify the backports + # and is needed to bootstrap the backports trustpath file { "${base_dir}/backports.org.key": source => "puppet://$servername/apt/backports.org.key", mode => 0444, owner => root, group => root, |