linting
This commit is contained in:
parent
2e8a148852
commit
8859c4e8db
1 changed files with 5 additions and 4 deletions
|
@ -4,8 +4,8 @@
|
||||||
#
|
#
|
||||||
# Parameters:
|
# Parameters:
|
||||||
#
|
#
|
||||||
# There are no default parameters for this class. All module parameters are managed
|
# There are no default parameters for this class. All module parameters are
|
||||||
# via the nginx::params class
|
# managed via the nginx::params class
|
||||||
#
|
#
|
||||||
# Actions:
|
# Actions:
|
||||||
#
|
#
|
||||||
|
@ -49,15 +49,16 @@ class nginx (
|
||||||
worker_processes => $worker_processes,
|
worker_processes => $worker_processes,
|
||||||
worker_connections => $worker_connections,
|
worker_connections => $worker_connections,
|
||||||
proxy_set_header => $proxy_set_header,
|
proxy_set_header => $proxy_set_header,
|
||||||
|
proxy_http_version => $proxy_http_version,
|
||||||
confd_purge => $confd_purge,
|
confd_purge => $confd_purge,
|
||||||
server_tokens => $server_tokens,
|
server_tokens => $server_tokens,
|
||||||
require => Class['nginx::package'],
|
require => Class['nginx::package'],
|
||||||
notify => Class['nginx::service'],
|
notify => Class['nginx::service'],
|
||||||
}
|
}
|
||||||
|
|
||||||
class { 'nginx::service':
|
class { 'nginx::service':
|
||||||
configtest_enable => $configtest_enable,
|
configtest_enable => $configtest_enable,
|
||||||
service_restart => $service_restart,
|
service_restart => $service_restart,
|
||||||
}
|
}
|
||||||
|
|
||||||
# Allow the end user to establish relationships to the "main" class
|
# Allow the end user to establish relationships to the "main" class
|
||||||
|
|
Loading…
Reference in a new issue