/usr/lib/xen-4.4/bin/xen-bugtool is in xen-utils-4.4 4.4.0-0ubuntu5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /usr/bin/python
# -*- mode: python; -*-
# Copyright (c) 2005, XenSource Ltd.
import sys
from xen.util import bugtool
if __name__ == "__main__":
try:
sys.exit(bugtool.main())
except KeyboardInterrupt:
print "\nInterrupted."
sys.exit(1)
|