We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e519a8a + fa0ca4b commit 03371fdCopy full SHA for 03371fd
website/content/docs/cli/validate.mdx
@@ -16,7 +16,17 @@ This command validates your [Vagrantfile](/vagrant/docs/vagrantfile/).
16
17
## Examples
18
19
+Validate the syntax of the Vagrantfile to ensure it is correctly structured and free of errors
20
+
21
```shell-session
22
$ vagrant validate
23
Vagrantfile validated successfully.
24
```
25
26
+Ensure that the Vagrantfile is correctly structured while ignoring provider-specific configuration options:
27
28
+```shell-session
29
+$ vagrant validate --ignore-provider virtualbox
30
+==> default: Ignoring provider config for validation...
31
+Vagrantfile validated successfully.
32
+```
0 commit comments