mirror of
https://github.com/systemd/systemd.git
synced 2025-02-02 13:47:27 +03:00
service: warn if a dbus name is specified but the service type is not dbus
This commit is contained in:
parent
682fff7371
commit
7e2668c6fd
4
TODO
4
TODO
@ -23,6 +23,10 @@ Bugfixes:
|
||||
|
||||
Features:
|
||||
|
||||
* don't delete /tmp/systemd-namespace-* before a process is gone down
|
||||
|
||||
* don't delete /run/users/lennart if lennart is still logged in even if aging is used
|
||||
|
||||
* automount: implement expire
|
||||
|
||||
* vconsole: implement setterm -store -foreground xxx --background zzz
|
||||
|
@ -1135,6 +1135,9 @@ static int service_verify(Service *s) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (s->bus_name && s->type != SERVICE_DBUS)
|
||||
log_warning("%s has a D-Bus service name specified, but is not of type dbus. Ignoring.", UNIT(s)->id);
|
||||
|
||||
if (s->exec_context.pam_name && s->exec_context.kill_mode != KILL_CONTROL_GROUP) {
|
||||
log_error("%s has PAM enabled. Kill mode must be set to 'control-group'. Refusing.", UNIT(s)->id);
|
||||
return -EINVAL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user