mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-08 19:00:18 +01:00
Added php-twig-ctwig package for CentOS 7 PHP7
This commit is contained in:
parent
046d346a6e
commit
e8ba3a07a7
2 changed files with 7 additions and 1 deletions
|
@ -101,7 +101,6 @@ php_packages:
|
||||||
- php-pdo
|
- php-pdo
|
||||||
- php-pear
|
- php-pear
|
||||||
- php-pecl-apcu
|
- php-pecl-apcu
|
||||||
- php-twig-ctwig
|
|
||||||
- php-xml
|
- php-xml
|
||||||
- php-xmlrpc
|
- php-xmlrpc
|
||||||
- php-pecl-uploadprogress
|
- php-pecl-uploadprogress
|
||||||
|
|
|
@ -6,3 +6,10 @@
|
||||||
enablerepo: "{{ php_enablerepo }}"
|
enablerepo: "{{ php_enablerepo }}"
|
||||||
with_items: "{{ php_packages }}"
|
with_items: "{{ php_packages }}"
|
||||||
notify: restart webserver
|
notify: restart webserver
|
||||||
|
|
||||||
|
- name: Ensure PHP twigc package is installed.
|
||||||
|
yum:
|
||||||
|
name: "php-twig-ctwig"
|
||||||
|
state: "installed"
|
||||||
|
enablerepo: "remi"
|
||||||
|
notify: restart webserver
|
||||||
|
|
Loading…
Reference in a new issue