Dimitry Andric 21045c7a7b fix(mod_mpm): cast to int to avoid Jinja type mismatch error
This fixes the following error when Jinja tries to process
`mpm_prefork.conf.jinja` or `00-mpm.conf.jinja`, when it processes the
`max_request_workers` comparison:

```
Unable to manage file: Jinja error: '>=' not supported between instances of 'str' and 'int'
[...]
<IfModule mpm_prefork_module>
  StartServers {{ mpm_param['start_servers'] | d('5') }}
  MaxRequestWorkers {{ mpm_param['max_request_workers'] | d('150') }}
{%- if mpm_param['max_request_workers'] | d('150') >= 256 %}    <======================
  ServerLimit {{ mpm_param['max_request_workers'] | d('150') }}
{%- endif %}
  MinSpareServers {{ mpm_param['min_spare_servers'] | d('5') }}
  MaxSpareServers {{ mpm_param['max_spare_servers'] | d('10') }}
  MaxConnectionsPerChild {{ mpm_param['max_connections_per_child'] | d('0') }}
```

Add filters that convert the values to an int first.
2019-12-20 13:24:37 +01:00
2019-11-07 17:00:14 +00:00
2019-10-17 08:32:30 +01:00
2019-11-07 17:00:14 +00:00
2019-11-07 17:00:14 +00:00
2019-11-07 17:00:14 +00:00
2015-03-20 20:10:44 -04:00
2019-10-17 08:32:30 +01:00
Description
Set up and configure the Apache HTTP server
https://github.com/saltstack-formulas/apache-formula
Readme 1.8 MiB
Languages
Jinja 62.1%
SaltStack 27.7%
Ruby 6.4%
Shell 2.1%
JavaScript 1.7%