diff --git a/conf/remove_sso_conf.py b/conf/remove_sso_conf.py index ff59377..d3f27c1 100644 --- a/conf/remove_sso_conf.py +++ b/conf/remove_sso_conf.py @@ -2,8 +2,8 @@ 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") + data["skipped_urls"].remove("/seafhttp") + data["skipped_urls"].remove("/seafdav") with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile: - jsonFile.write(json.dumps(data, indent=4, sort_keys=True)) \ No newline at end of file + jsonFile.write(json.dumps(data, indent=4, sort_keys=True))