/usr/share/pyshared/fusil/xhost.py is in fusil 1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from fusil.process.tools import locateProgram
def xhostCommand(xhost_program, user, allow=True):
if not xhostCommand.program:
xhostCommand.program = locateProgram(
xhost_program,
raise_error=True)
if allow:
prefix = '+'
else:
prefix = '-'
return [
xhostCommand.program,
"%slocal:%s" % (prefix, user)]
xhostCommand.program = None
|