Trigger plugin activation by setting cache scope [GH-17]
This commit is contained in:
parent
849374e0d1
commit
59887560ed
1 changed files with 2 additions and 3 deletions
|
@ -46,7 +46,7 @@ module VagrantPlugins
|
||||||
def enabled?
|
def enabled?
|
||||||
return @enabled unless @enabled.nil?
|
return @enabled unless @enabled.nil?
|
||||||
|
|
||||||
@enabled = (@auto_detect != UNSET_VALUE || @buckets != nil)
|
@enabled = @scope != UNSET_VALUE
|
||||||
end
|
end
|
||||||
|
|
||||||
def disable!
|
def disable!
|
||||||
|
@ -56,8 +56,7 @@ module VagrantPlugins
|
||||||
def finalize!
|
def finalize!
|
||||||
return unless enabled?
|
return unless enabled?
|
||||||
|
|
||||||
@scope = :box if @scope == UNSET_VALUE
|
@auto_detect = true if @auto_detect == UNSET_VALUE
|
||||||
@auto_detect = false if @auto_detect == UNSET_VALUE
|
|
||||||
@synced_folder_opts = nil if @synced_folder_opts == UNSET_VALUE
|
@synced_folder_opts = nil if @synced_folder_opts == UNSET_VALUE
|
||||||
@buckets = @buckets ? @buckets.dup : {}
|
@buckets = @buckets ? @buckets.dup : {}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue