X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fpuppet-opnfv%2Fmanifests%2Frepo.pp;h=8d8a02564fc4d0bc97f66fca3084a4a4ae621f50;hb=e6182183afbdc6984f7a8fdf75969b8c4c72d9f6;hp=b11098c2cc254270cc5c487556c8b848be6ad71d;hpb=71bf7b37f4caaab89da39b8109fc18dc658e70cc;p=genesis.git diff --git a/common/puppet-opnfv/manifests/repo.pp b/common/puppet-opnfv/manifests/repo.pp index b11098c..8d8a025 100644 --- a/common/puppet-opnfv/manifests/repo.pp +++ b/common/puppet-opnfv/manifests/repo.pp @@ -32,5 +32,23 @@ class opnfv::repo { enabled => 1, gpgcheck => 0, } + + yumrepo { + "ceph": + baseurl => "http://ceph.com/rpm-giant/el7/\$basearch", + descr => "Ceph packages for \$basearch", + enabled => 1, + gpgcheck => 0; + "Ceph-noarch": + baseurl => "http://ceph.com/rpm-giant/el7/noarch", + descr => "Ceph noarch packages", + enabled => 1, + gpgcheck => 0; + "ceph-source": + baseurl => "http://ceph.com/rpm-giant/el7/SRPMS", + descr => "Ceph source packages", + enabled => 1, + gpgcheck => 0; + } } }