feat: 作业中心支持 raw (网络设备使用)

pull/11553/head
Aaron3S 2023-09-13 17:25:05 +08:00
parent 7c973616cd
commit 07da98e438
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ class Modules(models.TextChoices):
mysql = 'mysql', _('MySQL') mysql = 'mysql', _('MySQL')
postgresql = 'postgresql', _('PostgreSQL') postgresql = 'postgresql', _('PostgreSQL')
sqlserver = 'sqlserver', _('SQLServer') sqlserver = 'sqlserver', _('SQLServer')
raw = 'raw', _('Raw')
class JobStatus(models.TextChoices): class JobStatus(models.TextChoices):

View File

@ -64,7 +64,7 @@ class JMSPermedInventory(JMSInventory):
'mysql': ['mysql'], 'mysql': ['mysql'],
'postgresql': ['postgresql'], 'postgresql': ['postgresql'],
'sqlserver': ['sqlserver'], 'sqlserver': ['sqlserver'],
'ssh': ['shell', 'python', 'win_shell'], 'ssh': ['shell', 'python', 'win_shell', 'raw'],
} }
if self.module not in protocol_supported_modules_mapping.get(protocol.name, []): if self.module not in protocol_supported_modules_mapping.get(protocol.name, []):