nixos/httpd: drop postgresql reference

This commit is contained in:
Aaron Andersen 2019-07-02 11:53:45 -04:00
parent 0fd69629c7
commit 9b970d07f3
2 changed files with 6 additions and 1 deletions

View file

@ -148,6 +148,11 @@
</para>
</listitem>
<listitem>
<para>
The httpd service no longer attempts to start the postgresql service. If you have come to depend
on this behaviour then you can preserve the behavior with the following configuration:
<literal>systemd.services.httpd.after = [ "postgresql.service" ];</literal>
</para>
<para>
The option <option>services.httpd.extraSubservices</option> has been
marked as deprecated. You may still use this feature, but it will be

View file

@ -671,7 +671,7 @@ in
wantedBy = [ "multi-user.target" ];
wants = [ "keys.target" ];
after = [ "network.target" "fs.target" "postgresql.service" "keys.target" ];
after = [ "network.target" "fs.target" "keys.target" ];
path =
[ httpd pkgs.coreutils pkgs.gnugrep ]