1
0
Fork 0
forked from infra/ansible

(re)add pager app. Might be handy at some point.

This commit is contained in:
Kevin Fenzi 2014-07-28 20:29:21 +00:00
commit c0ec391612
3 changed files with 16 additions and 0 deletions

View file

@ -51,6 +51,7 @@
- mirrormanager/frontend
- freemedia
- sudo
- pager_server
tasks:
- include: "{{ tasks }}/yumrepos.yml"

View file

@ -0,0 +1 @@
ScriptAlias /pager /srv/web/pager.py

View file

@ -0,0 +1,14 @@
---
- name: setup pager app config
copy: src=pager-app.conf dest=/etc/httpd/conf.d/pager-app.conf mode=644
notify:
- restart httpd
tags:
- config
- pager_server
- name: install pager app
copy: src=pager.py dest=/srv/web/pager.py mode=644
tags:
- config
- pager_server