forked from ISTI-ansible-roles/ansible-roles
Fix the apt tasks.
This commit is contained in:
parent
c5dd7a0661
commit
34926ad305
|
@ -11,13 +11,11 @@
|
||||||
tags: [ 'php', 'php_ppa' ]
|
tags: [ 'php', 'php_ppa' ]
|
||||||
|
|
||||||
- name: Install the php-fpm package
|
- name: Install the php-fpm package
|
||||||
apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=3600
|
apt: pkg={{ php_fpm_packages }} state=present update_cache=yes cache_valid_time=3600
|
||||||
with_items: '{{ php_fpm_packages }}'
|
|
||||||
tags: php
|
tags: php
|
||||||
|
|
||||||
- name: Install additional php packages
|
- name: Install additional php packages
|
||||||
apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=3600
|
apt: pkg={{ php_additional_packages | default([]) }} state=present update_cache=yes cache_valid_time=3600
|
||||||
with_items: '{{ php_additional_packages | default([]) }}'
|
|
||||||
tags: php
|
tags: php
|
||||||
|
|
||||||
- name: Set the timezone if we have one
|
- name: Set the timezone if we have one
|
||||||
|
|
Loading…
Reference in New Issue