Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / neutron / lib / puppet / type / nova_admin_tenant_id_setter.rb
diff --git a/3rdparty/modules/neutron/lib/puppet/type/nova_admin_tenant_id_setter.rb b/3rdparty/modules/neutron/lib/puppet/type/nova_admin_tenant_id_setter.rb
deleted file mode 100644 (file)
index d79e86c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-Puppet::Type.newtype(:nova_admin_tenant_id_setter) do
-
-    ensurable
-
-    newparam(:name, :namevar => true) do
-        desc 'The name of the setting to update'
-    end
-
-    newparam(:tenant_name) do
-        desc 'The nova admin tenant name'
-    end
-
-    newparam(:auth_url) do
-        desc 'The Keystone endpoint URL'
-        defaultto 'http://localhost:35357/v2.0'
-    end
-
-    newparam(:auth_username) do
-        desc 'Username with which to authenticate'
-        defaultto 'admin'
-    end
-
-    newparam(:auth_password) do
-        desc 'Password with which to authenticate'
-    end
-
-    newparam(:auth_tenant_name) do
-        desc 'Tenant name with which to authenticate'
-        defaultto 'admin'
-    end
-end
-