mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-09 08:13:21 +08:00
21 lines
694 B
Python
21 lines
694 B
Python
import os
|
|
import sys
|
|
|
|
import pdc_client
|
|
|
|
servername, token, variant_uid = sys.argv[-3], sys.argv[-2], sys.argv[-1]
|
|
|
|
if os.path.basename(__file__) in (servername, token, variant_uid,):
|
|
raise ValueError("Provide a PDC server name defined in /etc/pdc.d/ and a token")
|
|
|
|
print("Connecting to PDC server %r with token %r" % (servername, token))
|
|
pdc = pdc_client.PDCClient(servername, token=token)
|
|
|
|
print("Querying for %r to see if it is inactive" % variant_uid)
|
|
obj = pdc['unreleasedvariants'][variant_uid]()
|
|
assert obj['active'] is False, obj['active']
|
|
|
|
print("Submitting PATCH to activate.")
|
|
pdc['unreleasedvariants'][variant_uid] += {'variant_uid': variant_uid, 'active': True}
|
|
print("Done.")
|