vaguerent/plugins/guests/omnios/cap/mount_nfs_folder.rb

25 lines
592 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
module VagrantPlugins
module GuestOmniOS
module Cap
class MountNFSFolder
def self.mount_nfs_folder(machine, ip, folders)
comm = machine.communicate
commands = []
folders.each do |_, opts|
commands << <<-EOH.gsub(/^ {14}/, '')
mkdir -p '#{opts[:guestpath]}'
/sbin/mount '#{ip}:#{opts[:hostpath]}' '#{opts[:guestpath]}'
EOH
end
comm.sudo(commands.join("\n"))
end
end
end
end
end