Move up doc string for `vagrant snapshot pop`
This commit moves up the doc string for the command `vagrant snapshot pop` Prior to this commit it was hidden in between command line flags.
This commit is contained in:
parent
75d4aa42a1
commit
46e42ed884
|
@ -23,8 +23,10 @@ module VagrantPlugins
|
|||
opts = OptionParser.new do |o|
|
||||
o.banner = "Usage: vagrant snapshot pop [options] [vm-name]"
|
||||
o.separator ""
|
||||
o.separator "Restore state that was pushed onto the snapshot stack"
|
||||
o.separator "with `vagrant snapshot push`."
|
||||
o.separator ""
|
||||
build_start_options(o, options)
|
||||
o.separator "Restore state that was pushed with `vagrant snapshot push`."
|
||||
|
||||
o.on("--no-delete", "Don't delete the snapshot after the restore") do
|
||||
options[:snapshot_delete] = false
|
||||
|
|
Loading…
Reference in New Issue