Puppet Class: gitlab_ci_runner::install
- Defined in:
- manifests/install.pp
Summary
Manages the package of Gitlab runnerOverview
5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/install.pp', line 5
class gitlab_ci_runner::install (
$package_name = $gitlab_ci_runner::package_name,
$package_ensure = $gitlab_ci_runner::package_ensure,
) {
assert_private()
package { $package_name:
ensure => $package_ensure,
}
}
|