12 lines
212 B
YAML
12 lines
212 B
YAML
---
|
|
- hosts:
|
|
tasks:
|
|
- name: Recuperation dokuwiki
|
|
get_url:
|
|
url: http://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz
|
|
dest: /var/www/html
|
|
remote_src: yes
|
|
|
|
tar xvfz dokuwiki-stable.tgz
|
|
|