Sha256: 8f6ca66dd8df7c424ccf0624283a95cf0f84b77c1aa3cdd9ee7d9eba870f69c4
Contents?: true
Size: 716 Bytes
Versions: 2
Compression:
Stored size: 716 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_relative "guest" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-unbundled-1.8.4.2 | plugins/guests/photon/plugin.rb |
vagrant-unbundled-1.8.4.1 | plugins/guests/photon/plugin.rb |