summaryrefslogtreecommitdiff
path: root/udevstart.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-08-11 17:32:59 +0200
committerKay Sievers <kay.sievers@suse.de>2005-08-11 17:32:59 +0200
commit27f877e60f1c1793d6fafdd888e7e367c44b2eb9 (patch)
tree9c44dd776b7799bae3bfcf6ea445bb59c1a4605f /udevstart.c
parent7fd0de4984deac2e51f9b85c156f200beadbc7ef (diff)
allow logging of all output from executed tools
If USE_DEBUG=true and udev_log="debug", all output of the forked programs to stdout and stderr is send to syslog. Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'udevstart.c')
-rw-r--r--udevstart.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/udevstart.c b/udevstart.c
index 23a13e08ff..90b87b8377 100644
--- a/udevstart.c
+++ b/udevstart.c
@@ -33,6 +33,7 @@
#include <ctype.h>
#include <dirent.h>
#include <signal.h>
+#include <syslog.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/types.h>
@@ -164,7 +165,7 @@ run:
if (strncmp(name_loop->name, "socket:", strlen("socket:")) == 0)
pass_env_to_socket(&name_loop->name[strlen("socket:")], devpath, "add");
else
- execute_program(name_loop->name, udev.subsystem, NULL, 0, NULL);
+ run_program(name_loop->name, udev.subsystem, NULL, 0, NULL, (udev_log_priority >= LOG_DEBUG));
}
}
exit: