1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/conf/add_sso_conf.py

12 lines
442 B
Python
Raw Normal View History

2019-01-04 16:15:48 +01:00
import json
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
data = json.load(jsonFile)
if "protected_urls" in data:
data["protected_urls"].append("__DOMAIN__/__PATH__/admin")
else:
data["protected_urls"] = ["__DOMAIN__/__PATH__/admin"]
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
2019-01-04 19:25:58 +01:00
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))