diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-29 20:18:02 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-30 15:13:47 +0200 |
commit | 6d416b9cc8ce39e5f97737b749d4bb1fb4f86df0 (patch) | |
tree | 0b39f7e4eb9d528642cabfd8b3418fedb80a0bcd /src/nspawn/nspawn.c | |
parent | 0659e8baf25c86cadac8cac79f4e800501694c8b (diff) |
nspawn: Fix regression with exit status
Commit 113cea8 introduced a bug that caused the exit code of systemd-nspawn
to not reflect the exit code of the program executed in the container.
Diffstat (limited to 'src/nspawn/nspawn.c')
-rw-r--r-- | src/nspawn/nspawn.c | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 0a8dc0cf30..be0e6b5386 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -2645,12 +2645,21 @@ static int change_uid_gid(char **_home) { } /* - * Return 0 in case the container is being rebooted, has been shut - * down or exited successfully. On failures a negative value is - * returned. + * Return values: + * < 0 : wait_for_terminate() failed to get the state of the + * container, the container was terminated by a signal, or + * failed for an unknown reason. No change is made to the + * container argument. + * > 0 : The program executed in the container terminated with an + * error. The exit code of the program executed in the + * container is returned. No change is made to the container + * argument. + * 0 : The container is being rebooted, has been shut down or exited + * successfully. The container argument has been set to either + * CONTAINER_TERMINATED or CONTAINER_REBOOTED. * - * The status of the container "CONTAINER_TERMINATED" or - * "CONTAINER_REBOOTED" will be saved in the container argument + * That is, success is indicated by a return value of zero, and an + * error is indicated by a non-zero value. */ static int wait_for_container(pid_t pid, ContainerStatus *container) { int r; @@ -2672,7 +2681,6 @@ static int wait_for_container(pid_t pid, ContainerStatus *container) { } else { log_error("Container %s failed with error code %i.", arg_machine, status.si_status); - r = -1; } break; @@ -3299,8 +3307,12 @@ check_container_status: r = wait_for_container(pid, &container_status); pid = 0; - if (r < 0) { - r = EXIT_FAILURE; + if (r != 0) { + /* If r < 0, explicitly set to EXIT_FAILURE, + * otherwise return the exit code of the + * containered process. */ + if (r < 0) + r = EXIT_FAILURE; break; } else if (container_status == CONTAINER_TERMINATED) break; |