diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-11 01:20:46 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-11 01:20:57 +0200 |
commit | 17bb73821c750f8df876114e6d5e116537f335e5 (patch) | |
tree | 73e11109ce9153c1de388a931cf74a930376e440 /src | |
parent | 7740296dcf581bbaaffa74f6f97a97d1def85e12 (diff) |
systemctl: move status further down
Diffstat (limited to 'src')
-rw-r--r-- | src/systemctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 799f57d006..666cebfcdb 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1100,9 +1100,6 @@ static void print_status_info(UnitStatusInfo *i) { else if (i->what) printf("\t What: %s\n", i->what); - if (i->status_text) - printf("\t Status: \"%s\"\n", i->status_text); - if (i->accept) printf("\tAccepted: %u; Connected: %u\n", i->n_accepted, i->n_connections); @@ -1175,6 +1172,9 @@ static void print_status_info(UnitStatusInfo *i) { printf("\n"); } + if (i->status_text) + printf("\t Status: \"%s\"\n", i->status_text); + if (i->default_control_group) { unsigned c; |