[systemd-commits] src/service.c
Lennart Poettering
lennart at kemper.freedesktop.org
Fri Sep 10 16:32:05 PDT 2010
src/service.c | 22 +---------------------
1 file changed, 1 insertion(+), 21 deletions(-)
New commits:
commit ee0dd8021b3d6203235c8b0cd014431c8fb38d8f
Author: Lennart Poettering <lennart at poettering.net>
Date: Sat Sep 11 01:31:58 2010 +0200
service: don't automatically add D-Bus service name as an alias to all dbus service, rely on manual symlinks to allow disabling of dbus services
diff --git a/src/service.c b/src/service.c
index efa5277..1dc3e1e 100644
--- a/src/service.c
+++ b/src/service.c
@@ -824,22 +824,6 @@ static int service_load_sysv(Service *s) {
return 0;
}
-static int service_add_bus_name(Service *s) {
- char *n;
- int r;
-
- assert(s);
- assert(s->bus_name);
-
- if (asprintf(&n, "dbus-%s.service", s->bus_name) < 0)
- return 0;
-
- r = unit_merge_by_name(UNIT(s), n);
- free(n);
-
- return r;
-}
-
static int service_verify(Service *s) {
assert(s);
@@ -929,13 +913,9 @@ static int service_load(Unit *u) {
if ((r = sysv_fix_order(s)) < 0)
return r;
- if (s->bus_name) {
- if ((r = service_add_bus_name(s)) < 0)
- return r;
-
+ if (s->bus_name)
if ((r = unit_watch_bus_name(u, s->bus_name)) < 0)
return r;
- }
if (s->type == SERVICE_NOTIFY && s->notify_access == NOTIFY_NONE)
s->notify_access = NOTIFY_MAIN;
More information about the systemd-commits
mailing list