lib/vagrant-openstack-provider/client/openstack.rb in vagrant-openstack-provider-0.3.4.pre vs lib/vagrant-openstack-provider/client/openstack.rb in vagrant-openstack-provider-0.4.0
- old
+ new
@@ -3,10 +3,11 @@
require 'json'
require 'vagrant-openstack-provider/client/keystone'
require 'vagrant-openstack-provider/client/nova'
require 'vagrant-openstack-provider/client/neutron'
+require 'vagrant-openstack-provider/client/cinder'
module VagrantPlugins
module Openstack
class Session
include Singleton
@@ -38,8 +39,12 @@
Openstack::NovaClient.instance
end
def self.neutron
Openstack::NeutronClient.instance
+ end
+
+ def self.cinder
+ Openstack::CinderClient.instance
end
end
end