mirror of
https://github.com/containers/podman.git
synced 2025-10-14 17:55:51 +08:00
utils: use the user session for systemd
when running as rootless, use the user session bus. It is already implemented in the pkg/cgroups so just re-use it. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
@ -3,6 +3,8 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"github.com/containers/libpod/pkg/cgroups"
|
||||
"github.com/containers/libpod/pkg/rootless"
|
||||
systemdDbus "github.com/coreos/go-systemd/dbus"
|
||||
"github.com/godbus/dbus"
|
||||
)
|
||||
@ -10,10 +12,20 @@ import (
|
||||
// RunUnderSystemdScope adds the specified pid to a systemd scope
|
||||
func RunUnderSystemdScope(pid int, slice string, unitName string) error {
|
||||
var properties []systemdDbus.Property
|
||||
conn, err := systemdDbus.New()
|
||||
var conn *systemdDbus.Conn
|
||||
var err error
|
||||
|
||||
if rootless.IsRootless() {
|
||||
conn, err = cgroups.GetUserConnection(rootless.GetRootlessUID())
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
conn, err = systemdDbus.New()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
properties = append(properties, systemdDbus.PropSlice(slice))
|
||||
properties = append(properties, newProp("PIDs", []uint32{uint32(pid)}))
|
||||
properties = append(properties, newProp("Delegate", true))
|
||||
|
Reference in New Issue
Block a user