Adds NTP class and python-rados package 70/270/1
authorTim Rozet <trozet@redhat.com>
Wed, 8 Apr 2015 19:10:27 +0000 (15:10 -0400)
committerTim Rozet <trozet@redhat.com>
Wed, 8 Apr 2015 19:10:27 +0000 (15:10 -0400)
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>
common/puppet-opnfv/manifests/init.pp

index 6e211da..11ef18f 100644 (file)
@@ -33,8 +33,16 @@ class opnfv {
                before => Stage['setup'],
        }
 
+      class { '::ntp':
+        stage => presetup,
+      }
+
        class { "opnfv::repo":
                stage => presetup,
        }
+      ->
+      package { "python-rados":
+        ensure => latest,
+      }
    }
 }