newer pg module
[mirror/dsa-puppet.git] / 3rdparty / modules / postgresql / manifests / package_source / apt_postgresql_org.pp
diff --git a/3rdparty/modules/postgresql/manifests/package_source/apt_postgresql_org.pp b/3rdparty/modules/postgresql/manifests/package_source/apt_postgresql_org.pp
deleted file mode 100644 (file)
index a24b756..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-class postgresql::package_source::apt_postgresql_org {
-  # Here we have tried to replicate the instructions on the PostgreSQL site:
-  #
-  # http://www.postgresql.org/download/linux/debian/
-  #
-  apt::pin { 'apt.postgresql.org':
-    originator => 'apt.postgresql.org',
-    priority   => 500,
-  }->
-  apt::source { 'apt.postgresql.org':
-    location          => 'http://apt.postgresql.org/pub/repos/apt/',
-    release           => "${::lsbdistcodename}-pgdg",
-    repos             => 'main',
-    required_packages => 'pgdg-keyring',
-    key               => 'ACCC4CF8',
-    key_source        => 'http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc',
-    include_src       => false,
-  }
-
-  Apt::Source['apt.postgresql.org']->Package<|tag == 'postgresql'|>
-}