Systemd 找不到蓝牙服务

Systemd 找不到蓝牙服务

我使用内核为 5.15.28-1 的 Manjaro

我的问题与蓝牙有关。我有 bluez 5.61-1(我从 5.63-2 降级)。

我可以使用 systemctl 激活蓝牙,但不能从我编写的 systemd 服务激活蓝牙:

#/etc/systemd/system/bt-restart.service

 [Unit]
 Description=restart bt and connect keypad

 [Service]
 Type=oneshot
 User=root

 RemainAfterExit=yes

 ExecStart=/usr/bin/sleep 1
 ExecStart=-/usr/lib/systemd/system/bluetooth
 ExecStart=/usr/bin/sleep 3
 ExecStart=/home/jcw/bin/enable-bt.sh

 [Install]
 WantedBy=multi-user.target

输出来自

sudo systemctl status bt-restart

● bt-restart.service - restart bt and connect keypad
     Loaded: loaded (/etc/systemd/system/bt-restart.service; enabled; vendor preset: disabled)
     Active: active (exited) since Sat 2022-03-19 09:00:35 CET; 1h 27min ago
    Process: 2762 ExecStart=/usr/bin/sleep 1 (code=exited, status=0/SUCCESS)
    Process: 2763 ExecStart=/usr/lib/systemd/system/bluetooth (code=exited, status=0/SUCCESS)
    Process: 2764 ExecStart=/usr/bin/sleep 3 (code=exited, status=0/SUCCESS)
    Process: 2766 ExecStart=/home/jcw/bin/enable-bt.sh (code=exited, status=0/SUCCESS)
   Main PID: 2766 (code=exited, status=0/SUCCESS)
        CPU: 41ms

mars 19 08:59:50 jcw-k30amjafk31amj systemd[1]: Starting restart bt and connect keypad...
mars 19 08:59:51 jcw-k30amjafk31amj systemd[2763]: bt-restart.service: Executable /usr/lib/systemd/system/bluetooth missing,>
mars 19 09:00:35 jcw-k30amjafk31amj enable-bt.sh[2767]: Attempting to connect to 2B:24:13:DB:7C:99
mars 19 09:00:35 jcw-k30amjafk31amj enable-bt.sh[2767]: Failed to connect: org.bluez.Error.Failed
mars 19 09:00:35 jcw-k30amjafk31amj systemd[1]: Finished restart bt and connect keypad.

正如你可以看到的可执行文件 /usr/lib/systemd/system/bluetooth 丢失,systemd没有找到bluetooth.service。

但该文件存在。可以通过systemctl来访问。所以呢?

编辑:第二行末尾是“可执行文件/usr/lib/systemd/system/bluetooth丢失,跳过:没有这样的文件或目录”

答案1

目录中不应有可执行文件/usr/lib/systemd/system/

可能有一个/usr/lib/systemd/system/bluetooth.service,但它不是可执行文件:它只是一个服务定义文件,就像您自己的/etc/systemd/system/bt-restart.service.

尽管您可以.servicesystemctl命令中省略后缀,但您不能省略ExecStart=定义中的任何后缀,因此ExecStart=-/usr/lib/systemd/system/bluetooth没有意义。即使您指定了.../bluetooth.service,也无法以.service这种方式启动文件。

如果您只想让您的bt-restart.service程序bluetooth.service在运行时可用,您应该在以下[Unit]部分添加两行bt-restart.service

Wants=bluetooth.service
After=bluetooth.service

即“bt-restart.service需要bluetooth.service运行(但如果启动失败,系统不应该崩溃到恢复模式),并且bt-restart.service应该运行 bluetooth.service已开始。”

ExecStart=-/usr/lib/systemd/system/bluetooth那么你就根本不需要这条线了。

根据您所追求的具体行为,您可能需要使用BindsTo=PartOf=来代替Wants=.

如果您明确想要bluetooth.service如果它正在运行,请始终停止并重新启动它在您的 中bt-restart.service,那么您应该将您替换ExecStart=-/usr/lib/systemd/system/bluetooth为:

ExecStart=/bin/systemctl restart bluetooth.service

但是,如果您的目标是让enable-bt.sh脚本在每次bluetooth.service启动或重新启动时运行,那么以下组合

PartOf=bluetooth.service
After=bluetooth.service

应该做这项工作。

相关内容