25 lines
570 B
Plaintext
25 lines
570 B
Plaintext
{% from "apache/map.jinja" import apache with context %}
|
|
|
|
{% if grains['os_family']=="FreeBSD" %}
|
|
|
|
include:
|
|
- apache
|
|
|
|
{{ apache.modulesdir }}/009_mod_socache_shmcb.conf:
|
|
file.managed:
|
|
- source: salt://apache/files/{{ salt['grains.get']('os_family') }}/generic_module.conf.jinja
|
|
- mode: 644
|
|
- template: jinja
|
|
- require:
|
|
- pkg: apache
|
|
- watch_in:
|
|
- module: apache-restart
|
|
- require_in:
|
|
- module: apache-restart
|
|
- module: apache-reload
|
|
- service: apache
|
|
- context:
|
|
module_name: socache_shmcb
|
|
|
|
{% endif %}
|