2017-07-21 14:56:41 +02:00
|
|
|
import json
|
|
|
|
|
2018-03-09 20:37:26 +01:00
|
|
|
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
|
2017-07-21 14:56:41 +02:00
|
|
|
data = json.load(jsonFile)
|
|
|
|
data["unprotected_urls"].remove("/seafhttp")
|
|
|
|
data["unprotected_urls"].remove("/seafdav")
|
|
|
|
if "skipped_urls" in data:
|
|
|
|
data["skipped_urls"].append("/seafhttp")
|
|
|
|
else:
|
|
|
|
data["skipped_urls"] = ["/seafhttp"]
|
|
|
|
data["skipped_urls"].append("/seafdav")
|
|
|
|
|
2018-03-09 20:37:26 +01:00
|
|
|
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
|
2017-07-21 14:56:41 +02:00
|
|
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|