Last change
on this file since 34 was
34,
checked in by hartmans, 18 years ago
|
Add xen and xen-common
|
-
Property svn:mime-type set to
text/script
|
File size:
353 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | # -*- mode: python; -*- |
---|
4 | |
---|
5 | # Copyright (c) 2005, XenSource Ltd. |
---|
6 | |
---|
7 | import sys |
---|
8 | |
---|
9 | sys.path.append('/usr/lib/python') |
---|
10 | sys.path.append('/usr/lib64/python') |
---|
11 | |
---|
12 | from xen.util import bugtool |
---|
13 | |
---|
14 | |
---|
15 | if __name__ == "__main__": |
---|
16 | try: |
---|
17 | sys.exit(bugtool.main()) |
---|
18 | except KeyboardInterrupt: |
---|
19 | print "\nInterrupted." |
---|
20 | sys.exit(1) |
---|
Note: See
TracBrowser
for help on using the repository browser.