diff options
author | Ralph Bean <rbean@redhat.com> | 2017-08-29 14:36:19 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2017-08-29 14:36:19 +0000 |
commit | 5f907b63db3f95b972e9a78e70368142c4846a1b (patch) | |
tree | 2d08f31ba614e8169721e83043f337ebe1e57350 | |
parent | 5e05399be11abcb75c6038fbaf4170873d1d89b0 (diff) | |
download | ansible-5f907b63db3f95b972e9a78e70368142c4846a1b.tar.gz ansible-5f907b63db3f95b972e9a78e70368142c4846a1b.tar.xz ansible-5f907b63db3f95b972e9a78e70368142c4846a1b.zip |
One more debug statement.
-rw-r--r-- | roles/bodhi2/backend/files/koji-sync-listener.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/bodhi2/backend/files/koji-sync-listener.py b/roles/bodhi2/backend/files/koji-sync-listener.py index 825674d8f..e9baeab73 100644 --- a/roles/bodhi2/backend/files/koji-sync-listener.py +++ b/roles/bodhi2/backend/files/koji-sync-listener.py @@ -19,6 +19,7 @@ def handle(content): body = content.strip('`').strip() body = json.loads(body) package = body['repo'] + print("Operating on {package}".format(package=package)) # XXX If you modify this taglist. Please also modify the other copy in # bodhi2/backend/tasks/main.yml taglist = 'f28 f27 f26 f25 f28-container f27-container f26-container f25-container f28-docker f27-docker f26-docker f25-docker epel7 dist-6E-epel module-package-list' |