diff --git a/roles/webapps/tasks/fcgiwrap.yml b/roles/webapps/tasks/fcgiwrap.yml new file mode 100644 index 0000000..71ed278 --- /dev/null +++ b/roles/webapps/tasks/fcgiwrap.yml @@ -0,0 +1,9 @@ +- name: install fcgiwrap + package: + name: fcgiwrap + state: present + +- name: start fcgiwrap + service: + name: fcgiwrap + state: started diff --git a/roles/webapps/tasks/main.yml b/roles/webapps/tasks/main.yml index bc975f9..0c4a01f 100644 --- a/roles/webapps/tasks/main.yml +++ b/roles/webapps/tasks/main.yml @@ -19,3 +19,6 @@ - name: tootctl for mastodon include_tasks: tootctl.yml when: inventory_hostname == 'ror.dmz.mateu.be' +- name: fcgiwrap for mailman + include_tasks: fcgiwrap.yml + when: inventory_hostname == 'mail.dmz.mateu.be'