Class: VagrantPlugins::ProviderLibvirt::Action::HandleStoragePool
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderLibvirt::Action::HandleStoragePool
- Includes:
- Util::ErbTemplate, Util::StorageUtil
- Defined in:
- lib/vagrant-libvirt/action/handle_storage_pool.rb
Constant Summary collapse
- @@lock =
Mutex.new
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ HandleStoragePool
constructor
A new instance of HandleStoragePool.
Methods included from Util::StorageUtil
#storage_gid, #storage_pool_path, #storage_uid
Methods included from Util::ErbTemplate
Constructor Details
#initialize(app, _env) ⇒ HandleStoragePool
Returns a new instance of HandleStoragePool.
15 16 17 18 |
# File 'lib/vagrant-libvirt/action/handle_storage_pool.rb', line 15 def initialize(app, _env) @logger = Log4r::Logger.new('vagrant_libvirt::action::handle_storage_pool') @app = app end |
Instance Method Details
#call(env) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/vagrant-libvirt/action/handle_storage_pool.rb', line 20 def call(env) # Get config options. config = env[:machine].provider_config # while inside the synchronize block take care not to call the next # action in the chain, as must exit this block first to prevent # locking all subsequent actions as well. @@lock.synchronize do # Check for storage pool, where box image should be created break unless env[:machine].provider.driver.connection.pools.all( name: config.storage_pool_name ).empty? @logger.info("No storage pool '#{config.storage_pool_name}' is available.") # If user specified other pool than default, don't create default # storage pool, just write error message. raise Errors::NoStoragePool if config.storage_pool_name != 'default' @logger.info("Creating storage pool 'default'") # Fog Libvirt currently doesn't support creating pools. Use # ruby-libvirt client directly. begin @storage_pool_path = storage_pool_path(env) @storage_pool_uid = storage_uid(env) @storage_pool_gid = storage_gid(env) xml = to_xml('default_storage_pool') @logger.debug { "Creating Storage Pool with XML:\n#{xml}" } libvirt_pool = env[:machine].provider.driver.connection.client.define_storage_pool_xml( xml ) libvirt_pool.build libvirt_pool.create rescue => e raise Errors::CreatingStoragePoolError, error_message: e. end raise Errors::NoStoragePool unless libvirt_pool end @app.call(env) end |