Sha256: cb72d3ba0ee604fa7a21b4e69136a0f50e6304bb778f639d3982b516701906e4

Contents?: true

Size: 738 Bytes

Versions: 6

Compression:

Stored size: 738 Bytes

Contents

require 'vagrant'

module VagrantPlugins
  module GuestPhoton
    class Plugin < Vagrant.plugin('2')
      name 'VMware Photon guest'
      description 'VMware Photon guest support.'

      guest('photon', 'linux') do
        require File.expand_path("../guest", __FILE__)
        Guest
      end

      guest_capability('photon', 'change_host_name') do
        require_relative 'cap/change_host_name'
        Cap::ChangeHostName
      end

      guest_capability('photon', 'configure_networks') do
        require_relative 'cap/configure_networks'
        Cap::ConfigureNetworks
      end

      guest_capability('photon', 'docker_daemon_running') do
        require_relative 'cap/docker'
        Cap::Docker
      end
    end
  end
end

Version data entries

6 entries across 3 versions & 2 rubygems

Version Path
vagrant-unbundled-1.8.1.2 plugins/guests/photon/plugin.rb
vagrant-unbundled-1.8.1.1 plugins/guests/photon/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/guests/photon/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/guests/photon/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/guests/photon/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/guests/photon/plugin.rb