[systemd-commits] src/service.c
Lennart Poettering
lennart at kemper.freedesktop.org
Thu Sep 2 19:08:23 PDT 2010
src/service.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
New commits:
commit f73d93a4d9403d44bf3661bf383ac1385e5b5eb6
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 3 04:08:16 2010 +0200
service: calculate sysv startup priority only in start runlevels
diff --git a/src/service.c b/src/service.c
index 6539a24..efa5277 100644
--- a/src/service.c
+++ b/src/service.c
@@ -2747,11 +2747,12 @@ static int service_enumerate(Manager *m) {
if (de->d_name[0] == 'S') {
- SERVICE(service)->sysv_start_priority =
- MAX(a*10 + b, SERVICE(service)->sysv_start_priority);
+ if (rcnd_table[i].type == RUNLEVEL_UP || rcnd_table[i].type == RUNLEVEL_SYSINIT) {
+ SERVICE(service)->sysv_start_priority =
+ MAX(a*10 + b, SERVICE(service)->sysv_start_priority);
- if (rcnd_table[i].type == RUNLEVEL_UP || rcnd_table[i].type == RUNLEVEL_SYSINIT)
SERVICE(service)->sysv_enabled = true;
+ }
if ((r = set_ensure_allocated(&runlevel_services[i], trivial_hash_func, trivial_compare_func)) < 0)
goto finish;
More information about the systemd-commits
mailing list