Add `suspend` into a list of available actions

`suspend` action is not listed, even though it can be used and it works.

```
$ vagrant --version
Vagrant 2.1.1
```

```
config.trigger.before [:suspend] do |trigger|
  trigger.name = "Before suspend"
  trigger.run = {inline: "..."}
end
````
This commit is contained in:
Milan Stovicek 2018-06-13 18:51:45 +02:00 committed by GitHub
parent e43a94b797
commit 3ce7c0cf3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ The trigger class takes various options.
- `provision`
- `reload`
- `resume`
- `suspend`
- `up`
* `ignore` (symbol, array) - Symbol or array of symbols corresponding to the action that a trigger should not fire on.