Sha256: c5ed948ceac5c857bad88c60e695ef1540d419757e3e7ea2ffbdfbb7c7e5bc90

Contents?: true

Size: 413 Bytes

Versions: 1

Compression:

Stored size: 413 Bytes

Contents

module VagrantPlugins
  module GuestAlpine
    module Cap
      class NFSClient
        def self.nfs_client_install(machine)
          machine.communicate.tap do |comm|
            comm.sudo('apk update')
            comm.sudo('apk add --upgrade 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

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-alpine-0.2.0 lib/vagrant-alpine/cap/nfs_client.rb