diff options
author | varac <varacanero@zeromail.org> | 2015-11-03 19:12:59 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-11-17 19:51:11 +0100 |
commit | 02b1b484ad9a5d065ceac72b8263b7bcc112c923 (patch) | |
tree | f8ea1f4bbdd9de268490add680a72b6887e5ac75 /puppet/modules/site_apt | |
parent | 0d8659d2bbcdc2da8481aa1445affc069b61c2e7 (diff) |
[feat] install couchdb from unstable on jessie
- Related: #6920
Diffstat (limited to 'puppet/modules/site_apt')
-rw-r--r-- | puppet/modules/site_apt/manifests/sid_repo.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/modules/site_apt/manifests/sid_repo.pp b/puppet/modules/site_apt/manifests/sid_repo.pp new file mode 100644 index 00000000..7c1d8783 --- /dev/null +++ b/puppet/modules/site_apt/manifests/sid_repo.pp @@ -0,0 +1,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] + } + +} |