summaryrefslogtreecommitdiffstats
path: root/common/puppet-opnfv
diff options
context:
space:
mode:
Diffstat (limited to 'common/puppet-opnfv')
-rw-r--r--common/puppet-opnfv/manifests/repo.pp18
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;
+ }
}
}