nixos/redis: capitalize service description

This commit is contained in:
Bjørn Forsman 2015-02-22 16:46:49 +01:00
parent 25a6745310
commit d5017499a2

View File

@ -201,7 +201,7 @@ in
environment.systemPackages = [ cfg.package ];
systemd.services.redis_init =
{ description = "Redis server initialisation";
{ description = "Redis Server Initialisation";
wantedBy = [ "redis.service" ];
before = [ "redis.service" ];
@ -216,7 +216,7 @@ in
};
systemd.services.redis =
{ description = "Redis server";
{ description = "Redis Server";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];