From ae3fd98fcfabdb121211e9fd23af088173fd2340 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: May 16 2016 18:02:07 +0000 Subject: top level livemedia tasks are noarch (patch by dgilmore) --- diff --git a/hub/kojihub.py b/hub/kojihub.py index e29f382..4a9c9ba 100644 --- a/hub/kojihub.py +++ b/hub/kojihub.py @@ -8110,7 +8110,10 @@ class RootExports(object): context.session.assertPerm(img_type) taskOpts = {'channel': img_type} - taskOpts['arch'] = arch + if img_type == 'livemedia': + taskOpts['arch'] = 'noarch' + else: + taskOpts['arch'] = arch if priority: if priority < 0: if not context.session.hasPerm('admin'):