Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / glance / manifests / db / postgresql.pp
diff --git a/3rdparty/modules/glance/manifests/db/postgresql.pp b/3rdparty/modules/glance/manifests/db/postgresql.pp
deleted file mode 100644 (file)
index a1eb54c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# Class that configures postgresql for glance
-#
-# Requires the Puppetlabs postgresql module.
-class glance::db::postgresql(
-  $password,
-  $dbname = 'glance',
-  $user   = 'glance'
-) {
-
-  require postgresql::python
-
-  Postgresql::Db[$dbname] ~> Exec<| title == 'glance-manage db_sync' |>
-  Package['python-psycopg2'] -> Exec<| title == 'glance-manage db_sync' |>
-
-  postgresql::db { $dbname:
-    user      =>  $user,
-    password  =>  $password,
-  }
-
-}