vagrant/plugins/guests/suse/cap/rsync.rb

16 lines
332 B
Ruby

module VagrantPlugins
module GuestSUSE
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.sudo("zypper -n install rsync")
end
end
end
end
end