Sha256: 5680a2543d3dffd0d98087fb2320abd03dbad4bc254d7e95853101ef7878a430
Contents?: true
Size: 750 Bytes
Versions: 58
Compression:
Stored size: 750 Bytes
Contents
require "vagrant" module VagrantPlugins module SyncedFolderNFS class Config < Vagrant.plugin("2", :config) attr_accessor :functional attr_accessor :map_uid attr_accessor :map_gid attr_accessor :verify_installed def initialize super @functional = UNSET_VALUE @map_uid = UNSET_VALUE @map_gid = UNSET_VALUE @verify_installed = UNSET_VALUE end def finalize! @functional = true if @functional == UNSET_VALUE @map_uid = :auto if @map_uid == UNSET_VALUE @map_gid = :auto if @map_gid == UNSET_VALUE @verify_installed = true if @verify_installed == UNSET_VALUE end def to_s "NFS" end end end end
Version data entries
58 entries across 54 versions & 6 rubygems