class Librarian::Ansible::Action::Install

Private Instance Methods

create_install_path() click to toggle source
# File lib/librarian/ansible/action/install.rb, line 10
def create_install_path
  install_path.rmtree if install_path.exist? && destructive?
  install_path.mkpath
end
destructive?() click to toggle source
# File lib/librarian/ansible/action/install.rb, line 15
def destructive?
  environment.config_db.local['destructive'] == 'true'
end