From 44f1a8d8c75d468aac740f1cf4a5e19ff8c368e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 17 Jul 2013 05:19:54 +0200 Subject: [PATCH] Add apcupsd service apcupsd is a daemon for controlling APC UPSes. It is very simple to configure. If you have an USB based UPS, the default settings should be useable without further adjustments: services.apcupsd.enable = true; This will give you autodetection of USB UPSes, network access limited to localhost (for security) and the shutdown sequence will be started when the system when the battery level is below 50 percent, or when the UPS has calculated that it has 5 minutes or less of remaining power-on time. You can provide your own configuration file contents with this option: services.apcupsd.configText = "contents of apcupsd.conf"; Bug/annoyance 1: When apcupsd calls "wall" (on powerfail etc. events), it prints an error message because stdout is not connected to a tty (it is connected to the journal): wall: cannot get tty name: Inappropriate ioctl for device The message still gets through though, to ctrl-alt-f[1-6] terminals. Bug/annoyance 2: apcupsd tries to call "mail" (on powerfail etc. events), and that fails because I'm not passing in any mail program at the moment (because that would require more configuration options). A solution to this would be to simply let the user fully configure the apcupsd event handling logic in nix. --- modules/module-list.nix | 1 + modules/services/monitoring/apcupsd.nix | 83 +++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 modules/services/monitoring/apcupsd.nix diff --git a/modules/module-list.nix b/modules/module-list.nix index 52b98e8bc09..fcbedaa9d9d 100644 --- a/modules/module-list.nix +++ b/modules/module-list.nix @@ -117,6 +117,7 @@ ./services/misc/rogue.nix ./services/misc/svnserve.nix ./services/misc/synergy.nix + ./services/monitoring/apcupsd.nix ./services/monitoring/dd-agent.nix ./services/monitoring/monit.nix ./services/monitoring/nagios/default.nix diff --git a/modules/services/monitoring/apcupsd.nix b/modules/services/monitoring/apcupsd.nix new file mode 100644 index 00000000000..5541fb92fe1 --- /dev/null +++ b/modules/services/monitoring/apcupsd.nix @@ -0,0 +1,83 @@ +{ config, pkgs, ... }: + +with pkgs.lib; + +let cfg = config.services.apcupsd; + configFile = pkgs.writeText "apcupsd.conf" '' + ## apcupsd.conf v1.1 ## + # apcupsd complains if the first line is not like above. + ${cfg.configText} + ''; +in + +{ + + ###### interface + + options = { + + services.apcupsd = { + + enable = mkOption { + default = false; + type = types.uniq types.bool; + description = '' + Whether to enable the APC UPS daemon. apcupsd monitors your UPS and + permits orderly shutdown of your computer in the event of a power + failure. User manual: http://www.apcupsd.com/manual/manual.html. + Note that apcupsd runs as root (to allow shutdown of computer). + You can check the status of your UPS with the "apcaccess" command. + ''; + }; + + configText = mkOption { + default = '' + UPSTYPE usb + NISIP 127.0.0.1 + BATTERYLEVEL 50 + MINUTES 5 + ''; + type = types.string; + description = '' + Contents of the runtime configuration file, apcupsd.conf. The default + settings makes apcupsd autodetect USB UPSes, limit network access to + localhost and shutdown the system when the battery level is below 50 + percent, or when the UPS has calculated that it has 5 minutes or less + of remaining power-on time. See man apcupsd.conf for details. + ''; + }; + + }; + + }; + + + ###### implementation + + config = mkIf cfg.enable { + + # Give users access to the "apcaccess" tool + environment.systemPackages = [ pkgs.apcupsd ]; + + # NOTE 1: apcupsd runs as root because it needs permission to run + # "shutdown" + # + # NOTE 2: When apcupsd calls "wall", it prints an error because stdout is + # not connected to a tty (it is connected to the journal): + # wall: cannot get tty name: Inappropriate ioctl for device + # The message still gets through. + # + # TODO: apcupsd calls "mail" on powerfail etc. events, how should we + # handle that? A configurable mail package or let the event logic be + # configured from nix expressions? + systemd.services.apcupsd = { + description = "UPS daemon"; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + ExecStart = "${pkgs.apcupsd}/bin/apcupsd -b -f ${configFile} -d1"; + }; + }; + + }; + +}