2012-04-19 00:38:20 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestLinux
|
2012-11-07 05:14:45 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2012-04-19 00:38:20 +00:00
|
|
|
name "Linux guest."
|
|
|
|
description "Linux guest support."
|
2012-04-19 04:03:03 +00:00
|
|
|
|
2012-05-23 22:57:43 +00:00
|
|
|
guest("linux") do
|
|
|
|
require File.expand_path("../guest", __FILE__)
|
|
|
|
Guest
|
|
|
|
end
|
2013-04-04 06:01:43 +00:00
|
|
|
|
2014-02-26 23:54:53 +00:00
|
|
|
guest_capability("linux", "choose_addressable_ip_addr") do
|
|
|
|
require_relative "cap/choose_addressable_ip_addr"
|
|
|
|
Cap::ChooseAddressableIPAddr
|
|
|
|
end
|
|
|
|
|
2013-04-04 06:33:20 +00:00
|
|
|
guest_capability("linux", "halt") do
|
|
|
|
require_relative "cap/halt"
|
|
|
|
Cap::Halt
|
|
|
|
end
|
|
|
|
|
2014-01-03 19:13:21 +00:00
|
|
|
guest_capability("linux", "insert_public_key") do
|
|
|
|
require_relative "cap/insert_public_key"
|
|
|
|
Cap::InsertPublicKey
|
|
|
|
end
|
|
|
|
|
2013-04-04 06:01:43 +00:00
|
|
|
guest_capability("linux", "shell_expand_guest_path") do
|
|
|
|
require_relative "cap/shell_expand_guest_path"
|
|
|
|
Cap::ShellExpandGuestPath
|
|
|
|
end
|
|
|
|
|
2013-04-04 06:33:20 +00:00
|
|
|
guest_capability("linux", "mount_nfs_folder") do
|
|
|
|
require_relative "cap/mount_nfs"
|
|
|
|
Cap::MountNFS
|
|
|
|
end
|
|
|
|
|
2014-02-26 23:54:53 +00:00
|
|
|
guest_capability("linux", "mount_smb_shared_folder") do
|
|
|
|
require_relative "cap/mount_smb_shared_folder"
|
|
|
|
Cap::MountSMBSharedFolder
|
|
|
|
end
|
|
|
|
|
2013-04-04 06:01:43 +00:00
|
|
|
guest_capability("linux", "mount_virtualbox_shared_folder") do
|
|
|
|
require_relative "cap/mount_virtualbox_shared_folder"
|
|
|
|
Cap::MountVirtualBoxSharedFolder
|
|
|
|
end
|
2013-04-08 22:30:41 +00:00
|
|
|
|
2014-01-10 00:58:20 +00:00
|
|
|
guest_capability("linux", "nfs_client_installed") do
|
|
|
|
require_relative "cap/nfs_client"
|
|
|
|
Cap::NFSClient
|
|
|
|
end
|
|
|
|
|
2014-04-17 22:05:50 +00:00
|
|
|
# For the Docker provider
|
|
|
|
guest_capability("linux", "port_open_check") do
|
|
|
|
require_relative "cap/port"
|
|
|
|
Cap::Port
|
|
|
|
end
|
|
|
|
|
2013-04-08 22:30:41 +00:00
|
|
|
guest_capability("linux", "read_ip_address") do
|
|
|
|
require_relative "cap/read_ip_address"
|
|
|
|
Cap::ReadIPAddress
|
|
|
|
end
|
2014-01-11 01:51:44 +00:00
|
|
|
|
2014-10-24 16:58:18 +00:00
|
|
|
guest_capability("linux", "remove_public_key") do
|
|
|
|
require_relative "cap/remove_public_key"
|
|
|
|
Cap::RemovePublicKey
|
|
|
|
end
|
|
|
|
|
2014-01-31 03:26:43 +00:00
|
|
|
guest_capability("linux", "rsync_installed") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
guest_capability("linux", "rsync_command") do
|
2014-03-13 01:43:59 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
guest_capability("linux", "rsync_post") do
|
2014-01-11 01:51:44 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
2014-04-16 21:59:23 +00:00
|
|
|
|
2014-05-07 01:40:55 +00:00
|
|
|
guest_capability("linux", "rsync_pre") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-04-16 21:59:23 +00:00
|
|
|
guest_capability("linux", "unmount_virtualbox_shared_folder") do
|
|
|
|
require_relative "cap/mount_virtualbox_shared_folder"
|
|
|
|
Cap::MountVirtualBoxSharedFolder
|
|
|
|
end
|
2012-04-19 00:38:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|