summaryrefslogtreecommitdiff
path: root/manifests/service.pp
blob: 8ac2727dae9fc1e6fc2556521552fe193878cc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# == 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     => running,
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
  }
}