Hotfix alembic for bodhi2/backend to use our forward-compat webob package on epel7.

This commit is contained in:
Ralph Bean
2015-09-02 18:32:19 +00:00
parent 7f78457fde
commit 8fdc92f3ac
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/python2
# NOTE - we hotfix this with ansible so we can do alembic with a forward-compat
# el7 package for webob. -- threebean
__requires__ = __main__.__requires__ = ['WebOb>=1.4.1', 'alembic']
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(load_entry_point('alembic', 'console_scripts', 'alembic')())

View File

@@ -32,6 +32,12 @@
- packages
- bodhi
- name: hotfix /usr/bin/alembic to use our webob forward compat package
copy: src=alembic dest=/usr/bin/alembic
tags:
- hotfix
- bodhi
- name: add masher group
group: name=masher gid=751 system=yes state=present
tags: