mirror of
https://github.com/systemd/systemd.git
synced 2024-10-31 16:21:26 +03:00
pid1: also show gc status for jobs like we do for units
This commit is contained in:
parent
2ab3050f6e
commit
f698d99cd5
@ -312,11 +312,13 @@ void job_dump(Job *j, FILE*f, const char *prefix) {
|
||||
"%s-> Job %u:\n"
|
||||
"%s\tAction: %s -> %s\n"
|
||||
"%s\tState: %s\n"
|
||||
"%s\tIrreversible: %s\n",
|
||||
"%s\tIrreversible: %s\n"
|
||||
"%s\tMay GC: %s\n",
|
||||
prefix, j->id,
|
||||
prefix, j->unit->id, job_type_to_string(j->type),
|
||||
prefix, job_state_to_string(j->state),
|
||||
prefix, yes_no(j->irreversible));
|
||||
prefix, yes_no(j->irreversible),
|
||||
prefix, yes_no(job_may_gc(j)));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user