2015-10-07 19:52:37 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandSnapshot
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "snapshot command"
|
|
|
|
description "The `snapshot` command gives you a way to manage snapshots."
|
|
|
|
|
|
|
|
command("snapshot") do
|
2015-10-08 14:40:46 +00:00
|
|
|
require_relative "command/root"
|
2015-10-07 19:52:37 +00:00
|
|
|
Command::Root
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|