Project

General

Profile

« Previous | Next » 

Revision 4e995792

Added by Eric Helms over 10 years ago

Fixing linting issues.

View differences:

manifests/service.pp
# Katello Services
class katello::service {
include pulp::service
service {"katello":
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
require => $katello::params::deployment ? {
'katello' => [Class["katello::config"],Class["candlepin::service"], Class["pulp::service"], Class["apache::config"]],
'headpin' => [Class["katello::config"],Class["candlepin::service"], Class["thumbslug::service"], Class["apache::config"]],
default => []
},
notify => Exec["reload-apache"];
}
service {"katello-jobs":
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
require => Service["katello"]
service {'katello-jobs':
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
}
}

Also available in: Unified diff