summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/package.pp
blob: c091316a5b1fd01bab6a32620a628d156e555c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class site_couchdb::package {

  # for now, we need to install couchdb from unstable,
  # because of this bug while installing:
  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681549
  # can be removed when couchdb/1.2.0-2 is integrated into testing
  apt::sources_list { 'unstable.list':
    source => [ 'puppet:///modules/site_apt/unstable.list'],
  }
  apt::preferences_snippet{
    'couchdb': release => 'unstable', priority => 999;
  }
}