2012-04-19 00:38:20 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestFreeBSD
|
2012-11-07 05:14:45 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2012-04-19 00:38:20 +00:00
|
|
|
name "FreeBSD guest"
|
|
|
|
description "FreeBSD guest support."
|
2012-04-19 04:03:03 +00:00
|
|
|
|
2016-06-18 00:16:36 +00:00
|
|
|
guest(:freebsd, :bsd) do
|
2016-06-05 18:06:15 +00:00
|
|
|
require_relative "guest"
|
2012-05-23 22:57:43 +00:00
|
|
|
Guest
|
|
|
|
end
|
2013-04-04 18:56:42 +00:00
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :change_host_name) do
|
2013-04-04 18:56:42 +00:00
|
|
|
require_relative "cap/change_host_name"
|
|
|
|
Cap::ChangeHostName
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :configure_networks) do
|
2013-04-04 18:56:42 +00:00
|
|
|
require_relative "cap/configure_networks"
|
|
|
|
Cap::ConfigureNetworks
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :rsync_install) do
|
2014-01-31 03:26:43 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :rsync_installed) do
|
2014-01-31 03:26:43 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :rsync_command) do
|
2014-04-25 19:00:12 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :rsync_post) do
|
2014-01-31 03:26:43 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
2014-02-03 11:12:49 +00:00
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :rsync_pre) do
|
2014-05-07 01:40:55 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2016-06-17 23:45:20 +00:00
|
|
|
guest_capability(:freebsd, :shell_expand_guest_path) do
|
2014-02-02 20:38:24 +00:00
|
|
|
require_relative "cap/shell_expand_guest_path"
|
|
|
|
Cap::ShellExpandGuestPath
|
|
|
|
end
|
2019-03-08 17:27:53 +00:00
|
|
|
|
|
|
|
guest_capability(:freebsd, :mount_virtualbox_shared_folder) do
|
2019-03-28 05:25:43 +00:00
|
|
|
require_relative "cap/mount_virtualbox_shared_folder"
|
|
|
|
Cap::MountVirtualBoxSharedFolder
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability(:freebsd, :unmount_virtualbox_shared_folder) do
|
|
|
|
require_relative "cap/mount_virtualbox_shared_folder"
|
|
|
|
Cap::MountVirtualBoxSharedFolder
|
2019-03-08 17:27:53 +00:00
|
|
|
end
|
2012-04-19 00:38:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|