Sha256: b5b45e7f3dd98af50ecad15204dddf550a6d1bad541a03304f6e7458a37a7747

Contents?: true

Size: 662 Bytes

Versions: 3

Compression:

Stored size: 662 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module Ansible
    module Errors
      class AnsibleError < Vagrant::Errors::VagrantError
        error_namespace("vagrant.provisioners.ansible.errors")
      end

      class AnsibleCommandFailed < AnsibleError
        error_key(:ansible_command_failed)
      end

      class AnsibleNotFoundOnHost < AnsibleError
        error_key(:ansible_not_found_on_host)
      end

      class AnsibleNotFoundOnGuest < AnsibleError
        error_key(:ansible_not_found_on_guest)
      end

      class AnsibleVersionNotFoundOnGuest < AnsibleError
        error_key(:ansible_version_not_found_on_guest)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
vagrant-ansible-fixed-0.1.0 lib/errors.rb
vagrant-unbundled-1.8.1.2 plugins/provisioners/ansible/errors.rb
vagrant-unbundled-1.8.1.1 plugins/provisioners/ansible/errors.rb