diff options
author | Frank Brockners <fbrockne@cisco.com> | 2015-04-03 07:15:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-04-03 07:15:02 +0000 |
commit | d65c837590e55abb168af92e52ae199ba183df5c (patch) | |
tree | f157887a00a7604104f5de977beb71c143a1eec8 /common/puppet-opnfv/manifests | |
parent | 0c8095c5db74d25d8732cf1c44652c42dc3ae991 (diff) | |
parent | e6182183afbdc6984f7a8fdf75969b8c4c72d9f6 (diff) |
Merge "Adds Ceph repos needed for installing Ceph on each node"
Diffstat (limited to 'common/puppet-opnfv/manifests')
-rw-r--r-- | common/puppet-opnfv/manifests/repo.pp | 18 |
1 files changed, 18 insertions, 0 deletions
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; + } } } |