Daniel Poggenpohl 3ed2489c4a #11758
- removed superfluous cap/shell_expand_guest_path
- solaris11 guest_capability for shell_expand_guest_path now directly returns the linux capability class
2020-07-11 00:29:44 +02:00

40 lines
996 B
Ruby

# A general Vagrant system implementation for "solaris 11".
#
# Contributed by Jan Thomas Moldung <janth@moldung.no>
require "vagrant"
module VagrantPlugins
module GuestSolaris11
class Plugin < Vagrant.plugin("2")
name "Solaris 11 guest."
description "Solaris 11 guest support."
guest(:solaris11, :solaris) do
require_relative "guest"
Guest
end
config(:solaris11) do
require_relative "config"
Config
end
guest_capability(:solaris11, :change_host_name) do
require_relative "cap/change_host_name"
Cap::ChangeHostName
end
guest_capability(:solaris11, :configure_networks) do
require_relative "cap/configure_networks"
Cap::ConfigureNetworks
end
guest_capability(:solaris11, :shell_expand_guest_path) do
require_relative "../linux/cap/shell_expand_guest_path"
VagrantPlugins::GuestLinux::Cap::ShellExpandGuestPath
end
end
end
end