class profiles::ceph::mgr ( Boolean $ensure_running = true, ) { if $ensure_running and $facts['is_ceph_mgr'] { $facts['ceph_services']['mgr'].each |String $svc| { service { $svc: ensure => running, enable => true, } } } }