Message ID | CAP96LmPVajLT8P_SBzJBnW1vJqDhU9-XRdVdpyReuwB=utNFLQ@mail.gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [BlueZ] obexd: point DBUS service to obex.service directly | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | fail |
This is an automated email and please do not reply to this email. Dear Submitter, Thank you for submitting the patches to the linux bluetooth mailing list. While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository. ----- Output ----- Please resolve the issue and submit the patches again. --- Regards, Linux Bluetooth
diff --git a/obexd/src/obex.service.in b/obexd/src/obex.service.in index fc0dce993..c3f822f55 100644 --- a/obexd/src/obex.service.in +++ b/obexd/src/obex.service.in @@ -5,6 +5,3 @@ Description=Bluetooth OBEX service Type=dbus BusName=org.bluez.obex ExecStart=@pkglibexecdir@/obexd - -[Install] -Alias=dbus-org.bluez.obex.service diff --git a/obexd/src/org.bluez.obex.service b/obexd/src/org.bluez.obex.service index a53808884..c3917e415 100644 --- a/obexd/src/org.bluez.obex.service +++ b/obexd/src/org.bluez.obex.service @@ -1,4 +1,4 @@ [D-BUS Service] Name=org.bluez.obex Exec=/bin/false -SystemdService=dbus-org.bluez.obex.service +SystemdService=obex.service
From 4e5914a69c5e9d16287052dcccba25dd43cddc29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Werlang?= <beppe85@gmail.com> Date: Sun, 25 Sep 2022 14:38:45 -0300 Subject: [PATCH BlueZ] obexd: point DBUS service to obex.service directly dbus-org.bluez.obex.service user service is not available until obex.service is enabled in systemd. By pointing DBUS service directly to obex.service, this step can be avoided. The [Alias] section in systemd services then becomes unnecessary. --- obexd/src/obex.service.in | 3 --- obexd/src/org.bluez.obex.service | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-)