summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslav Suchý <msuchy@redhat.com>2017-04-12 14:15:41 +0200
committerMiroslav Suchý <msuchy@redhat.com>2017-04-12 14:15:41 +0200
commitf2b186674c2ec2e5bae9b62dc4c1535d043f63c3 (patch)
tree44fa874f0bf3c1fd75ce59dbda957c76517d0823
parentf8e33b70255c5f446c06c6e1f805b008bb536e9b (diff)
downloadansible-f2b186674c2ec2e5bae9b62dc4c1535d043f63c3.tar.gz
ansible-f2b186674c2ec2e5bae9b62dc4c1535d043f63c3.tar.xz
ansible-f2b186674c2ec2e5bae9b62dc4c1535d043f63c3.zip
faf: add names to actions
-rw-r--r--roles/abrt/abrt-local/tasks/main.yml24
1 files changed, 16 insertions, 8 deletions
diff --git a/roles/abrt/abrt-local/tasks/main.yml b/roles/abrt/abrt-local/tasks/main.yml
index b1f3ed6ee..9cd21e853 100644
--- a/roles/abrt/abrt-local/tasks/main.yml
+++ b/roles/abrt/abrt-local/tasks/main.yml
@@ -9,45 +9,53 @@
- include: services.yml
# landing page
-- yum: name=abrt-server-info-page state=latest
+- name: install abrt-server-info-page
+ yum: name=abrt-server-info-page state=latest
-- lineinfile:
+- name: configure ADMINS
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'ADMINS ='
line: ' ADMINS = "infrastructure@lists.fedoraproject.org"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_FAF
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_FAF ='
line: ' MORE_FAF = "https://github.com/abrt/faf/"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_RS
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_RS ='
line: ' MORE_RS = "https://github.com/abrt/retrace-server"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_ABRT
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_ABRT ='
line: ' MORE_ABRT = "https://github.com/abrt/abrt/"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_GABRT
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_GABRT ='
line: ' MORE_GABRT = "https://github.com/abrt/gnome-abrt/"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_LR
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_LR ='
line: ' MORE_LR = "https://github.com/abrt/libreport/"'
notify: restart httpd
-- lineinfile:
+- name: configure MORE_SATYR
+ lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_SATYR ='
line: ' MORE_SATYR = "https://github.com/abrt/satyr/"'