mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 21:49:34 +03:00
nixos/services.vault: fmt
This commit is contained in:
parent
c24987c6ad
commit
cae64813e8
1 changed files with 5 additions and 3 deletions
|
@ -224,9 +224,11 @@ in
|
||||||
description = "Vault server daemon";
|
description = "Vault server daemon";
|
||||||
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [
|
after =
|
||||||
"network.target"
|
[
|
||||||
] ++ lib.optional (config.services.consul.enable && cfg.storageBackend == "consul") "consul.service";
|
"network.target"
|
||||||
|
]
|
||||||
|
++ lib.optional (config.services.consul.enable && cfg.storageBackend == "consul") "consul.service";
|
||||||
|
|
||||||
restartIfChanged = false; # do not restart on "nixos-rebuild switch". It would seal the storage and disrupt the clients.
|
restartIfChanged = false; # do not restart on "nixos-rebuild switch". It would seal the storage and disrupt the clients.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue