27 lines
442 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
module SyncedFolderSMB
class Config < Vagrant.plugin("2", :config)
attr_accessor :functional
def initialize
super
@functional = UNSET_VALUE
end
def finalize!
@functional = true if @functional == UNSET_VALUE
end
def to_s
"SMB"
end
end
end
end