Add missing php_install_

This commit is contained in:
Paweł Rosada 2019-03-25 08:20:33 +01:00 committed by GitHub
parent 324ebd84af
commit 77b1b3520f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,6 +79,15 @@ php_ppa_{{ state }}:
{% if use_scl_repo and grains['os'] == 'CentOS' %} {% if use_scl_repo and grains['os'] == 'CentOS' %}
php_centos_scl_enable_{{ state }}: php_centos_scl_enable_{{ state }}:
pkg.installed: pkg.installed:
- name: centos-release-scl
{% elif use_scl_repo and grains['os'] == 'RedHat' %}
php_redhat_scl_enable_{{ state }}:
cmd.run:
- name: yum-config-manager --enable rhel-server-rhscl-{{ grains['osmajorrelease'] }}-rpms
{% endif %}
{% endif %}
php_install_{{ state }}:
pkg.installed: pkg.installed:
- name: {{ state }} - name: {{ state }}
- pkgs: {{ pkgs|json() }} - pkgs: {{ pkgs|json() }}