我正在使用D-Bus API为golang打电话并启动一个systemd服务(我只是调用一个shell脚本)。
我在/usr/share/dbus-1/system-services/org.freedesktop.hello.service
中制作了D-Bus服务[D-BUS Service]
Name=org.freedesktop.hello
Exec=/bin/false
User=root
SystemdService=hello.service
/lib/systemd/system/hello.service中的systemd服务
[Unit]
Description=Hello
[Service]
Type=dbus
BusName=org.freedesktop.hello
ExecStart=/opt/hello.sh
我正在努力实现下面代码的相同结果,这有效。
sudo gdbus call --system --dest org.freedesktop.hello --object-path /org/freedesktop/hello --method org.freedesktop.DBus.Introspectable.Introspect
但是我一直在Golang中收到错误,
The name org.freedesktop.hello was not provided by any .service files
我现在的代码是
package main
import (
"encoding/json"
"github.com/godbus/dbus"
"os"
"github.com/godbus/dbus/introspect"
)
func main() {
conn, error1 := dbus.SessionBus()
if error1 != nil {
panic(error1)
}
node, err2 := introspect.Call(conn.Object("org.freedesktop.hello", "/org/freedesktop/hello"))
if err2 != nil {
panic(err2)
}
data, _ := json.MarshalIndent(node, "", " ")
os.Stdout.Write(data)
}
关于这个东西的信息并不多,所以我想得到一些帮助。谢谢!
答案 0 :(得分:1)
sudo gdbus call --system ...
系统总线上的那个。
...
conn, error1 := dbus.SessionBus()
...
这是在会话总线上。
尝试使用类似dbus.SystemBus()
的内容。