mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
Display the systemctl status in green if state is "running" (#7094)
This commit is contained in:
parent
a524f12457
commit
92f34a9c47
@ -5239,11 +5239,13 @@ static int show_system_status(sd_bus *bus) {
|
||||
if (streq_ptr(mi.state, "degraded")) {
|
||||
on = ansi_highlight_red();
|
||||
off = ansi_normal();
|
||||
} else if (!streq_ptr(mi.state, "running")) {
|
||||
} else if (streq_ptr(mi.state, "running")) {
|
||||
on = ansi_highlight_green();
|
||||
off = ansi_normal();
|
||||
} else {
|
||||
on = ansi_highlight_yellow();
|
||||
off = ansi_normal();
|
||||
} else
|
||||
on = off = "";
|
||||
}
|
||||
|
||||
printf("%s%s%s %s\n", on, special_glyph(BLACK_CIRCLE), off, arg_host ? arg_host : hn);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user