seafile_ynh/conf/remove_sso_conf.py

10 lines
325 B
Python
Raw Normal View History

import json
with open("/etc/ssowat/conf.json.persistent", "r") 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") as jsonFile:
2017-05-26 12:36:04 +02:00
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))