Puppet Class: unicorn_systemd
- Defined in:
- manifests/init.pp
Overview
Class: unicorn_systemd
This class install and configure systemd unit files for unicorn
Parameters
-
‘ensure`
Whether the unit files should exist. Valid options: present, absent, file. Default to present.
-
‘user`
The user to execute the processes as. Valid options: a string containing a valid username. Default to ‘nobody’.
-
‘group
The group to execute the processes as. Valid options: a string containing a valid groupname. Default to undef.
-
‘working_directory`
The working directory for executed processes. Valid options: an absolute path. Default to undef.
-
‘listen_streams`
The addresses to listen on for a stream. Valid options: an array of valid addresses. Default to [‘127.0.0.1:8080’, ‘/var/run/unicorn.sock’].
-
‘exec_start`
The commands with their arguments that are executed for this service. Valid options: a string containing valid commands. Default to undef.
-
‘environment`
The environment variables for executed processes. Valid options: a hash of key-value pairs. Default to {}.
-
‘service_ensure`
Whether the service should be enabled. Valid options: ‘running’, ‘true’, ‘stopped’, or ‘false’. Defaults to running.
-
‘service_enable`
Whether the service should be enabled. Valid options: a boolean. Defaults to true.
Examples
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'manifests/init.pp', line 55
class unicorn_systemd (
$ensure = present,
$user = 'nobody',
$group = undef,
$working_directory = undef,
$listen_streams = ['127.0.0.1:8080', '/var/run/unicorn.sock'],
$exec_start = undef,
$environment = {},
$service_ensure = running,
$service_enable = true,
) {
class { 'unicorn_systemd::install':
ensure => $ensure,
user => $user,
group => $group,
working_directory => $working_directory,
listen_streams => $listen_streams,
exec_start => $exec_start,
environment => $environment,
}
class { 'unicorn_systemd::service':
service_ensure => $service_ensure,
service_enable => $service_enable,
subscribe => Class['unicorn_systemd::install'],
require => Class['unicorn_systemd::install'],
}
}
|