source: trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-list @ 2610

Last change on this file since 2610 was 2516, checked in by price, 15 years ago

Style fixes in, and Debian changelog for, list and listuser.

  • Property svn:executable set to *
File size: 524 bytes
RevLine 
[2511]1#!/usr/bin/python
2"""
[2516]3Lists the VMs belonging to the remote user.
[2511]4"""
5
6from subprocess import PIPE, Popen, call
7import sys
8import os
9
[2516]10
[2511]11def main(argv):
12    if len(argv) < 1:
[2516]13        print >>sys.stderr, "usage: invirt-remote-list"
[2511]14        return 2
[2516]15
16    username = os.environ['REMOTE_USER'].rsplit('@ATHENA.MIT.EDU')[0]
[2511]17    p = Popen(['/usr/sbin/invirt-remote-listuser', username], stdout=PIPE)
18    output = p.communicate()[0]
19
20    print output
21    return p.returncode
22
[2516]23
[2511]24if __name__ == '__main__':
25    sys.exit(main(sys.argv))
Note: See TracBrowser for help on using the repository browser.