Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Inventory to EmbeddedAnsible namespace #14282

Merged
merged 1 commit into from
Mar 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::AutomationManager::InventoryGroup
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::ExternalAutomationManager::InventoryGroup
end
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager < ManageIQ::Provid
require_nested :ConfiguredSystem
require_nested :EventCatcher
require_nested :EventParser
require_nested :Inventory
require_nested :Job
require_nested :Playbook
require_nested :Refresher
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Inventory < ManageIQ::Providers::EmbeddedAutomationManager::InventoryGroup
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class ManageIQ::Providers::EmbeddedAutomationManager::InventoryGroup < ManageIQ::Providers::AutomationManager::InventoryGroup
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class ManageIQ::Providers::ExternalAutomationManager::InventoryGroup < ManageIQ::Providers::AutomationManager::InventoryGroup
end
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module MiqAeMethodService
class MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup
class MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_ExternalAutomationManager_InventoryGroup
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module MiqAeMethodService
class MiqAeServiceManageIQ_Providers_EmbeddedAnsible_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_EmbeddedAutomationManager_InventoryGroup
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module MiqAeMethodService
class MiqAeServiceManageIQ_Providers_EmbeddedAutomationManager_InventoryGroup < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module MiqAeMethodService
class MiqAeServiceManageIQ_Providers_ExternalAutomationManager_InventoryGroup < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup
end
end