mirror of https://github.com/jumpserver/jumpserver
fix: Adhoc support mariadb with module of mysql
parent
3383d0f314
commit
2acc84dc69
|
@ -67,6 +67,7 @@ class JMSPermedInventory(JMSInventory):
|
|||
|
||||
protocol_supported_modules_mapping = {
|
||||
'mysql': ['mysql'],
|
||||
'mariadb': ['mysql'],
|
||||
'postgresql': ['postgresql'],
|
||||
'sqlserver': ['sqlserver'],
|
||||
'ssh': ['shell', 'python', 'win_shell', 'raw', 'huawei'],
|
||||
|
@ -77,7 +78,7 @@ class JMSPermedInventory(JMSInventory):
|
|||
host['error'] = "Module {} is not suitable for this asset".format(self.module)
|
||||
return host
|
||||
|
||||
if protocol.name in ('mysql', 'postgresql', 'sqlserver'):
|
||||
if protocol.name in ('mariadb', 'mysql', 'postgresql', 'sqlserver'):
|
||||
host['login_host'] = asset.address
|
||||
host['login_port'] = protocol.port
|
||||
host['login_user'] = account.username
|
||||
|
|
Loading…
Reference in New Issue