18 lines
369 B
Ruby
18 lines
369 B
Ruby
|
module VagrantPlugins
|
||
|
module GuestAlpine
|
||
|
module Cap
|
||
|
class RSync
|
||
|
def self.rsync_installed(machine)
|
||
|
machine.communicate.test('test -f /usr/bin/rsync')
|
||
|
end
|
||
|
|
||
|
def self.rsync_install(machine)
|
||
|
machine.communicate.tap do |comm|
|
||
|
comm.sudo('apk add rsync')
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|