ansible-role-php/tasks/setup-Debian.yml

11 lines
227 B
YAML
Raw Normal View History

---
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=86400
2014-11-20 21:22:46 +01:00
- name: Ensure PHP packages are installed.
apt:
name: "{{ item }}"
state: installed
with_items: php_packages
notify: restart webserver