Only get dbus user on sudo-user-present
parent
b7ef0596b9
commit
f7ec66362e
|
@ -58,8 +58,11 @@ async def notify_from_ems_status_msg(
|
||||||
|
|
||||||
if is_subproc:
|
if is_subproc:
|
||||||
global _dbus_uid
|
global _dbus_uid
|
||||||
if not _dbus_uid:
|
su = os.environ.get('SUDO_USER')
|
||||||
su = os.environ['SUDO_USER']
|
if (
|
||||||
|
not _dbus_uid
|
||||||
|
and su
|
||||||
|
):
|
||||||
|
|
||||||
# TODO: use `trio` but we need to use nursery.start()
|
# TODO: use `trio` but we need to use nursery.start()
|
||||||
# to use pipes?
|
# to use pipes?
|
||||||
|
|
Loading…
Reference in New Issue