From: Lennart Poettering Date: Sat, 2 May 2015 15:42:55 +0000 (+0200) Subject: core: bus name units should not allow aliases or instances X-Git-Tag: v220~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e05ad7bcc87f652cea321224f8eeb32e21d18e0c;p=thirdparty%2Fsystemd.git core: bus name units should not allow aliases or instances --- diff --git a/src/core/busname.c b/src/core/busname.c index 8e92fb47fe1..1278c966388 100644 --- a/src/core/busname.c +++ b/src/core/busname.c @@ -1027,6 +1027,9 @@ const UnitVTable busname_vtable = { "Install\0", .private_section = "BusName", + .no_alias = true, + .no_instances = true, + .init = busname_init, .done = busname_done, .load = busname_load,