mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-08 19:45:42 +03:00
nixos/redis: capitalize service description
This commit is contained in:
parent
25a6745310
commit
d5017499a2
1 changed files with 2 additions and 2 deletions
|
@ -201,7 +201,7 @@ in
|
||||||
environment.systemPackages = [ cfg.package ];
|
environment.systemPackages = [ cfg.package ];
|
||||||
|
|
||||||
systemd.services.redis_init =
|
systemd.services.redis_init =
|
||||||
{ description = "Redis server initialisation";
|
{ description = "Redis Server Initialisation";
|
||||||
|
|
||||||
wantedBy = [ "redis.service" ];
|
wantedBy = [ "redis.service" ];
|
||||||
before = [ "redis.service" ];
|
before = [ "redis.service" ];
|
||||||
|
@ -216,7 +216,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.redis =
|
systemd.services.redis =
|
||||||
{ description = "Redis server";
|
{ description = "Redis Server";
|
||||||
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue