mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 05:23:54 +00:00
nixos/httpd: drop postgresql reference
This commit is contained in:
parent
0fd69629c7
commit
9b970d07f3
@ -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
|
||||
|
@ -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 ]
|
||||
|
Loading…
Reference in New Issue
Block a user