You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- hosts: wiki
|
|
remote_user: root
|
|
tasks:
|
|
- name: ensure that php5 is at the latest versions
|
|
apt: name={{ item }} state=latest
|
|
with-items:
|
|
- php5-cgi
|
|
- php5-gd
|
|
- name: ensure that dokuwiki is at the latest version
|
|
apt: name=dokuwiki state=latest
|
|
notify:
|
|
- restart nginx
|
|
roles:
|
|
- role: nginx
|
|
configuration_file: 'templates/dokuwiki-nginx.conf'
|
|
dest: 'dokuwiki'
|