installation

in resources/etcd_service.rb [22:35]


  def installation(&block)
    case new_resource.install_method
    when 'auto'
      install = etcd_installation(new_resource.name, &block)
    when 'binary'
      install = etcd_installation_binary(new_resource.name, &block)
    when 'none'
      Chef::Log.info('Skipping Etcd installation. Assuming it was handled previously.')
      return
    end
    install.copy_properties_from new_resource
    install
  end