diff options
author | Bjørn Forsman | 2013-11-09 20:06:01 +0100 |
---|---|---|
committer | Bjørn Forsman | 2013-11-09 20:45:50 +0100 |
commit | dc352536a8be332aa520d732c656189478ecb104 (patch) | |
tree | e19dc271bcd578d1feb5509e1f1277173dcaf54e /nixos/modules/services/monitoring/apcupsd.nix | |
parent | 981c28735583f983ae25050fd1fc9533ae501aa0 (diff) |
nixos: capitalize a bunch of service descriptions
(systemd service descriptions that is, not service descriptions in "man configuration.nix".) Capitalizing each word in the description seems to be the accepted standard. Also shorten these descriptions: * "Munin node, the agent process" => "Munin Node" * "Planet Venus, an awesome ‘river of news’ feed reader" => "Planet Venus Feed Reader"
Diffstat (limited to 'nixos/modules/services/monitoring/apcupsd.nix')
-rw-r--r-- | nixos/modules/services/monitoring/apcupsd.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/monitoring/apcupsd.nix b/nixos/modules/services/monitoring/apcupsd.nix index 114bad5c947e..58ec8a49694b 100644 --- a/nixos/modules/services/monitoring/apcupsd.nix +++ b/nixos/modules/services/monitoring/apcupsd.nix @@ -148,7 +148,7 @@ in # wall: cannot get tty name: Inappropriate ioctl for device # The message still gets through. systemd.services.apcupsd = { - description = "APC UPS daemon"; + description = "APC UPS Daemon"; wantedBy = [ "multi-user.target" ]; preStart = "mkdir -p /run/apcupsd/"; serviceConfig = { @@ -172,7 +172,7 @@ in before = [ "final.target" ]; wantedBy = [ "shutdown.target" ]; unitConfig = { - Description = "APC UPS killpower"; + Description = "APC UPS Kill Power"; ConditionPathExists = "/run/apcupsd/powerfail"; DefaultDependencies = "no"; }; |