Sha256: aefcb3918b8a6fae9f5447134f68bacc70bf2b78c9f465cdde4ded328d1bee3e

Contents?: true

Size: 1.12 KB

Versions: 27

Compression:

Stored size: 1.12 KB

Contents

# This adds the necessary components to get backports for ubuntu and debian
#
# == Parameters
#
# [*release*]
#   The ubuntu/debian release name. Defaults to $lsbdistcodename. Setting this
#   manually can cause undefined behavior. (Read: universe exploding)
#
# == Examples
#
#   include apt::backports
#
#   class { 'apt::backports':
#     release => 'natty',
#   }
#
# == Authors
#
# Ben Hughes, I think. At least blame him if this goes wrong.
# I just added puppet doc.
#
# == Copyright
#
# Copyright 2011 Puppet Labs Inc, unless otherwise noted.
class apt::backports(
  $release  = $::lsbdistcodename,
  $location = $apt::params::backports_location
) inherits apt::params {

  $release_real = downcase($release)
  $key = $::lsbdistid ? {
    'debian' => '55BE302B',
    'ubuntu' => '437D05B5',
  }
  $repos = $::lsbdistid ? {
    'debian' => 'main contrib non-free',
    'ubuntu' => 'main universe multiverse restricted',
  }

  apt::source { 'backports':
    location   => $location,
    release    => "${release_real}-backports",
    repos      => $repos,
    key        => $key,
    key_server => 'pgp.mit.edu',
    pin        => '200',
  }
}

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
freighthop-0.6.1 modules/apt/manifests/backports.pp
freighthop-0.6.0 modules/apt/manifests/backports.pp
freighthop-0.5.2 modules/apt/manifests/backports.pp
freighthop-0.5.1 modules/apt/manifests/backports.pp
freighthop-0.5.0 modules/apt/manifests/backports.pp
freighthop-0.4.1 modules/apt/manifests/backports.pp
freighthop-0.4.0 modules/apt/manifests/backports.pp
freighthop-0.3.3 modules/apt/manifests/backports.pp
freighthop-0.3.2 modules/apt/manifests/backports.pp
freighthop-0.3.1 modules/apt/manifests/backports.pp
freighthop-0.3.0 modules/apt/manifests/backports.pp
freighthop-0.2.1 modules/apt/manifests/backports.pp
freighthop-0.2.0 modules/apt/manifests/backports.pp
freighthop-0.1.0 modules/apt/manifests/backports.pp
freighthop-0.0.6 modules/apt/manifests/backports.pp
freighthop-0.0.5 modules/apt/manifests/backports.pp
freighthop-0.0.4 modules/apt/manifests/backports.pp
freighthop-0.0.3 modules/apt/manifests/backports.pp
freighthop-0.0.2 modules/apt/manifests/backports.pp
freighthop-0.0.1 modules/apt/manifests/backports.pp