diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-13 20:59:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-13 20:59:01 +0200 |
commit | 10a94420172b33a7472a16b2e829689dbc570cad (patch) | |
tree | 5499d906a3d812ab936d16faceaf1741bd6d0c2f /target.c | |
parent | c27488016e0e90569260bc513fa95acbad512ff5 (diff) |
systemctl: show sub state along active state
Diffstat (limited to 'target.c')
-rw-r--r-- | target.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -96,6 +96,12 @@ static UnitActiveState target_active_state(Unit *u) { return state_translation_table[TARGET(u)->state]; } +static const char *target_sub_state_to_string(Unit *u) { + assert(u); + + return state_string_table[TARGET(u)->state]; +} + int target_get_runlevel(Target *t) { static const struct { @@ -136,5 +142,6 @@ const UnitVTable target_vtable = { .start = target_start, .stop = target_stop, - .active_state = target_active_state + .active_state = target_active_state, + .sub_state_to_string = target_sub_state_to_string }; |