class Shelter::CLI::Command::Ansible
Public Instance Methods
update()
click to toggle source
Calls Ansible
with the `configuration.yaml` playbook
# File lib/cli/command/ansible.rb 25 def update 26 ansible_execute( 27 'configuration', 28 tags: options[:only], 29 skip: options[:skip], 30 limit: options[:limit], 31 inventory: options[:inventory] 32 ) 33 end