Include DOMAIN directly in HOST envvar for update-conf.sh
This commit is contained in:
parent
67f71697fb
commit
4989d2f87f
@ -169,7 +169,6 @@ def update_app_config(app_name=None):
|
|||||||
env['VOLUMES_DIR'] = spoc_config.VOLUMES_DIR
|
env['VOLUMES_DIR'] = spoc_config.VOLUMES_DIR
|
||||||
env['APPS_DIR'] = spoc_config.APPS_DIR
|
env['APPS_DIR'] = spoc_config.APPS_DIR
|
||||||
env['LOG_DIR'] = spoc_config.LOG_DIR
|
env['LOG_DIR'] = spoc_config.LOG_DIR
|
||||||
env['DOMAIN'] = host['domain']
|
|
||||||
env['PORT'] = host['port']
|
env['PORT'] = host['port']
|
||||||
env['EMAIL'] = common['email']
|
env['EMAIL'] = common['email']
|
||||||
env['GMAPS_API_KEY'] = common['gmaps-api-key']
|
env['GMAPS_API_KEY'] = common['gmaps-api-key']
|
||||||
@ -177,7 +176,7 @@ def update_app_config(app_name=None):
|
|||||||
for app_name in app_names:
|
for app_name in app_names:
|
||||||
install_dir = os.path.join(spoc_config.APPS_DIR, app_name, 'install')
|
install_dir = os.path.join(spoc_config.APPS_DIR, app_name, 'install')
|
||||||
script_path = os.path.join(install_dir, 'update-conf.sh')
|
script_path = os.path.join(install_dir, 'update-conf.sh')
|
||||||
env['HOST'] = apps[app_name]['host']
|
env['HOST'] = f'{apps[app_name]["host"]}.{host["domain"]}'
|
||||||
try:
|
try:
|
||||||
subprocess.run(script_path, cwd=install_dir, env=env)
|
subprocess.run(script_path, cwd=install_dir, env=env)
|
||||||
except:
|
except:
|
||||||
|
Loading…
Reference in New Issue
Block a user