-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathinit.sls
More file actions
54 lines (42 loc) · 1.05 KB
/
init.sls
File metadata and controls
54 lines (42 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Meta-state to fully install php.fpm
include:
- php.fpm.config
- php.fpm.service
- php.fpm.pools
extend:
{%- set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
php_fpm_service_{{ version }}:
service:
- watch:
- file: php_fpm_ini_config_{{ version }}
- file: php_fpm_conf_config_{{ version }}
- require:
- sls: php.fpm.config
php_fpm_ini_config_{{ version }}:
file:
- require:
- pkg: php_install_fpm
php_fpm_conf_config_{{ version }}:
file:
- require:
- pkg: php_install_fpm
{% endfor %}
{% else %}
php_fpm_service:
service:
- watch:
- file: php_fpm_ini_config
- file: php_fpm_conf_config
- require:
- sls: php.fpm.config
php_fpm_ini_config:
file:
- require:
- pkg: php_install_fpm
php_fpm_conf_config:
file:
- require:
- pkg: php_install_fpm
{% endif %}