summaryrefslogtreecommitdiff
path: root/manifests/service.pp
diff options
context:
space:
mode:
authorRafael Chicoli <rafaelchicoli@hotmail.com>2016-01-26 19:26:29 +0100
committerRafael Chicoli <rafaelchicoli@hotmail.com>2016-01-27 21:41:14 +0100
commitecc63a0a28c362ddf4797d3be27a1660c1fa0d94 (patch)
treeaafb0e90f979304287979e030de2d95dfeba0592 /manifests/service.pp
parenta89c460e0f630d778513a3b07a33f150b79d2aae (diff)
fix all puppet-lint error messages
Diffstat (limited to 'manifests/service.pp')
-rw-r--r--manifests/service.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/service.pp b/manifests/service.pp
index 8ac2727..7785699 100644
--- a/manifests/service.pp
+++ b/manifests/service.pp
@@ -6,9 +6,10 @@
class gitlab_ci_multi_runner::service {
service { $gitlab_ci_multi_runner::service_name:
- ensure => running,
- enable => true,
+ ensure => $gitlab_ci_multi_runner::service_ensure,
+ enable => $gitlab_ci_multi_runner::service_enable,
hasstatus => true,
hasrestart => true,
}
+
}