-
-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
vagrant up
has the option --no-destroy-on-error
which is very helpful for debugging. It would be nice if python-vagrant supported it, and it looks simple to add. I would just add destroy_on_error=True
as an arg to vagrant.up()
then pass the right arg depending on that value, something like:
if not destroy_on_error:
destroy_on_error_arg = "--no-destroy-on-error"
Here's a reference:
~ $ vagrant up --help
Usage: vagrant up [options] [name|id]
Options:
--[no-]provision Enable or disable provisioning
--provision-with x,y,z Enable only certain provisioners, by type or by name.
--[no-]destroy-on-error Destroy machine if any fatal error happens (default to true)
--[no-]parallel Enable or disable parallelism if provider supports it
--provider PROVIDER Back the machine with a specific provider
--[no-]install-provider If possible, install the provider if it isn't installed
-h, --help Print this help
~ $
Metadata
Metadata
Assignees
Labels
No labels