mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix enum syntax
This commit is contained in:
parent
a899102efc
commit
375b7d53b1
1 changed files with 4 additions and 2 deletions
|
@ -39,8 +39,10 @@ DEFAULTS = OrderedDict([
|
|||
("security.password.admin.strength", {"type": "int", "default": 1}),
|
||||
("security.password.user.strength", {"type": "int", "default": 1}),
|
||||
("service.ssh.allow_deprecated_dsa_hostkey", {"type": "bool", "default": False}),
|
||||
("service.ssh.ciphers.compatibility", {"type": "enum", "choices": "intermediate", "modern"}),
|
||||
("security.ciphers.compatibility", {"type": "enum", "choices": "intermediate", "modern"}),
|
||||
("service.ssh.ciphers.compatibility", {"type": "enum", "default": "modern",
|
||||
"choices": ["intermediate", "modern"]}),
|
||||
("security.ciphers.compatibility", {"type": "enum", "default": "intermediate",
|
||||
"choices": ["intermediate", "modern"]}),
|
||||
])
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue