21 lines
593 B
Diff
21 lines
593 B
Diff
https://bugs.gentoo.org/541708
|
|
|
|
just use `sudo` for everything
|
|
|
|
--- a/opt/google/chrome-remote-desktop/chrome-remote-desktop
|
|
+++ b/opt/google/chrome-remote-desktop/chrome-remote-desktop
|
|
@@ -1092,12 +1092,7 @@
|
|
|
|
|
|
def run_command_as_root(command):
|
|
- if os.getenv("DISPLAY"):
|
|
- # TODO(rickyz): Add a Polkit policy that includes a more friendly
|
|
- # message about what this command does.
|
|
- command = ["/usr/bin/pkexec"] + command
|
|
- else:
|
|
- command = ["/usr/bin/sudo", "-k", "--"] + command
|
|
+ command = ["/usr/bin/sudo", "-k", "--"] + command
|
|
|
|
return subprocess.call(command)
|
|
|