summaryrefslogtreecommitdiffstats
path: root/planetlab/pssh/bin/pssh-askpass
blob: beb9e8b79e0f6cb0d51df8c4cfade1d5da1494a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env 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, 'psshlib')):
    sys.path.insert(0, parent)

from psshlib.askpass_client import askpass_main
askpass_main()