From 9ce321d30bed9f952018f5bb63b3c8a3aebcd4ba Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Mon, 24 May 2021 17:51:21 -0500 Subject: fix --debug option Thanks to nissarin@gmail.com for the patch Closes: https://bugs.gentoo.org/751973 Signed-off-by: William Hubbs --- init.d/udev | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.d/udev b/init.d/udev index c7b8ade..705d87c 100644 --- a/init.d/udev +++ b/init.d/udev @@ -66,7 +66,8 @@ start_pre() { fi if yesno "${udev_debug:-NO}"; then - command_args="${command_args} --debug 2> /run/udevdebug.log" + command_args="${command_args} --debug" + error_log="/run/udevdebug.log" fi return 0 -- cgit v1.2.3-65-gdbad