Class: VagrantPlugins::Proxmox::Action::SyncFolders
- Inherits:
-
ProxmoxAction
- Object
- ProxmoxAction
- VagrantPlugins::Proxmox::Action::SyncFolders
- Defined in:
- lib/vagrant-proxmox/action/sync_folders.rb
Overview
This action uses ‘rsync’ to sync the folders over to the virtual machine.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ SyncFolders
constructor
A new instance of SyncFolders.
Constructor Details
#initialize(app, env) ⇒ SyncFolders
Returns a new instance of SyncFolders.
10 11 12 13 |
# File 'lib/vagrant-proxmox/action/sync_folders.rb', line 10 def initialize app, env @app = app @logger = Log4r::Logger.new 'vagrant_proxmox::action::sync_folders' end |
Instance Method Details
#call(env) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/vagrant-proxmox/action/sync_folders.rb', line 15 def call env ssh_info = env[:machine].ssh_info env[:machine].config.vm.synced_folders.each do |_, data| hostpath = File. data[:hostpath], env[:root_path] guestpath = data[:guestpath] next if data[:disabled] # Make sure there is a trailing slash on the host path to # avoid creating an additional directory with rsync hostpath = "#{hostpath}/" if hostpath !~ /\/$/ env[:ui].info I18n.t('vagrant_proxmox.rsync_folder', hostpath: hostpath, guestpath: guestpath) # Create the guest path env[:machine].communicate.sudo "mkdir -p '#{guestpath}'" env[:machine].communicate.sudo "chown #{ssh_info[:username]} '#{guestpath}'" # rsync over to the guest path using the SSH info command = [ 'rsync', '--verbose', '--archive', '--compress', '--delete', '-e', "ssh -p #{ssh_info[:port]} -i '#{ssh_info[:private_key_path][0]}' -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null", hostpath, "#{ssh_info[:username]}@#{ssh_info[:host]}:#{guestpath}"] rsync_process = Vagrant::Util::Subprocess.execute *command if rsync_process.exit_code != 0 raise Errors::RsyncError, guestpath: guestpath, hostpath: hostpath, stderr: rsync_process.stderr end end next_action env end |