Puppet Class: gitlab::service
- Inherits:
- gitlab
- Defined in:
- manifests/service.pp
Overview
- Class
-
gitlab::service
4 5 6 7 8 9 10 11 |
# File 'manifests/service.pp', line 4
class gitlab::service inherits gitlab {
service { 'gitlab':
ensure => running,
hasstatus => true,
hasrestart => true,
enable => true,
}
}
|