seafile_ynh/conf/add_sso_conf_webdav.py
2017-07-21 14:56:41 +02:00

8 lines
No EOL
279 B
Python

import json
with open("/etc/ssowat/conf.json.persistent", "r") as jsonFile:
data = json.load(jsonFile)
data["skipped_urls"].append("/seafdav")
with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile:
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))