2014-01-10 00:58:20 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestRedHat
|
|
|
|
module Cap
|
|
|
|
class NFSClient
|
|
|
|
def self.nfs_client_install(machine)
|
|
|
|
machine.communicate.tap do |comm|
|
2014-06-23 15:17:54 +00:00
|
|
|
comm.sudo("yum -y install nfs-utils nfs-utils-lib")
|
2014-06-23 12:56:10 +00:00
|
|
|
comm.sudo("/etc/init.d/rpcbind restart; /etc/init.d/nfs restart")
|
2014-01-10 00:58:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|