]> sourceware.org Git - lvm2.git/commitdiff
toollib: Fix misleading message when forking.
authorAlasdair G Kergon <agk@redhat.com>
Thu, 14 Apr 2016 16:21:02 +0000 (17:21 +0100)
committerAlasdair G Kergon <agk@redhat.com>
Thu, 14 Apr 2016 16:21:02 +0000 (17:21 +0100)
Commands like pvscan --background run entirely in the background,
but others fork only for polling.

tools/toollib.c

index 2ff5a3b1d98073db556a2768b559f21591838b5d..ce49773804e0f692f054f70c64f928712c468402 100644 (file)
@@ -54,7 +54,7 @@ int become_daemon(struct cmd_context *cmd, int skip_lvm)
                .sa_flags = SA_NOCLDSTOP,
        };
 
-       log_verbose("Forking background process: %s", cmd->cmd_line);
+       log_verbose("Forking background process from command: %s", cmd->cmd_line);
 
        sigaction(SIGCHLD, &act, NULL);
 
This page took 0.048472 seconds and 5 git commands to generate.