On Sun, Nov 30, 2014, 18:39 Kevin Fenzi <kevin@scrye.com> wrote:

We have one user (lsm5) that had a override in python-fedora to map
their bugzilla address to their @fedoraproject.org address. They have
just changed this and want us to remove the override.

We also have currently a locally modified fas2.py file on pkgdb02 with
these overrides, so I'd like to pull it into an ansible hotfix.

The first part of this is adding the hotfix, the second part is the
changes from the stock python-fedora fas2.py file (one override thats
not in the package currently).

+1s?

kevin
--
diff --git a/roles/pkgdb2/tasks/main.yml b/roles/pkgdb2/tasks/main.yml
index 0185c27..7e2c3e0 100644
--- a/roles/pkgdb2/tasks/main.yml
+++ b/roles/pkgdb2/tasks/main.yml
@@ -19,6 +19,12 @@
   tags:
   - packages

+# HOTFIX: adjust bugzilla overrides
+- name: HOTFIX: adjust bugzilla overrides
+  copy: src=fas2.py dest=/usr/lib/python2.7/site-packages/fedora/client/fas2.py
+  tags:
+  - config
+
 - name: copy sundry pkgdb configuration
   template: src={{ item.file }}
             dest={{ item.location }}/{{ item.dest }}

--- roles/pkgdb2/files/fas2.py.orig     2014-11-30 17:33:54.350767000
+0000 +++ roles/pkgdb2/files/fas2.py  2014-11-30 17:32:37.557767000
+0000 @@ -255,6 +255,8 @@
             103551: 'fschwarz@fedoraproject.org',
             # Martin Holec: martix@martix.names
             137561: 'mholec@redhat.com',
+            # John Dulaney: j_dulaney@live.com
+            149140: 'jdulaney@fedoraproject.org',
         }
         # A few people have an email account that is used in
owners.list but # have setup a bugzilla account for their primary
account system email
_______________________________________________
infrastructure mailing list
infrastructure@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/infrastructure


+1