mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
Fix add_sso_conf script argument
This commit is contained in:
parent
5187f8838a
commit
8ce2d639e3
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
import json
|
||||
import sys
|
||||
|
||||
server_name = sys.argv[1]
|
||||
domain = sys.argv[2]
|
||||
domain = sys.argv[1]
|
||||
server_name = sys.argv[2]
|
||||
|
||||
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
|
||||
data = json.load(jsonFile)
|
||||
|
|
Loading…
Reference in a new issue