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.
22 lines
647 B
22 lines
647 B
2 years ago
|
from common.utils import get_logger
|
||
|
from accounts.const import AutomationTypes
|
||
|
from assets.automations.ping_gateway.manager import PingGatewayManager
|
||
|
|
||
|
logger = get_logger(__name__)
|
||
|
|
||
|
|
||
|
class VerifyGatewayAccountManager(PingGatewayManager):
|
||
|
|
||
|
@classmethod
|
||
|
def method_type(cls):
|
||
|
return AutomationTypes.verify_gateway_account
|
||
|
|
||
|
@staticmethod
|
||
|
def before_runner_start():
|
||
|
logger.info(">>> 开始执行测试网关账号可连接性任务")
|
||
|
|
||
|
def get_accounts(self, gateway):
|
||
|
usernames = self.execution.snapshot['accounts']
|
||
|
accounts = gateway.accounts.filter(username__in=usernames)
|
||
|
return accounts
|