diff --git a/dokuwiki.yml b/dokuwiki.yml new file mode 100644 index 0000000..4d1e84f --- /dev/null +++ b/dokuwiki.yml @@ -0,0 +1,15 @@ +--- +- hosts: all + tasks: + - name: get and extract archive + ansible.builtin.unarchive: + src: https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz + dest: /var/www/html/ + remote_src: true + owner: apache + - name: symlink + ansible.builtin.file: + src: /var/www/html/dokuwiki-2025-05-14b + dest: /var/www/html/dokuwiki + state: link + owner: apache