summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorFrank Brockners <fbrockne@cisco.com>2015-04-03 07:15:02 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-04-03 07:15:02 +0000
commitd65c837590e55abb168af92e52ae199ba183df5c (patch)
treef157887a00a7604104f5de977beb71c143a1eec8 /common
parent0c8095c5db74d25d8732cf1c44652c42dc3ae991 (diff)
parente6182183afbdc6984f7a8fdf75969b8c4c72d9f6 (diff)
Merge "Adds Ceph repos needed for installing Ceph on each node"
Diffstat (limited to 'common')
-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;
+ }
}
}