2012-04-19 04:23:25 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestOpenBSD
|
2012-11-07 05:14:45 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2012-04-19 04:23:25 +00:00
|
|
|
name "OpenBSD guest"
|
|
|
|
description "OpenBSD guest support."
|
|
|
|
|
2014-01-26 03:17:12 +00:00
|
|
|
guest("openbsd") do
|
2012-05-23 22:57:43 +00:00
|
|
|
require File.expand_path("../guest", __FILE__)
|
|
|
|
Guest
|
|
|
|
end
|
2013-04-04 19:09:40 +00:00
|
|
|
|
2013-08-28 04:12:09 +00:00
|
|
|
guest_capability("openbsd", "change_host_name") do
|
|
|
|
require_relative "cap/change_host_name"
|
|
|
|
Cap::ChangeHostName
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("openbsd", "configure_networks") do
|
|
|
|
require_relative "cap/configure_networks"
|
|
|
|
Cap::ConfigureNetworks
|
|
|
|
end
|
|
|
|
|
2013-04-04 19:09:40 +00:00
|
|
|
guest_capability("openbsd", "halt") do
|
|
|
|
require_relative "cap/halt"
|
|
|
|
Cap::Halt
|
|
|
|
end
|
2013-08-28 04:12:09 +00:00
|
|
|
|
2014-01-28 21:44:59 +00:00
|
|
|
guest_capability("openbsd", "insert_public_key") do
|
|
|
|
require_relative "cap/insert_public_key"
|
|
|
|
Cap::InsertPublicKey
|
|
|
|
end
|
|
|
|
|
2013-08-28 04:12:09 +00:00
|
|
|
guest_capability("openbsd", "mount_nfs_folder") do
|
|
|
|
require_relative "cap/mount_nfs_folder"
|
|
|
|
Cap::MountNFSFolder
|
|
|
|
end
|
2014-02-02 20:38:24 +00:00
|
|
|
|
2014-01-31 03:26:43 +00:00
|
|
|
guest_capability("openbsd", "rsync_install") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("openbsd", "rsync_installed") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
guest_capability("openbsd", "rsync_command") do
|
|
|
|
require_relative "cap/rsync"
|
|
|
|
Cap::RSync
|
|
|
|
end
|
|
|
|
|
|
|
|
guest_capability("openbsd", "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-02-02 20:38:24 +00:00
|
|
|
guest_capability("openbsd", "shell_expand_guest_path") do
|
|
|
|
require_relative "cap/shell_expand_guest_path"
|
|
|
|
Cap::ShellExpandGuestPath
|
|
|
|
end
|
2012-04-19 04:23:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|