61 lines
1.4 KiB
Ruby
61 lines
1.4 KiB
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestSmartos
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "SmartOS guest."
|
|
description "SmartOS guest support."
|
|
|
|
config("smartos") do
|
|
require File.expand_path("../config", __FILE__)
|
|
Config
|
|
end
|
|
|
|
guest("smartos") do
|
|
require File.expand_path("../guest", __FILE__)
|
|
Guest
|
|
end
|
|
|
|
guest_capability("smartos", "change_host_name") do
|
|
require_relative "cap/change_host_name"
|
|
Cap::ChangeHostName
|
|
end
|
|
|
|
guest_capability("smartos", "configure_networks") do
|
|
require_relative "cap/configure_networks"
|
|
Cap::ConfigureNetworks
|
|
end
|
|
|
|
guest_capability("smartos", "halt") do
|
|
require_relative "cap/halt"
|
|
Cap::Halt
|
|
end
|
|
|
|
guest_capability("smartos", "mount_nfs_folder") do
|
|
require_relative "cap/mount_nfs"
|
|
Cap::MountNFS
|
|
end
|
|
|
|
guest_capability("smartos", "rsync_installed") do
|
|
require_relative "cap/rsync"
|
|
Cap::RSync
|
|
end
|
|
|
|
guest_capability("smartos", "rsync_command") do
|
|
require_relative "cap/rsync"
|
|
Cap::RSync
|
|
end
|
|
|
|
guest_capability("smartos", "rsync_post") do
|
|
require_relative "cap/rsync"
|
|
Cap::RSync
|
|
end
|
|
|
|
guest_capability("smartos", "rsync_pre") do
|
|
require_relative "cap/rsync"
|
|
Cap::RSync
|
|
end
|
|
end
|
|
end
|
|
end
|