/usr/lib/parallax/parallax-askpass2 is in python-parallax 1.0.1-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/python
import os
import sys
parent, bindir = os.path.split(os.path.dirname(os.path.abspath(sys.argv[0])))
if os.path.exists(os.path.join(parent, 'parallax')):
sys.path.insert(0, parent)
from parallax.askpass_client import askpass_main
askpass_main()
|