18 lines
556 B
Ruby
18 lines
556 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module GuestAlpine
|
|
module Cap
|
|
class NFSClient
|
|
def self.nfs_client_install(machine)
|
|
machine.communicate.sudo('apk update')
|
|
machine.communicate.sudo('apk add --upgrade nfs-utils')
|
|
machine.communicate.sudo('rc-update add rpc.statd')
|
|
machine.communicate.sudo('rc-service rpc.statd start')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|