mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 08:19:04 +00:00
16 lines
243 B
Python
16 lines
243 B
Python
import ansible_runner
|
|
|
|
|
|
class AnsibleInventory:
|
|
def __init__(self, assets, account=None, ansible_connection='ssh'):
|
|
self.assets = assets
|
|
self.account = account
|
|
|
|
|
|
class AdHocRunner:
|
|
pass
|
|
|
|
|
|
class PlaybookRunner:
|
|
pass
|