X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fpostgresql%2Fmanifests%2Fpackage_source%2Fapt_postgresql_org.pp;fp=3rdparty%2Fmodules%2Fpostgresql%2Fmanifests%2Fpackage_source%2Fapt_postgresql_org.pp;h=0000000000000000000000000000000000000000;hb=a69999e580f8b3abd12446c2d6ad59e517651813;hp=a24b75673797606715e593538ddd112fec760c95;hpb=e7b6b352165009c385c52fcfe5a1055690dbfa4b;p=mirror%2Fdsa-puppet.git 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 index a24b75673..000000000 --- a/3rdparty/modules/postgresql/manifests/package_source/apt_postgresql_org.pp +++ /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'|> -}