summaryrefslogtreecommitdiff
path: root/manifests/service.pp
blob: 7785699e627cdd601539476868221fa994ce4e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# == Class gitlab_ci_multi_runner::service
#
# This class is meant to be called from gitlab_ci_multi_runner
# It ensure the service is running
#
class gitlab_ci_multi_runner::service {

  service { $gitlab_ci_multi_runner::service_name:
    ensure     => $gitlab_ci_multi_runner::service_ensure,
    enable     => $gitlab_ci_multi_runner::service_enable,
    hasstatus  => true,
    hasrestart => true,
  }

}