[DRE-commits] [vagrant-libvirt] 95/104: rearranging the actions loaded in alpha order
Antonio Terceiro
terceiro at moszumanska.debian.org
Sun Apr 24 13:55:51 UTC 2016
This is an automated email from the git hooks/post-receive script.
terceiro pushed a commit to annotated tag 0.0.11
in repository vagrant-libvirt.
commit c9abbd2fa7245262c2ac15369164b38fb7131156
Author: Craig Vyvial <cp16net at gmail.com>
Date: Thu Oct 17 00:42:35 2013 -0500
rearranging the actions loaded in alpha order
---
lib/vagrant-libvirt/action.rb | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/lib/vagrant-libvirt/action.rb b/lib/vagrant-libvirt/action.rb
index 7444296..7a71070 100644
--- a/lib/vagrant-libvirt/action.rb
+++ b/lib/vagrant-libvirt/action.rb
@@ -251,6 +251,15 @@ module VagrantPlugins
action_root = Pathname.new(File.expand_path('../action', __FILE__))
autoload :ConnectLibvirt, action_root.join('connect_libvirt')
+ autoload :CreateDomain, action_root.join('create_domain')
+ autoload :CreateDomainVolume, action_root.join('create_domain_volume')
+ autoload :CreateNetworkInterfaces, action_root.join('create_network_interfaces')
+ autoload :CreateNetworks, action_root.join('create_networks')
+ autoload :DestroyDomain, action_root.join('destroy_domain')
+ autoload :DestroyNetworks, action_root.join('destroy_networks')
+ autoload :HaltDomain, action_root.join('halt_domain')
+ autoload :HandleBoxImage, action_root.join('handle_box_image')
+ autoload :HandleStoragePool, action_root.join('handle_storage_pool')
autoload :IsCreated, action_root.join('is_created')
autoload :IsRunning, action_root.join('is_running')
autoload :IsSuspended, action_root.join('is_suspended')
@@ -258,29 +267,20 @@ module VagrantPlugins
autoload :MessageNotCreated, action_root.join('message_not_created')
autoload :MessageNotRunning, action_root.join('message_not_running')
autoload :MessageNotSuspended, action_root.join('message_not_suspended')
- autoload :HandleStoragePool, action_root.join('handle_storage_pool')
- autoload :HandleBoxUrl, 'vagrant/action/builtin/handle_box_url'
- autoload :HandleBoxImage, action_root.join('handle_box_image')
+ autoload :PrepareNFSSettings, action_root.join('prepare_nfs_settings')
+ autoload :PruneNFSExports, action_root.join('prune_nfs_exports')
+ autoload :ReadSSHInfo, action_root.join('read_ssh_info')
+ autoload :ReadState, action_root.join('read_state')
+ autoload :ResumeDomain, action_root.join('resume_domain')
autoload :SetNameOfDomain, action_root.join('set_name_of_domain')
- autoload :CreateDomainVolume, action_root.join('create_domain_volume')
- autoload :CreateDomain, action_root.join('create_domain')
- autoload :CreateNetworks, action_root.join('create_networks')
- autoload :CreateNetworkInterfaces, action_root.join('create_network_interfaces')
- autoload :DestroyDomain, action_root.join('destroy_domain')
- autoload :DestroyNetworks, action_root.join('destroy_networks')
+ autoload :ShareFolders, action_root.join('share_folders')
autoload :StartDomain, action_root.join('start_domain')
- autoload :HaltDomain, action_root.join('halt_domain')
autoload :SuspendDomain, action_root.join('suspend_domain')
- autoload :ResumeDomain, action_root.join('resume_domain')
- autoload :ReadState, action_root.join('read_state')
- autoload :ReadSSHInfo, action_root.join('read_ssh_info')
+ autoload :SyncFolders, action_root.join('sync_folders')
autoload :TimedProvision, action_root.join('timed_provision')
autoload :WaitTillUp, action_root.join('wait_till_up')
- autoload :SyncFolders, action_root.join('sync_folders')
autoload :SSHRun, 'vagrant/action/builtin/ssh_run'
- autoload :PrepareNFSSettings, action_root.join('prepare_nfs_settings')
- autoload :PruneNFSExports, action_root.join('prune_nfs_exports')
- autoload :ShareFolders, action_root.join('share_folders')
+ autoload :HandleBoxUrl, 'vagrant/action/builtin/handle_box_url'
end
end
end
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/vagrant-libvirt.git
More information about the Pkg-ruby-extras-commits
mailing list