diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-06-05 18:32:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:54:31 +0200 |
commit | db83eb05309920bf1b3a139fe953882200878b46 (patch) | |
tree | dbf5e98af7488e3b34bf55cd0a19a552a4ef0edf /roles/wiki/tasks | |
parent | 47bc2f8d305f6d14b7f61334bf328447b4f7319d (diff) |
wiki: enable comments in the tracker.
Diffstat (limited to 'roles/wiki/tasks')
-rw-r--r-- | roles/wiki/tasks/main.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/wiki/tasks/main.yml b/roles/wiki/tasks/main.yml index 8622ebd..c8a0d0f 100644 --- a/roles/wiki/tasks/main.yml +++ b/roles/wiki/tasks/main.yml @@ -1,26 +1,27 @@ - name: Install ikiwiki apt: pkg={{ item }} with_items: - ikiwiki - highlight-common - libhighlight-perl + - libimage-magick-perl - fcgiwrap - name: Create a user 'ikiwiki' user: name=ikiwiki system=yes home=/var/lib/ikiwiki shell=/usr/sbin/nologin password=! state=present generate_ssh_key=yes ssh_key_comment=ikiwiki@{{ ansible_fqdn }} - name: Add 'www-data' to the group 'ikiwiki' user: name=www-data groups=ikiwiki append=yes - name: Create directory ~ikiwiki/IkiWiki/Plugin file: path=/var/lib/ikiwiki/IkiWiki/Plugin state=directory owner=ikiwiki group=ikiwiki mode=0755 |