From ee434cc3d61c48e90378a66c35433419abe94a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 16 Dec 2009 19:45:19 +0000 Subject: [PATCH] Using wpa_supplicant feature to log to syslog, instead of stdout (which, in the actual upstart job, meant /dev/console) svn path=/nixos/trunk/; revision=19003 --- modules/services/networking/wpa_supplicant.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/services/networking/wpa_supplicant.nix b/modules/services/networking/wpa_supplicant.nix index 10c9041cf3ee..abf79c5d554c 100644 --- a/modules/services/networking/wpa_supplicant.nix +++ b/modules/services/networking/wpa_supplicant.nix @@ -56,7 +56,8 @@ in exec = "${pkgs.wpa_supplicant}/sbin/wpa_supplicant " + - "-C /var/run/wpa_supplicant -c ${configFile} -i${config.networking.WLANInterface}"; + "-s -C /var/run/wpa_supplicant " + + "-c ${configFile} -i${config.networking.WLANInterface}"; }; };