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/remove_sso_conf.py

9 lines
331 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)
2019-01-04 19:47:57 +01:00
data["protected_urls"].remove("__DOMAIN____PATH__/admin")
2019-01-04 16:15:48 +01:00
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))