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
|
|
|
|
2012-05-23 22:57:43 +00:00
|
|
|
guest("freebsd") do
|
|
|
|
require File.expand_path("../guest", __FILE__)
|
|
|
|
Guest
|
|
|
|
end
|
2013-04-04 18:56:42 +00:00
|
|
|
|
|
|
|
guest_capability("freebsd", "change_host_name") do
|
|
|
|
require_relative "cap/change_host_name"
|
|
|
|
Cap::ChangeHostName
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("freebsd", "configure_networks") do
|
|
|
|
require_relative "cap/configure_networks"
|
|
|
|
Cap::ConfigureNetworks
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("freebsd", "halt") do
|
|
|
|
require_relative "cap/halt"
|
|
|
|
Cap::Halt
|
|
|
|
end
|
|
|
|
|
2014-02-04 04:09:29 +00:00
|
|
|
guest_capability("freebsd", "insert_public_key") do
|
|
|
|
require_relative "cap/insert_public_key"
|
|
|
|
Cap::InsertPublicKey
|
|
|
|
end
|
|
|
|
|
2013-04-04 18:56:42 +00:00
|
|
|
guest_capability("freebsd", "mount_nfs_folder") do
|
|
|
|
require_relative "cap/mount_nfs_folder"
|
|
|
|
Cap::MountNFSFolder
|
|
|
|
end
|
2014-02-02 20:38:24 +00:00
|
|
|
|
2014-10-24 17:05:01 +00:00
|
|
|
guest_capability("freebsd", "remove_public_key") do
|
|
|
|
require_relative "cap/remove_public_key"
|
|
|
|
Cap::RemovePublicKey
|
|
|
|
end
|
|
|
|
|
2014-01-31 03:26:43 +00:00
|
|
|
guest_capability("freebsd", "rsync_install") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("freebsd", "rsync_installed") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
guest_capability("freebsd", "rsync_command") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-05-14 01:07:35 +00:00
|
|
|
guest_capability("freebsd", "rsync_pre") do
|
2014-05-07 01:40:55 +00:00
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-02-02 20:38:24 +00:00
|
|
|
guest_capability("freebsd", "shell_expand_guest_path") do
|
|
|
|
require_relative "cap/shell_expand_guest_path"
|
|
|
|
Cap::ShellExpandGuestPath
|
|
|
|
end
|
2012-04-19 00:38:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|