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