mirror of
https://github.com/systemd/systemd.git
synced 2025-02-23 13:57:33 +03:00
properly recognize successfull scripts
This commit is contained in:
parent
6632c6023c
commit
bd982a8bae
@ -739,7 +739,7 @@ static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
||||
assert(s);
|
||||
assert(pid >= 0);
|
||||
|
||||
success = code == CLD_EXITED || status == 0;
|
||||
success = code == CLD_EXITED && status == 0;
|
||||
s->failure = s->failure || !success;
|
||||
|
||||
if (s->main_pid == pid) {
|
||||
@ -806,6 +806,8 @@ static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
||||
/* No further commands for this step, so let's
|
||||
* figure out what to do next */
|
||||
|
||||
log_debug("%s got final SIGCHLD for state %s", unit_id(u), state_string_table[s->state]);
|
||||
|
||||
switch (s->state) {
|
||||
|
||||
case SERVICE_START_PRE:
|
||||
|
4
socket.c
4
socket.c
@ -626,7 +626,7 @@ static void socket_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
||||
assert(s);
|
||||
assert(pid >= 0);
|
||||
|
||||
success = code == CLD_EXITED || status == 0;
|
||||
success = code == CLD_EXITED && status == 0;
|
||||
s->failure = s->failure || !success;
|
||||
|
||||
assert(s->control_pid == pid);
|
||||
@ -645,7 +645,7 @@ static void socket_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
||||
/* No further commands for this step, so let's figure
|
||||
* out what to do next */
|
||||
|
||||
log_debug("%s finished with state %s", unit_id(u), state_string_table[s->state]);
|
||||
log_debug("%s got final SIGCHLD for state %s", unit_id(u), state_string_table[s->state]);
|
||||
|
||||
switch (s->state) {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user