]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/glance/lib/puppet/provider/glance_api_config/ini_setting.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / glance / lib / puppet / provider / glance_api_config / ini_setting.rb
diff --git a/3rdparty/modules/glance/lib/puppet/provider/glance_api_config/ini_setting.rb b/3rdparty/modules/glance/lib/puppet/provider/glance_api_config/ini_setting.rb
new file mode 100644 (file)
index 0000000..4323ae8
--- /dev/null
@@ -0,0 +1,27 @@
+Puppet::Type.type(:glance_api_config).provide(
+  :ini_setting,
+  :parent => Puppet::Type.type(:ini_setting).provider(:ruby)
+) do
+
+  def section
+    resource[:name].split('/', 2).first
+  end
+
+  def setting
+    resource[:name].split('/', 2).last
+  end
+
+  def separator
+    '='
+  end
+
+  def self.file_path
+    '/etc/glance/glance-api.conf'
+  end
+
+  # this needs to be removed. This has been replaced with the class method
+  def file_path
+    self.class.file_path
+  end
+
+end