summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..c0475a5
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,21 @@
+# == Class: gitlab_ci_multi_runner
+#
+# Full description of class gitlab_ci_multi_runner here.
+#
+# === Parameters
+#
+# [*sample_parameter*]
+# Explanation of what this parameter affects and what it defaults to.
+#
+class gitlab_ci_multi_runner (
+ $package_name = $gitlab_ci_multi_runner::params::package_name,
+ $service_name = $gitlab_ci_multi_runner::params::service_name,
+) inherits gitlab_ci_multi_runner::params {
+
+ # validate parameters here
+
+ class { 'gitlab_ci_multi_runner::install': } ->
+ class { 'gitlab_ci_multi_runner::config': } ~>
+ class { 'gitlab_ci_multi_runner::service': } ->
+ Class['gitlab_ci_multi_runner']
+}