Sha256: 0b86e83ddbec43c9209bc1cc19d66bde8f1e0509cee67f854642cb4f67a7c375
Contents?: true
Size: 367 Bytes
Versions: 2
Compression:
Stored size: 367 Bytes
Contents
module VagrantPlugins module GuestAlpine module Cap class NFSClient def self.nfs_client_install(machine) machine.communicate.tap do |comm| comm.sudo('apk add nfs-utils') comm.sudo('rc-update add rpc.statd') comm.sudo('rc-service rpc.statd start') end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-alpine-0.1.3 | lib/vagrant-alpine/cap/nfs_client.rb |
vagrant-alpine-0.1.1 | lib/vagrant-alpine/cap/nfs_client.rb |