Changeset 2096 for trunk/scripts/vnc-client
- Timestamp:
- Feb 5, 2009, 3:19:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/vnc-client/invirt-vnc-client
r1973 r2096 160 160 from subprocess import PIPE, Popen 161 161 try: 162 p = Popen(["remctl", " remote", "control", args[0], "vnctoken"],162 p = Popen(["remctl", "xvm-remote.mit.edu", "control", args[0], "vnctoken"], 163 163 stdout=PIPE) 164 164 except OSError: 165 165 if verbose: print "remctl not found in path. Trying remctl locker." 166 166 p = Popen(["athrun", "remctl", "remctl", 167 " remote", "control", args[0], "vnctoken"],167 "xvm-remote.mit.edu", "control", args[0], "vnctoken"], 168 168 stdout=PIPE) 169 169 authtoken = p.communicate()[0]
Note: See TracChangeset
for help on using the changeset viewer.