2014-03-12 13:26:14 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
class SyncedFolder < Vagrant.plugin("2", :synced_folder)
|
|
|
|
def usable?(machine)
|
|
|
|
# These synced folders only work if the provider is LXC
|
|
|
|
machine.provider_name == :lxc
|
|
|
|
end
|
|
|
|
|
|
|
|
def prepare(machine, folders, _opts)
|
2014-03-13 01:47:05 +00:00
|
|
|
machine.ui.output(I18n.t("vagrant.actions.lxc.share_folders.preparing"))
|
2014-03-12 13:26:14 +00:00
|
|
|
|
|
|
|
folders.each do |id, data|
|
|
|
|
host_path = Pathname.new(File.expand_path(data[:hostpath], machine.env.root_path))
|
|
|
|
guest_path = data[:guestpath]
|
|
|
|
|
|
|
|
if !host_path.directory? && data[:create]
|
|
|
|
# Host path doesn't exist, so let's create it.
|
2014-03-13 01:47:05 +00:00
|
|
|
@logger.info("Host path doesn't exist, creating: #{host_path}")
|
2014-03-12 13:26:14 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
host_path.mkpath
|
|
|
|
rescue Errno::EACCES
|
|
|
|
raise Vagrant::Errors::SharedFolderCreateFailed,
|
|
|
|
:path => hostpath.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
machine.provider.driver.share_folder(host_path, guest_path)
|
|
|
|
# Guest path specified, so mount the folder to specified point
|
|
|
|
machine.ui.detail(I18n.t("vagrant.actions.vm.share_folders.mounting_entry",
|
2014-03-13 01:47:05 +00:00
|
|
|
guestpath: data[:guestpath],
|
|
|
|
hostpath: data[:hostpath],
|
|
|
|
guest_path: data[:guestpath]))
|
2014-03-12 13:26:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|