summaryrefslogtreecommitdiff
path: root/src/target.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-11 17:46:27 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-11 17:46:27 +0200
commiteaf91020117150567aee61d1324067c307e18950 (patch)
treef2d30eff418e2a7690f2e3570d6e7fab3a687a11 /src/target.c
parent830f6caa77edbdafabba0869a205f2ba5095f758 (diff)
target: don't synthesize a runlevel property for targets anymore since we don't need it anymore and it is crutfy
Diffstat (limited to 'src/target.c')
-rw-r--r--src/target.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/target.c b/src/target.c
index 778cc6e0f1..8fcb46d229 100644
--- a/src/target.c
+++ b/src/target.c
@@ -183,35 +183,6 @@ static const char *target_sub_state_to_string(Unit *u) {
return target_state_to_string(TARGET(u)->state);
}
-int target_get_runlevel(Target *t) {
-
- static const struct {
- const char *special;
- const int runlevel;
- } table[] = {
- { SPECIAL_RUNLEVEL5_TARGET, '5' },
- { SPECIAL_RUNLEVEL4_TARGET, '4' },
- { SPECIAL_RUNLEVEL3_TARGET, '3' },
- { SPECIAL_RUNLEVEL2_TARGET, '2' },
- { SPECIAL_RESCUE_TARGET, '1' },
- { SPECIAL_POWEROFF_TARGET, '0' },
- { SPECIAL_REBOOT_TARGET, '6' },
- };
-
- unsigned i;
-
- assert(t);
-
- /* Tries to determine if this is a SysV runlevel and returns
- * it if that is so. */
-
- for (i = 0; i < ELEMENTSOF(table); i++)
- if (unit_has_name(UNIT(t), table[i].special))
- return table[i].runlevel;
-
- return 0;
-}
-
static const char* const target_state_table[_TARGET_STATE_MAX] = {
[TARGET_DEAD] = "dead",
[TARGET_ACTIVE] = "active"