summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/generator-internals.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/generator-internals.c b/scripts/generator-internals.c
index 839206563..733e8189c 100644
--- a/scripts/generator-internals.c
+++ b/scripts/generator-internals.c
@@ -72,6 +72,9 @@ static bool _open_child(struct child_process *child, const char *cmd, const char
(void) close(pipe_fd[1]);
}
+ /* Suppressing any use of syslog */
+ (void) setenv("LVM_SUPPRESS_SYSLOG", "1", 1);
+
if (execv(cmd, (char *const *) argv) < 0)
_error("execv failed: %s\n", strerror(errno));
// Shouldn't get here unless exec failed.