mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 02:30:08 +01:00
8 lines
123 B
Bash
8 lines
123 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
||
|
|
exec dbus-launch --exit-with-session "$@"
|
||
|
|
else
|
||
|
|
exec "$@"
|
||
|
|
fi
|