From 419a4166a794f5178862f43038d797f4fc918994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 21 Feb 2015 13:23:48 +0100 Subject: [PATCH] nixos/haproxy: small cleanup * Add option types * Rewrite option descriptions * /var/run/haproxy.pid => /run/haproxy.pid (canonical location) --- nixos/modules/services/networking/haproxy.nix | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/networking/haproxy.nix b/nixos/modules/services/networking/haproxy.nix index c2e2c2d7a41..887ea79c34b 100644 --- a/nixos/modules/services/networking/haproxy.nix +++ b/nixos/modules/services/networking/haproxy.nix @@ -9,13 +9,16 @@ with lib; services.haproxy = { enable = mkOption { + type = types.bool; default = false; - description = " - Enable the HAProxy. - "; + description = '' + Whether to enable HAProxy, the reliable, high performance TCP/HTTP + load balancer. + ''; }; config = mkOption { + type = types.lines; default = '' global @@ -51,9 +54,10 @@ with lib; stats refresh 5s stats realm Haproxy statistics ''; - description = " - Default configuration. - "; + description = '' + Contents of the HAProxy configuration file, + haproxy.conf. + ''; }; }; @@ -68,10 +72,10 @@ with lib; wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "forking"; - PIDFile = "/var/run/haproxy.pid"; + PIDFile = "/run/haproxy.pid"; ExecStartPre = "${pkgs.haproxy}/sbin/haproxy -c -q -f ${haproxyCfg}"; - ExecStart = "${pkgs.haproxy}/sbin/haproxy -D -f ${haproxyCfg} -p /var/run/haproxy.pid"; - ExecReload = "-${pkgs.bash}/bin/bash -c \"exec ${pkgs.haproxy}/sbin/haproxy -D -f ${haproxyCfg} -p /var/run/haproxy.pid -sf $MAINPID\""; + ExecStart = "${pkgs.haproxy}/sbin/haproxy -D -f ${haproxyCfg} -p /run/haproxy.pid"; + ExecReload = "-${pkgs.bash}/bin/bash -c \"exec ${pkgs.haproxy}/sbin/haproxy -D -f ${haproxyCfg} -p /run/haproxy.pid -sf $MAINPID\""; }; };