mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
621 B
38 lines
621 B
# -*- coding: utf-8 -*- |
|
# |
|
|
|
UPDATE_ASSETS_HARDWARE_TASKS = [ |
|
{ |
|
'name': "setup", |
|
'action': { |
|
'module': 'setup' |
|
} |
|
} |
|
] |
|
|
|
ADMIN_USER_CONN_CACHE_KEY = "ADMIN_USER_CONN_{}" |
|
TEST_ADMIN_USER_CONN_TASKS = [ |
|
{ |
|
"name": "ping", |
|
"action": { |
|
"module": "ping", |
|
} |
|
} |
|
] |
|
|
|
ASSET_ADMIN_CONN_CACHE_KEY = "ASSET_ADMIN_USER_CONN_{}" |
|
|
|
SYSTEM_USER_CONN_CACHE_KEY = "SYSTEM_USER_CONN_{}" |
|
TEST_SYSTEM_USER_CONN_TASKS = [ |
|
{ |
|
"name": "ping", |
|
"action": { |
|
"module": "ping", |
|
} |
|
} |
|
] |
|
|
|
TASK_OPTIONS = { |
|
'timeout': 10, |
|
'forks': 10, |
|
}
|
|
|