Files
fedora-infra_ansible/roles/badges/frontend/tasks/main.yml
Ralph Bean c680e56767 Restore dynamic fedmsg endpoints experiment.
Revert "Hold off on that.."

This reverts commit 9f5fd276e2.
2015-06-16 19:21:50 +00:00

106 lines
2.0 KiB
YAML

---
# Configuration for the tahrir webapp
- name: install needed packages
yum: pkg={{ item }} state=present
with_items:
- python-tahrir
- python-psycopg2
- python-memcached
- python-rdflib
- libsemanage-python
tags:
- packages
- badges
- badges/frontend
- name: copy tahrir app configuration
template: >
src={{ item }} dest="/etc/tahrir/{{ item }}"
owner=tahrir group=tahrir mode=0600
with_items:
- tahrir.ini
tags:
- config
- badges
- badges/frontend
notify:
- restart apache
- name: copy tahrir wsgi script
copy: >
src={{ item }} dest="/usr/share/tahrir/{{ item }}"
owner=apache group=apache mode=0644
with_items:
- tahrir.wsgi
tags:
- config
- badges
- badges/frontend
notify:
- restart apache
- name: copy tahrir httpd config
template: >
src={{ item }} dest="/etc/httpd/conf.d/{{ item }}"
owner=apache group=apache mode=0644
with_items:
- tahrir.conf
tags:
- config
- badges
- badges/frontend
notify:
- restart apache
- name: make badge rst directory
file: >
path=/usr/share/badges/sitedocs
state=directory
owner=root group=root mode=0755
tags:
- config
- assets
- badges
- badges/frontend
- name: copy over all our .rst site docs
copy: >
src={{ item }}
dest=/usr/share/badges/sitedocs
owner=root group=root mode=0644
with_fileglob:
- fedora-sitedocs/*.rst
tags:
- config
- assets
- badges
- badges/frontend
- name: copy over all our badge images
synchronize: >
src=/srv/web/infra/badges/pngs/
dest=/usr/share/badges/pngs/
delete=yes
tags:
- assets
- name: copy over all our badge stls
synchronize: >
src=/srv/web/infra/badges/stls/
dest=/usr/share/badges/stls/
delete=yes
tags:
- assets
- name: ensure selinux lets httpd talk to postgres, memcached, and fedmsg
seboolean: name={{item}} persistent=yes state=yes
with_items:
- httpd_can_network_connect_db
- httpd_can_network_memcache
- httpd_can_network_connect
tags:
- selinux
- badges
- badges/frontend