seafile_ynh/scripts/remove_sso_conf_persistent.py

10 lines
361 B
Python
Raw Normal View History

import json
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
data = json.load(jsonFile)
2017-05-26 12:36:04 +02:00
data["skipped_urls"].remove("/seafhttp")
data["skipped_urls"].remove("/seafdav")
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
2017-05-26 12:36:04 +02:00
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))