mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
12 lines
451 B
Python
12 lines
451 B
Python
import json
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
|
|
data = json.load(jsonFile)
|
|
if "skipped_urls" in data:
|
|
data["skipped_urls"].append("/seafhttp")
|
|
else:
|
|
data["skipped_urls"] = ["/seafhttp"]
|
|
data["skipped_urls"].append("/seafdav")
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
|
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|