vagrant/plugins/commands/snapshot/command/push_shared.rb

63 lines
1.7 KiB
Ruby
Raw Normal View History

2015-10-08 02:52:27 +00:00
require 'json'
module VagrantPlugins
module CommandSnapshot
module Command
module PushShared
def shared_exec(argv, m, opts={})
2015-10-08 02:52:27 +00:00
with_target_vms(argv) do |vm|
if !vm.id
vm.ui.info("Not created. Cannot push snapshot state.")
next
end
vm.env.lock("machine-snapshot-stack") do
m.call(vm,opts)
2015-10-08 02:52:27 +00:00
end
end
# Success, exit with 0
2015-10-08 02:52:27 +00:00
0
end
def push(machine,opts={})
2015-10-08 02:52:27 +00:00
snapshot_name = "push_#{Time.now.to_i}_#{rand(10000)}"
# Save the snapshot. This will raise an exception if it fails.
machine.action(:snapshot_save, snapshot_name: snapshot_name)
end
def pop(machine,opts={})
# By reverse sorting, we should be able to find the first
# pushed snapshot.
name = nil
snapshots = machine.provider.capability(:snapshot_list)
snapshots.sort.reverse.each do |snapshot|
if snapshot =~ /^push_\d+_\d+$/
name = snapshot
break
end
2015-10-08 02:52:27 +00:00
end
# If no snapshot was found, we never pushed
if !name
machine.ui.info(I18n.t("vagrant.commands.snapshot.no_push_snapshot"))
return
2015-10-08 02:52:27 +00:00
end
snapshot_delete = true
if opts.key?(:no_delete)
snapshot_delete = false
end
# Restore the snapshot and tell the provider to delete it, if required
machine.action(
:snapshot_restore,
snapshot_name: name,
snapshot_delete: snapshot_delete)
2015-10-08 02:52:27 +00:00
end
end
end
end
end