From: Maciej Galkiewicz Date: Mon, 15 Jul 2013 08:43:19 +0000 (+0200) Subject: Ceph team does not provide packages for debian jessie. X-Git-Tag: v0.2.0~19^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F40%2Fhead;p=ceph-cookbooks.git Ceph team does not provide packages for debian jessie. Use sid instead. --- diff --git a/recipes/apt.rb b/recipes/apt.rb index c11d3c3..8278047 100644 --- a/recipes/apt.rb +++ b/recipes/apt.rb @@ -5,7 +5,7 @@ branch = node['ceph']['branch'] apt_repository "ceph-#{branch}" do repo_name "ceph" uri node['ceph']['debian'][branch]['repository'] - distribution node['lsb']['codename'] + distribution node['lsb']['codename'] == "jessie" ? "sid" : node['lsb']['codename'] components ['main'] key node['ceph']['debian'][branch]['repository_key'] end