summaryrefslogtreecommitdiffstats
path: root/roles/lists
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-07-12 11:31:18 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-07-12 11:31:18 +0200
commitb752a80935941eb07e7700d8cbab567d1a3f39c4 (patch)
tree3c3e907dc5445ec519bf8fc5daaf1ef12379eb69 /roles/lists
parent99682f43e687552c0c536ed044afb7331d90a01d (diff)
Rename 'mysql_user' plugin to 'mysql_user2' to avoid name collisions.
Diffstat (limited to 'roles/lists')
-rw-r--r--roles/lists/tasks/sympa.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/lists/tasks/sympa.yml b/roles/lists/tasks/sympa.yml
index 4505f54..00e5d9c 100644
--- a/roles/lists/tasks/sympa.yml
+++ b/roles/lists/tasks/sympa.yml
@@ -1,28 +1,28 @@
- apt: pkg={{ item }} install_recommends=no
with_items:
- mysql-server
- sympa
- name: Make the 'sympa' MySQL user use auth_socket
- mysql_user: name=sympa password= auth_plugin=auth_socket
- state=present
+ mysql_user2: name=sympa password= auth_plugin=auth_socket
+ state=present
# XXX We want to change the retun-path for sendpasswd notices from
# 'sympa-request@$robot' to 'noreply@fripost.org'.
# * /usr/lib/cgi-bin/sympa/wwsympa.fcgi
# do_requestpasswd, do_subrequest: add $param->{'return_path'}='noreply@fripost.org';
# * List::send_global_file
# $data->{'return_path'} //= &Conf::get_robot_conf($robot, 'request');
# See #787946.
- name: Configure Sympa
copy: src=etc/sympa/{{ item }}
dest=/etc/sympa/{{ item }}
owner=root group=sympa
mode=0644
with_items:
- sympa.conf
- wwsympa.conf
- topics.conf
register: r1
notify:
- Restart Sympa