vaguerent/plugins/guests/suse/cap/nfs_client.rb
Thomas Boerger 063a903bdb Fixed and extended suse guest capabilities
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 :).
2014-09-11 17:07:49 +02:00

17 lines
382 B
Ruby

module VagrantPlugins
module GuestSUSE
module Cap
class NFSClient
def self.nfs_client_install(machine)
machine.communicate.tap do |comm|
comm.sudo("zypper -n install nfs-client")
comm.sudo("/sbin/service rpcbind restart")
comm.sudo("/sbin/service nfs restart")
end
end
end
end
end
end