diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-10-28 18:47:10 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-10-28 18:47:10 +0100 |
commit | 5e72af08d3b98b08167595b1d0ceb9d0a75c7375 (patch) | |
tree | 3f838be05983b77f78d4760ce7f85f367f7ca693 | |
parent | c0a01be908b259918865f4dd4c816f61cf6119ae (diff) |
ikiwiki: Also install Authen::Passphrase.
-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 2b7a11b..708f2a1 100644 --- a/roles/wiki/tasks/main.yml +++ b/roles/wiki/tasks/main.yml @@ -1,24 +1,25 @@ - name: Install ikiwiki apt: pkg={{ item }} with_items: - ikiwiki + - libauthen-passphrase-perl - highlight-common - libhighlight-perl - libimage-magick-perl - libmail-sendmail-perl - libnet-dns-sec-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 |