Nikhil Benesch 2df36892dd synced_folders/rsync: only chown when necessary [GH-3525]
Run remote rsync as root to guarantee that rsync can write to guestpath.
This obviates the need to chown the guestpath to the SSH user prior to
sync.

This brings a substantial speedup (2x on a moderately-sized shared
folder) and properly triggers filesystem notifications on only the files
changed by a given sync.
2014-04-25 15:00:12 -04:00

66 lines
1.6 KiB
Ruby

require "vagrant"
module VagrantPlugins
module GuestOpenBSD
class Plugin < Vagrant.plugin("2")
name "OpenBSD guest"
description "OpenBSD guest support."
guest("openbsd") do
require File.expand_path("../guest", __FILE__)
Guest
end
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
guest_capability("openbsd", "halt") do
require_relative "cap/halt"
Cap::Halt
end
guest_capability("openbsd", "insert_public_key") do
require_relative "cap/insert_public_key"
Cap::InsertPublicKey
end
guest_capability("openbsd", "mount_nfs_folder") do
require_relative "cap/mount_nfs_folder"
Cap::MountNFSFolder
end
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
guest_capability("openbsd", "rsync_command") do
require_relative "cap/rsync"
Cap::RSync
end
guest_capability("openbsd", "rsync_post") do
require_relative "cap/rsync"
Cap::RSync
end
guest_capability("openbsd", "shell_expand_guest_path") do
require_relative "cap/shell_expand_guest_path"
Cap::ShellExpandGuestPath
end
end
end
end