Minor changes

This commit is contained in:
Loic Guegan 2023-10-26 19:16:14 +02:00
parent 2d46fcf955
commit b87f4be0bd

View file

@ -15,19 +15,27 @@ class Config:
"ip4_ignore": ["10.0.0.5", "10.0.0.1"],
},
"plugins": { "ls": "ls -al" },
"timeout": 0.5
"timeout": 0.5,
"ssh_key_path": ""
}
SCHEMA_CONFIG = {
"type": "object",
"properties": {
"timeout": {"type": "number"},
"plugins": {"type": "object"},
"ssh_key_path": {"type": "string"},
"cluster": {"type": "object", "properties":{
"ip4_from": {"type": "string"},
"ip4_to": {"type": "string"},
"ip4_ignore": {"type": "array", "items":{"type": "string"}}
}}
}
},
"required":[
"timeout",
"plugins",
"ssh_key_path",
"cluster"
]
}
def __init__(self):