Changeset 2096 for trunk/scripts


Ignore:
Timestamp:
Feb 5, 2009, 3:19:32 AM (15 years ago)
Author:
broder
Message:

Use the FQDN for xvm-remote instead of an unqualified name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/vnc-client/invirt-vnc-client

    r1973 r2096  
    160160        from subprocess import PIPE, Popen
    161161        try:
    162             p = Popen(["remctl", "remote", "control", args[0], "vnctoken"],
     162            p = Popen(["remctl", "xvm-remote.mit.edu", "control", args[0], "vnctoken"],
    163163                      stdout=PIPE)
    164164        except OSError:
    165165            if verbose: print "remctl not found in path. Trying remctl locker."
    166166            p = Popen(["athrun", "remctl", "remctl",
    167                        "remote", "control", args[0], "vnctoken"],
     167                       "xvm-remote.mit.edu", "control", args[0], "vnctoken"],
    168168                      stdout=PIPE)
    169169        authtoken = p.communicate()[0]
Note: See TracChangeset for help on using the changeset viewer.