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.
24 lines
717 B
24 lines
717 B
from django.utils.translation import gettext_lazy as _
|
|
|
|
from accounts.const import AutomationTypes
|
|
from assets.automations.ping_gateway.manager import PingGatewayManager
|
|
from common.utils import get_logger
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class VerifyGatewayAccountManager(PingGatewayManager):
|
|
|
|
@classmethod
|
|
def method_type(cls):
|
|
return AutomationTypes.verify_gateway_account
|
|
|
|
@staticmethod
|
|
def before_runner_start():
|
|
logger.info(_(">>> Start executing the task to test gateway account connectivity"))
|
|
|
|
def get_accounts(self, gateway):
|
|
account_ids = self.execution.snapshot['accounts']
|
|
accounts = gateway.accounts.filter(id__in=account_ids)
|
|
return accounts
|