From f293455474b0144cf9821244cc44a550670aea01 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 31 Oct 2012 14:24:22 +0100 Subject: [PATCH] dhcpcd: Don't duplicate log messages Dhcpcd writes log messages to both syslog and stderr. So ignore stderr. --- modules/services/networking/dhcpcd.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/services/networking/dhcpcd.nix b/modules/services/networking/dhcpcd.nix index f2300a9529d8..3abd77c8eeb0 100644 --- a/modules/services/networking/dhcpcd.nix +++ b/modules/services/networking/dhcpcd.nix @@ -103,6 +103,7 @@ in PIDFile = "/run/dhcpcd.pid"; ExecStart = "@${dhcpcd}/sbin/dhcpcd dhcpcd --config ${dhcpcdConf}"; ExecReload = "${dhcpcd}/sbin/dhcpcd --rebind"; + StandardError = "null"; }; };