From: Tim Rozet Date: Wed, 8 Apr 2015 19:10:27 +0000 (-0400) Subject: Adds NTP class and python-rados package X-Git-Tag: arno.2015.1.0~86^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=genesis.git;a=commitdiff_plain;h=54345b6220f6295aae965a7b76f60d4957bd894e 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 --- 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, + } } }