costum lookup plugin test
This commit is contained in:
11
plugins/inventory/td_assetmgmt.py
Normal file
11
plugins/inventory/td_assetmgmt.py
Normal file
@ -0,0 +1,11 @@
|
||||
from ansible.plugins.inventory import BaseFileInventoryPlugin
|
||||
|
||||
class InventoryModule(BaseFileInventoryPlugin):
|
||||
|
||||
NAME = 'td_assetmgmt'
|
||||
|
||||
def parse(self, inventory, loader, path, cache=True):
|
||||
|
||||
super(InventoryModule, self).parse(inventory, loader, path, cache)
|
||||
|
||||
self.inventory.add_host('boi')
|
||||
Reference in New Issue
Block a user