_run_qrexec_repo: default C local in subprocess call
This commit is contained in:
parent
0bacf37994
commit
51acbde8d5
@ -20,6 +20,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
from PyQt5 import QtWidgets, QtCore, QtGui # pylint: disable=import-error
|
from PyQt5 import QtWidgets, QtCore, QtGui # pylint: disable=import-error
|
||||||
|
|
||||||
@ -34,13 +35,18 @@ qmemman_config_path = '/etc/qubes/qmemman.conf'
|
|||||||
|
|
||||||
|
|
||||||
def _run_qrexec_repo(service, arg=''):
|
def _run_qrexec_repo(service, arg=''):
|
||||||
|
# Set default locale to C in order to prevent error msg
|
||||||
|
# in subprocess call related to falling back to C locale
|
||||||
|
env = os.environ
|
||||||
|
env['LC_ALL'] = 'C'
|
||||||
# Fake up a "qrexec call" to dom0 because dom0 can't qrexec to itself yet
|
# Fake up a "qrexec call" to dom0 because dom0 can't qrexec to itself yet
|
||||||
cmd = '/etc/qubes-rpc/' + service
|
cmd = '/etc/qubes-rpc/' + service
|
||||||
p = subprocess.run(
|
p = subprocess.run(
|
||||||
['sudo', cmd, arg],
|
['sudo', cmd, arg],
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE,
|
stderr=subprocess.PIPE,
|
||||||
check=False
|
check=False,
|
||||||
|
env=env
|
||||||
)
|
)
|
||||||
if p.stderr:
|
if p.stderr:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
|
Loading…
Reference in New Issue
Block a user