14 lines
224 B
YAML
14 lines
224 B
YAML
---
|
|
|
|
- name: Ensure di-web-landingpage is present
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: latest
|
|
update_cache: yes
|
|
cache_valid_time: 3600
|
|
with_items:
|
|
- "di-web-landingpage"
|
|
notify:
|
|
- restart php7.1-fpm
|
|
|