28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From 537a766a4bb882cfa8bae9bdcc5c87ba48e7f550 Mon Sep 17 00:00:00 2001
|
||
From: liuxinhao <liuxinhao@kylinsec.com.cn>
|
||
Date: Mon, 24 Apr 2023 12:38:02 +0800
|
||
Subject: [PATCH] fix(DBus service): Fix the DBus Service Exec field problem
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
- 修复DBus服务配置,Exec字段宏填写错误,导致不能正常拉起认证服务的问题
|
||
---
|
||
data/com.kylinsec.Kiran.Authentication.service.in | 2 +-
|
||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
||
diff --git a/data/com.kylinsec.Kiran.Authentication.service.in b/data/com.kylinsec.Kiran.Authentication.service.in
|
||
index 683c943..278cacf 100644
|
||
--- a/data/com.kylinsec.Kiran.Authentication.service.in
|
||
+++ b/data/com.kylinsec.Kiran.Authentication.service.in
|
||
@@ -1,5 +1,5 @@
|
||
[D-BUS Service]
|
||
Name=com.kylinsec.Kiran.Authentication
|
||
-Exec=@INSTALL_BINDIR@/kiran-authentication-daemon
|
||
+Exec=@CMAKE_INSTALL_FULL_BINDIR@/kiran-authentication-daemon
|
||
User=root
|
||
SystemdService=kiran-authentication-daemon.service
|
||
--
|
||
2.33.0
|
||
|