1.6 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | Vagrant Experimental Feature Flag | experimental | Introduction to Vagrants Experimental Feature Flag |
Experimental Feature Flag
Some features that aren't ready for release can be enabled through this feature flag. There are a couple of different ways of going about enabling these features:
For example if you are on Linux or Mac, and you you wish to enable every single experimental feature, you can set the flag
to "on" by setting it to 1
like below:
export VAGRANT_EXPERIMENTAL="1"
You can also enable some or many features if there are specific ones you would like, but don't want every single feature enabled:
# Only enables feature_one
export VAGRANT_EXPERIMENTAL="feature_one"
# Enables both feature_one and feature_two
export VAGRANT_EXPERIMENTAL="feature_one,feature_two"
It is also worth noting that Vagrant will not validate the existance of a feature flag.
Valid experimental features
This is a list of all the valid experimental features that Vagrant recognizes:
typed_triggers
Enabling this feature allows triggers to recognize and execute :type
triggers.
More information about how these should be used can be found on the trigger documentation page