From 3b1869c4861b54d7d855692c114422ea1f0cc843 Mon Sep 17 00:00:00 2001 From: Joshua Hoblitt Date: Mon, 11 May 2015 18:44:02 -0700 Subject: [PATCH] rename DigitalOcean provider to digital_ocean The name of the DigitalOcean plugin gem is `vagrant-digitalocean` but the actual provider plugin registered with vagrant is `:digital_ocean`. See: https://github.com/smdahlen/vagrant-digitalocean/blob/9dddc130842beb33e3f5c9796c26bd438bdde953/lib/vagrant-digitalocean/plugin.rb#L10 --- lib/vagrant-cachier/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-cachier/plugin.rb b/lib/vagrant-cachier/plugin.rb index bb337b1..01b7644 100644 --- a/lib/vagrant-cachier/plugin.rb +++ b/lib/vagrant-cachier/plugin.rb @@ -17,7 +17,7 @@ module VagrantPlugins # Keep an eye on https://github.com/mitchellh/vagrant/wiki/Available-Vagrant-Plugins#wiki-providers # for more. - CLOUD_PROVIDERS = %w( aws cloudstack digitalocean hp joyent openstack rackspace + CLOUD_PROVIDERS = %w( aws cloudstack digitalocean digital_ocean hp joyent openstack rackspace softlayer proxmox managed azure brightbox cloudstack vcloud vsphere ) end