From 61a91859f6a03f4b78c1d38ef5f290b7c9ae3997 Mon Sep 17 00:00:00 2001 From: VC Date: Sat, 7 Sep 2019 10:38:30 +0200 Subject: [PATCH] Ajout de FCGI Wrap pour Mailman --- roles/webapps/tasks/fcgiwrap.yml | 9 +++++++++ roles/webapps/tasks/main.yml | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 roles/webapps/tasks/fcgiwrap.yml 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'