class ForemanAnsible::Engine
This engine connects ForemanAnsible
with Foreman core
Dependencies related with the remote execution plugin
Public Class Methods
register_rex_feature()
click to toggle source
# File lib/foreman_ansible/remote_execution.rb, line 17 def self.register_rex_feature RemoteExecutionFeature.register( :ansible_run_host, N_('Run Ansible roles'), :description => N_('Runs an Ansible playbook which contains all'\ ' the roles defined for a host'), :host_action_button => true ) RemoteExecutionFeature.register( :ansible_run_playbook, N_('Run playbook'), :description => N_('Run an Ansible playbook against given hosts'), :provided_inputs => %w[playbook] ) RemoteExecutionFeature.register( :ansible_enable_web_console, N_('Enable web console'), :description => N_('Run an Ansible playbook to enable web console on given hosts'), :host_action_button => true ) RemoteExecutionFeature.register( :ansible_run_capsule_upgrade, N_('Upgrade Capsules on given hosts'), :description => N_('Upgrade Capsules on given Capsule server hosts'), :proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY ) RemoteExecutionFeature.register( :ansible_run_capsule_update, N_('Update Capsules on given hosts'), :description => N_('Update Capsules on given Capsule server hosts'), :proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY ) end