Commit 7413eb8b authored by Austin Seipp's avatar Austin Seipp
Browse files

nixos/postgresql: remove ancient hack for postgres 8.4



Signed-off-by: default avatarAustin Seipp <aseipp@pobox.com>
parent 99ee7fd3
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -36,9 +36,6 @@ let
      ${cfg.extraConfig}
    '';

  pre84 = versionOlder (builtins.parseDrvName postgresql.name).version "8.4";


in

{
@@ -182,7 +179,7 @@ in
    services.postgresql.authentication = mkAfter
      ''
        # Generated file; do not edit!
        local all all              ident ${optionalString pre84 "sameuser"}
        local all all              ident
        host  all all 127.0.0.1/32 md5
        host  all all ::1/128      md5
      '';