fix python-fmn to python2-fmn

Signed-off-by: Jeremy Cline <jeremy@jcline.org>
This commit is contained in:
Jeremy Cline 2017-05-15 21:16:15 +00:00
parent dc3150567f
commit 4233f7536b
3 changed files with 7 additions and 3 deletions

View file

@ -15,7 +15,7 @@
command: yum clean all {%if testing%} --enablerepo=infrastructure-testing {%endif%} command: yum clean all {%if testing%} --enablerepo=infrastructure-testing {%endif%}
check_mode: no check_mode: no
- name: yum update FMN packages from main repo - name: yum update FMN packages from main repo
yum: name="python-fmn*" state=latest yum: name="python-fmn-*" state=latest
when: not testing when: not testing
- name: yum update FMN packages from testing repo - name: yum update FMN packages from testing repo
yum: pkg={{ item }} state=latest enablerepo=infrastructure-testing yum: pkg={{ item }} state=latest enablerepo=infrastructure-testing

View file

@ -2,12 +2,14 @@
# Configuration for the notifications consumer # Configuration for the notifications consumer
- name: remove new fmn - name: remove new fmn
yum: pkg=python-fmn state=absent yum: pkg=python2-fmn state=absent
- name: install needed packages - name: install needed packages
yum: pkg={{ item }} state=present yum: pkg={{ item }} state=present
with_items: with_items:
- python-fmn-consumer - python-fmn-consumer
- python-fmn-lib
- python-fmn-rules
- python-psycopg2 - python-psycopg2
- libsemanage-python - libsemanage-python
# Needed to produce nice long emails about koji builds # Needed to produce nice long emails about koji builds

View file

@ -2,12 +2,14 @@
# Configuration for the Fedora Notifications webapp # Configuration for the Fedora Notifications webapp
- name: remove new fmn - name: remove new fmn
yum: pkg=python-fmn state=absent yum: pkg=python2-fmn state=absent
- name: install needed packages - name: install needed packages
yum: pkg={{ item }} state=present yum: pkg={{ item }} state=present
with_items: with_items:
- python-fmn-web - python-fmn-web
- python-fmn-lib
- python-fmn-rules
- python-psycopg2 - python-psycopg2
- libsemanage-python - libsemanage-python
- python-memcached - python-memcached