mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
Revert "core: Add information on which condition failed to job skipped format string"
This reverts commit c97bef458b
.
This commit is contained in:
parent
061f0084eb
commit
b8643ee2ea
@ -571,7 +571,7 @@ static void job_emit_start_message(Unit *u, uint32_t job_id, JobType t) {
|
||||
}
|
||||
}
|
||||
|
||||
static char* job_done_message_format(Unit *u, JobType t, JobResult result) {
|
||||
static const char* job_done_message_format(Unit *u, JobType t, JobResult result) {
|
||||
static const char* const generic_finished_start_job[_JOB_RESULT_MAX] = {
|
||||
[JOB_DONE] = "Started %s.",
|
||||
[JOB_TIMEOUT] = "Timed out starting %s.",
|
||||
@ -605,59 +605,36 @@ static char* job_done_message_format(Unit *u, JobType t, JobResult result) {
|
||||
assert(t < _JOB_TYPE_MAX);
|
||||
|
||||
/* Show condition check message if the job did not actually do anything due to failed condition. */
|
||||
if (t == JOB_START && result == JOB_DONE && !u->condition_result) {
|
||||
Condition *c;
|
||||
|
||||
LIST_FOREACH(conditions, c, u->conditions)
|
||||
if (c->result != CONDITION_SUCCEEDED)
|
||||
break;
|
||||
|
||||
if (!c)
|
||||
return strdup("%s was skipped because of a failed condition check.");
|
||||
|
||||
return strjoin(
|
||||
"%s was skipped because of a failed condition check: ",
|
||||
condition_type_to_string(c->type),
|
||||
"=",
|
||||
c->trigger ? "|" : "",
|
||||
c->negate ? "!" : "",
|
||||
c->parameter,
|
||||
".");
|
||||
}
|
||||
if (t == JOB_START && result == JOB_DONE && !u->condition_result)
|
||||
return "Condition check resulted in %s being skipped.";
|
||||
|
||||
if (IN_SET(t, JOB_START, JOB_STOP, JOB_RESTART)) {
|
||||
const UnitStatusMessageFormats *formats = &UNIT_VTABLE(u)->status_message_formats;
|
||||
if (formats->finished_job) {
|
||||
format = formats->finished_job(u, t, result);
|
||||
if (format)
|
||||
return strdup(format);
|
||||
return format;
|
||||
}
|
||||
|
||||
format = (t == JOB_START ? formats->finished_start_job : formats->finished_stop_job)[result];
|
||||
if (format)
|
||||
return strdup(format);
|
||||
return format;
|
||||
}
|
||||
|
||||
/* Return generic strings */
|
||||
switch (t) {
|
||||
case JOB_START:
|
||||
format = generic_finished_start_job[result];
|
||||
break;
|
||||
return generic_finished_start_job[result];
|
||||
case JOB_STOP:
|
||||
case JOB_RESTART:
|
||||
format = generic_finished_stop_job[result];
|
||||
break;
|
||||
return generic_finished_stop_job[result];
|
||||
case JOB_RELOAD:
|
||||
format = generic_finished_reload_job[result];
|
||||
break;
|
||||
return generic_finished_reload_job[result];
|
||||
case JOB_VERIFY_ACTIVE:
|
||||
format = generic_finished_verify_active_job[result];
|
||||
break;
|
||||
return generic_finished_verify_active_job[result];
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return format ? strdup(format) : NULL;
|
||||
}
|
||||
|
||||
static const struct {
|
||||
@ -698,8 +675,8 @@ static const char* job_done_mid(JobType type, JobResult result) {
|
||||
}
|
||||
|
||||
static void job_emit_done_message(Unit *u, uint32_t job_id, JobType t, JobResult result) {
|
||||
_cleanup_free_ char *free_ident = NULL, *format = NULL;
|
||||
const char *ident;
|
||||
_cleanup_free_ char *free_ident = NULL;
|
||||
const char *ident, *format;
|
||||
|
||||
assert(u);
|
||||
assert(t >= 0);
|
||||
|
Loading…
Reference in New Issue
Block a user