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