diff options
author | Tim Rozet <trozet@redhat.com> | 2015-04-08 15:10:27 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2015-04-08 15:10:27 -0400 |
commit | 54345b6220f6295aae965a7b76f60d4957bd894e (patch) | |
tree | 97881c1ba431e95026791c7bff4f0eed1385a395 | |
parent | 2797591c64423a62522f5f7e667422c5434229b2 (diff) |
Adds NTP class and python-rados package
NTP class is needed to keep the Ceph cluster in sync. python-rados
package is now provided by EPEL for Ceph and replaces python-ceph.
QuickStack originally provided python-ceph, but that is now removed.
JIRA: BGS-13
Change-Id: Ia6fb79fc2e5dc54630c7949a1d65629d7b36877c
Signed-off-by: Tim Rozet <trozet@redhat.com>
-rw-r--r-- | common/puppet-opnfv/manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/puppet-opnfv/manifests/init.pp b/common/puppet-opnfv/manifests/init.pp index 6e211da..11ef18f 100644 --- a/common/puppet-opnfv/manifests/init.pp +++ b/common/puppet-opnfv/manifests/init.pp @@ -33,8 +33,16 @@ class opnfv { before => Stage['setup'], } + class { '::ntp': + stage => presetup, + } + class { "opnfv::repo": stage => presetup, } + -> + package { "python-rados": + ensure => latest, + } } } |