1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 19:22:24 +00:00

Create install.yml

correct archive filename
This commit is contained in:
Jerry Vonau 2017-06-15 14:43:28 -05:00 committed by georgejhunt
parent 0bbaa5f156
commit 5b72b5b84c

View file

@ -5,10 +5,10 @@
- download2
- name: Copy it to permanent location /library
unarchive: src={{ downloads_dir }}/{{ dokuwiki_version }} dest=/library creates=/library/dokuwiki-{{ dokuwiki_version }}/VERSION
unarchive: src={{ downloads_dir }}/{{ dokuwiki_version }} dest=/library creates=/library/{{ dokuwiki_version }}/VERSION
- name: Symlink /library/dokuwiki* to /library/dokuwiki
shell: if [ ! -d /library/dokuwiki ]; then ln -sf /library/dokuwiki-{{ dokuwiki_version }} /library/dokuwiki; fi
shell: if [ ! -d /library/dokuwiki ]; then ln -sf /library/{{ dokuwiki_version }} /library/dokuwiki; fi
- name: Install config file for dokuwiki in Apache
template: src=dokuwiki.conf.j2 dest=/etc/{{ apache_config_dir }}/dokuwiki.conf