Class: VagrantPlugins::Babushka::Provisioner::CurlMissingError

Inherits:
Vagrant::Errors::VagrantError
  • Object
show all
Defined in:
lib/vagrant-babushka/provisioner.rb

Overview

Exception raised if cURL isn’t on the VM and can’t be installed

Instance Method Summary collapse

Instance Method Details

#error_messageObject



11
12
13
14
15
16
17
18
19
# File 'lib/vagrant-babushka/provisioner.rb', line 11

def error_message
  <<-END.gsub(/ {8}|\n\Z/, "")
    cURL couldn't be found on the VM, and this plugin doesn't
    know how to install it on the guest OS.

    Try installing it manually, or consider adding the
    functionality to the plugin and opening a pull request.
  END
end