Merge "puppet: allow config of ad-hoc Cinder settings"
[apex-tripleo-heat-templates.git] / puppet / manifests / overcloud_cephstorage.pp
index 51f5e88..1d801ad 100644 (file)
@@ -14,6 +14,7 @@
 # under the License.
 
 include ::tripleo::packages
+include ::tripleo::firewall
 
 create_resources(sysctl::value, hiera('sysctl_settings'), {})
 
@@ -21,6 +22,8 @@ if count(hiera('ntp::servers')) > 0 {
   include ::ntp
 }
 
+include ::timezone
+
 if str2bool(hiera('ceph_osd_selinux_permissive', true)) {
   exec { 'set selinux to permissive on boot':
     command => "sed -ie 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config",
@@ -35,6 +38,7 @@ if str2bool(hiera('ceph_osd_selinux_permissive', true)) {
   } -> Class['ceph::profile::osd']
 }
 
+include ::ceph::conf
 include ::ceph::profile::client
 include ::ceph::profile::osd