2014-03-13 00:31:49 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestTinyCore
|
|
|
|
module Cap
|
|
|
|
class RSync
|
|
|
|
def self.rsync_install(machine)
|
|
|
|
machine.communicate.tap do |comm|
|
2015-07-08 15:47:48 +00:00
|
|
|
# Run it but don't error check because this is always failing currently
|
|
|
|
comm.execute("tce-load -wi acl attr rsync", error_check: false)
|
|
|
|
|
|
|
|
# Verify it by executing rsync
|
|
|
|
comm.execute("rsync --help")
|
2014-03-13 00:31:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|