From 9e34914cc75d5c8199538abcae59a486a2282eb3 Mon Sep 17 00:00:00 2001 From: Jeoffrey Bauvin Date: Mon, 26 Oct 2015 11:52:35 +0100 Subject: Add skeleton --- manifests/init.pp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 manifests/init.pp (limited to 'manifests/init.pp') 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'] +} -- cgit v1.2.3