summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apt/manifests/sid_repo.pp
blob: 7c1d8783543632efac122921625a103a901f82ec (plain)
1
2
3
4
5
6
7
8
9
10
11
# configure debian unstable aka "sid"
# currently only used for installations that
# use plain couchdb instead of bigcouch
class site_apt::sid_repo {

  apt::sources_list { 'debian_sid.list':
    content => "deb http://httpredir.debian.org/debian/ sid main\n",
    before  => Exec[refresh_apt]
  }

}