Add new `rsync_installed` and `rsync_install` guest capabilities to detect and install `rsync`. Also copy `rsync_pre` capability to all Unix guests.
15 lines
307 B
Ruby
15 lines
307 B
Ruby
module VagrantPlugins
|
|
module GuestDebian
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_install(machine)
|
|
machine.communicate.tap do |comm|
|
|
comm.sudo("apt-get -y update")
|
|
comm.sudo("apt-get -y install rsync")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|