summaryrefslogtreecommitdiffstats
path: root/Sshuttle VPN.app/Contents/Resources/stupid.py
diff options
context:
space:
mode:
Diffstat (limited to 'Sshuttle VPN.app/Contents/Resources/stupid.py')
-rw-r--r--Sshuttle VPN.app/Contents/Resources/stupid.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/Sshuttle VPN.app/Contents/Resources/stupid.py b/Sshuttle VPN.app/Contents/Resources/stupid.py
deleted file mode 100644
index fdb1e0b..0000000
--- a/Sshuttle VPN.app/Contents/Resources/stupid.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import os
-
-pid = os.fork()
-if pid == 0:
- # child
- try:
- os.setsid()
- #os.execvp('sudo', ['sudo', 'SSH_ASKPASS=%s' % os.path.abspath('askpass.py'), 'ssh', 'afterlife', 'ls'])
- os.execvp('ssh', ['ssh', 'afterlife', 'ls'])
- finally:
- os._exit(44)
-else:
- # parent
- os.wait()