Class: Shelter::CLI::Command::Ansible
- Inherits:
-
Thor
- Object
- Thor
- Shelter::CLI::Command::Ansible
- Defined in:
- lib/cli/command/ansible.rb
Overview
Ansible subcommand for Shelter
Instance Method Summary collapse
-
#update ⇒ Object
Calls Ansible with the ‘configuration.yaml` playbook.
Instance Method Details
#update ⇒ Object
Calls Ansible with the ‘configuration.yaml` playbook
25 26 27 28 29 30 31 32 33 |
# File 'lib/cli/command/ansible.rb', line 25 def update ansible_execute( 'configuration', tags: [:only], skip: [:skip], limit: [:limit], inventory: [:inventory] ) end |