Method: ChefApply::Action::InstallChef#perform_remote_install

Defined in:
lib/chef_apply/action/install_chef.rb

#perform_remote_installObject

Raises:

  • (NotImplementedError)


51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/chef_apply/action/install_chef.rb', line 51

def perform_remote_install
  # TODO BOOTSTRAP - we'll need to implement this for both platforms
  # require "mixlib/install"
  # installer = Mixlib::Install.new({
  #   platform: "windows",/etc -
  #   product_name: "chef",
  #   channel: :stable,
  #   shell_type: :ps1,
  #   version: "13",
  # })
  # target_host.run_command! installer.install_command
  raise NotImplementedError
end