mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 01:41:36 +00:00
16 lines
354 B
Python
16 lines
354 B
Python
import sys
|
|
import json
|
|
import os
|
|
|
|
cfg = json.load(sys.stdin)
|
|
cfg['client_secret'] = os.getenv('client_secret')
|
|
jid = os.getenv('jid')
|
|
cfg['refresh_token'] = os.getenv('refresh_%s' % jid)
|
|
vmtype = os.getenv('VMTYPE')
|
|
if vmtype == 'test':
|
|
out_file = 'oauth2.txt'
|
|
else:
|
|
out_file = 'gam/oauth2.txt'
|
|
with open(out_file, 'w') as f:
|
|
json.dump(cfg, f)
|