mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
86de26ec2d
Former-commit-id: f532ecd7b6
9 lines
No EOL
332 B
Python
9 lines
No EOL
332 B
Python
import json
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "r") as jsonFile:
|
|
data = json.load(jsonFile)
|
|
data["unprotected_urls"].remove("/seafhttp")
|
|
data["unprotected_urls"].remove("/seafdav")
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile:
|
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True)) |