In order to get a SUSE guest running and installing fine i have added a correct capability for installing rsync and nfs-client. I have included SUSE naming fixes as well because SUSe doesnt get spelled SuSE anymore :).
18 lines
377 B
Ruby
18 lines
377 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.tap do |comm|
|
|
comm.sudo("zypper -n install rsync")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|