From 3ce7c0cf3f84e46b27070f3e006cd01eba02ac17 Mon Sep 17 00:00:00 2001 From: Milan Stovicek <4922479+mstovicek@users.noreply.github.com> Date: Wed, 13 Jun 2018 18:51:45 +0200 Subject: [PATCH] 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 ```` --- website/source/docs/triggers/configuration.html.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/source/docs/triggers/configuration.html.md b/website/source/docs/triggers/configuration.html.md index d66938741..bd1581220 100644 --- a/website/source/docs/triggers/configuration.html.md +++ b/website/source/docs/triggers/configuration.html.md @@ -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.