vagrant-lxc-ng/lib/vagrant-lxc/action.rb

228 lines
7.5 KiB
Ruby
Raw Normal View History

require 'vagrant-lxc/action/boot'
require 'vagrant-lxc/action/check_created'
require 'vagrant-lxc/action/check_running'
2013-03-27 00:47:28 +00:00
require 'vagrant-lxc/action/clear_forwarded_ports'
require 'vagrant-lxc/action/create'
require 'vagrant-lxc/action/created'
require 'vagrant-lxc/action/destroy'
2013-04-18 06:11:36 +00:00
require 'vagrant-lxc/action/destroy_confirm'
2013-03-30 22:19:38 +00:00
require 'vagrant-lxc/action/compress_rootfs'
require 'vagrant-lxc/action/fetch_ip_with_lxc_attach'
require 'vagrant-lxc/action/fetch_ip_from_dnsmasq_leases'
require 'vagrant-lxc/action/forced_halt'
require 'vagrant-lxc/action/forward_ports'
require 'vagrant-lxc/action/handle_box_metadata'
require 'vagrant-lxc/action/is_running'
require 'vagrant-lxc/action/prepare_nfs_settings'
require 'vagrant-lxc/action/prepare_nfs_valid_ids'
require 'vagrant-lxc/action/remove_temporary_files'
2013-03-30 22:19:38 +00:00
require 'vagrant-lxc/action/setup_package_files'
require 'vagrant-lxc/action/warn_networks'
unless Vagrant::Backports.vagrant_1_3_or_later?
require 'vagrant-backports/action/wait_for_communicator'
end
unless Vagrant::Backports.vagrant_1_5_or_later?
require 'vagrant-backports/ui'
require 'vagrant-backports/action/handle_box'
2014-03-13 01:41:41 +00:00
require 'vagrant-backports/action/message'
2014-03-13 02:17:42 +00:00
require 'vagrant-backports/action/is_state'
end
module Vagrant
module LXC
2013-03-02 06:57:03 +00:00
module Action
2013-09-28 04:05:10 +00:00
# Shortcuts
Builtin = Vagrant::Action::Builtin
Builder = Vagrant::Action::Builder
# This action is responsible for reloading the machine, which
# brings it down, sucks in new configuration, and brings the
# machine back up with the new configuration.
def self.action_reload
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::Call, Created do |env1, b2|
if !env1[:result]
2014-03-13 01:41:41 +00:00
b2.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_created")
next
end
2013-09-28 04:05:10 +00:00
b2.use Builtin::ConfigValidate
b2.use action_halt
b2.use action_start
end
end
end
# This action boots the VM, assuming the VM is in a state that requires
# a bootup (i.e. not saved).
def self.action_boot
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::Provision
b.use Builtin::EnvSet, :port_collision_repair => true
b.use Builtin::HandleForwardedPortCollisions
if Vagrant::Backports.vagrant_1_4_or_later?
b.use PrepareNFSValidIds
b.use Builtin::SyncedFolderCleanup
b.use Builtin::SyncedFolders
b.use PrepareNFSSettings
else
require 'vagrant-lxc/backports/action/share_folders'
b.use ShareFolders
end
2013-09-28 04:05:10 +00:00
b.use Builtin::SetHostname
b.use WarnNetworks
b.use ForwardPorts
b.use Boot
2013-09-28 04:05:10 +00:00
b.use Builtin::WaitForCommunicator
end
end
2013-03-04 04:10:09 +00:00
# This action just runs the provisioners on the machine.
def self.action_provision
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::ConfigValidate
b.use Builtin::Call, Created do |env1, b2|
2013-03-04 04:10:09 +00:00
if !env1[:result]
2014-03-13 01:41:41 +00:00
b2.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_created")
2013-03-04 04:10:09 +00:00
next
end
2013-09-28 04:05:10 +00:00
b2.use Builtin::Call, IsRunning do |env2, b3|
2013-03-04 04:10:09 +00:00
if !env2[:result]
2014-03-13 01:41:41 +00:00
b3.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_running")
2013-03-04 04:10:09 +00:00
next
end
2013-09-28 04:05:10 +00:00
b3.use Builtin::Provision
2013-03-04 04:10:09 +00:00
end
end
end
end
# This action starts a container, assuming it is already created and exists.
# A precondition of this action is that the container exists.
def self.action_start
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::ConfigValidate
b.use Builtin::Call, IsRunning do |env, b2|
# If the VM is running, then our work here is done, exit
next if env[:result]
b2.use action_boot
end
end
end
# This action brings the machine up from nothing, including creating the
# container, configuring metadata, and booting.
def self.action_up
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::ConfigValidate
b.use Builtin::Call, Created do |env, b2|
# If the VM is NOT created yet, then do the setup steps
if !env[:result]
b2.use Builtin::HandleBox
b2.use HandleBoxMetadata
b2.use Create
end
end
b.use action_start
end
end
# This is the action that is primarily responsible for halting
# the virtual machine, gracefully or by force.
def self.action_halt
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::Call, Created do |env, b2|
if env[:result]
2013-03-27 00:47:28 +00:00
b2.use ClearForwardedPorts
b2.use RemoveTemporaryFiles
2013-09-28 04:05:10 +00:00
b2.use Builtin::Call, Builtin::GracefulHalt, :stopped, :running do |env2, b3|
2013-04-08 23:07:06 +00:00
if !env2[:result]
b3.use ForcedHalt
2013-03-03 06:22:44 +00:00
end
end
else
2014-03-13 01:41:41 +00:00
b2.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_created")
end
end
end
end
# This is the action that is primarily responsible for completely
# freeing the resources of the underlying virtual machine.
def self.action_destroy
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::Call, Created do |env1, b2|
if !env1[:result]
2014-03-13 01:41:41 +00:00
b2.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_created")
next
end
2013-09-28 04:33:47 +00:00
# TODO: Use Vagrant's built in action once we drop support for vagrant 1.2
2013-09-28 04:05:10 +00:00
b2.use Builtin::Call, DestroyConfirm do |env2, b3|
if env2[:result]
2013-09-28 04:05:10 +00:00
b3.use Builtin::ConfigValidate
b3.use Builtin::EnvSet, :force_halt => true
b3.use action_halt
b3.use Destroy
if Vagrant::Backports.vagrant_1_3_or_later?
2013-09-28 04:05:10 +00:00
b3.use Builtin::ProvisionerCleanup
end
else
2014-03-13 01:41:41 +00:00
b3.use Builtin::Message, I18n.t("vagrant_lxc.messages.will_not_destroy")
end
end
end
end
end
2013-03-30 22:19:38 +00:00
# This action packages the virtual machine into a single box file.
def self.action_package
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::Call, Created do |env1, b2|
2013-03-30 22:19:38 +00:00
if !env1[:result]
2014-03-13 01:41:41 +00:00
b2.use Builtin::Message, I18n.t("vagrant_lxc.messages.not_created")
2013-03-30 22:19:38 +00:00
next
end
b2.use action_halt
b2.use CompressRootFS
b2.use SetupPackageFiles
b2.use Vagrant::Action::General::Package
end
end
end
# This action is called to read the IP of the container. The IP found
# is expected to be put into the `:machine_ip` key.
def self.action_fetch_ip
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
b.use Builtin::ConfigValidate
b.use FetchIpWithLxcAttach
b.use FetchIpFromDnsmasqLeases
end
end
2013-03-02 19:48:15 +00:00
# This is the action that will exec into an SSH shell.
def self.action_ssh
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
2013-03-02 19:48:15 +00:00
b.use CheckCreated
b.use CheckRunning
2013-09-28 04:05:10 +00:00
b.use Builtin::SSHExec
2013-03-02 19:48:15 +00:00
end
end
# This is the action that will run a single SSH command.
def self.action_ssh_run
2013-09-28 04:05:10 +00:00
Builder.new.tap do |b|
2013-03-02 19:48:15 +00:00
b.use CheckCreated
b.use CheckRunning
2013-09-28 04:05:10 +00:00
b.use Builtin::SSHRun
2013-03-02 19:48:15 +00:00
end
end
end
end
end