[Pkg-libvirt-commits] [libvirt-sandbox] 15/42: image: add support for --debug arg
Guido Guenther
agx at moszumanska.debian.org
Sat May 27 16:27:08 UTC 2017
This is an automated email from the git hooks/post-receive script.
agx pushed a commit to branch debian/experimental
in repository libvirt-sandbox.
commit cd6b00cc0130c124d809d16ec9886a3fb3f21d17
Author: Daniel P. Berrange <berrange at redhat.com>
Date: Thu Jul 14 09:27:20 2016 +0100
image: add support for --debug arg
Add a --debug arg which disables catching of exceptions when
running virt-sandbox-image, to make it easier to diagnose
unexpected crashes
Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
---
libvirt-sandbox/image/cli.py | 54 +++++++++++++++++++++++++++-----------------
1 file changed, 33 insertions(+), 21 deletions(-)
diff --git a/libvirt-sandbox/image/cli.py b/libvirt-sandbox/image/cli.py
index 9b9c00b..a2e0bf1 100644
--- a/libvirt-sandbox/image/cli.py
+++ b/libvirt-sandbox/image/cli.py
@@ -143,6 +143,11 @@ def requires_name(parser):
parser.add_argument("-n","--name",
help=_("Name of the running sandbox"))
+def requires_debug(parser):
+ parser.add_argument("-d","--debug",
+ default=False, action="store_true",
+ help=_("Run in debug mode"))
+
def check_connect(connectstr):
supportedDrivers = ['lxc:///','qemu:///session','qemu:///system']
if not connectstr in supportedDrivers:
@@ -183,6 +188,7 @@ Example supported URI formats:
def gen_delete_args(subparser):
parser = gen_command_parser(subparser, "delete",
_("Delete template data"))
+ requires_debug(parser)
requires_template(parser)
requires_template_dir(parser)
parser.set_defaults(func=delete)
@@ -190,6 +196,7 @@ def gen_delete_args(subparser):
def gen_create_args(subparser):
parser = gen_command_parser(subparser, "create",
_("Create image from template data"))
+ requires_debug(parser)
requires_template(parser)
requires_connect(parser)
requires_template_dir(parser)
@@ -198,6 +205,7 @@ def gen_create_args(subparser):
def gen_run_args(subparser):
parser = gen_command_parser(subparser, "run",
_("Run an already built image"))
+ requires_debug(parser)
requires_name(parser)
requires_template(parser)
requires_connect(parser)
@@ -221,26 +229,30 @@ def main():
gen_create_args(subparser)
gen_run_args(subparser)
- try:
- args = parser.parse_args()
+ args = parser.parse_args()
+ if args.debug:
args.func(args)
sys.exit(0)
- except KeyboardInterrupt, e:
- sys.exit(0)
- except ValueError, e:
- for line in e:
- for l in line:
- sys.stderr.write("%s: %s\n" % (sys.argv[0], l))
- sys.stderr.flush()
- sys.exit(1)
- except IOError, e:
- sys.stderr.write("%s: %s: %s\n" % (sys.argv[0], e.filename, e.reason))
- sys.stderr.flush()
- sys.exit(1)
- except OSError, e:
- sys.stderr.write("%s: %s\n" % (sys.argv[0], e))
- sys.stderr.flush()
- sys.exit(1)
- except Exception, e:
- print e.message
- sys.exit(1)
+ else:
+ try:
+ args.func(args)
+ sys.exit(0)
+ except KeyboardInterrupt, e:
+ sys.exit(0)
+ except ValueError, e:
+ for line in e:
+ for l in line:
+ sys.stderr.write("%s: %s\n" % (sys.argv[0], l))
+ sys.stderr.flush()
+ sys.exit(1)
+ except IOError, e:
+ sys.stderr.write("%s: %s: %s\n" % (sys.argv[0], e.filename, e.reason))
+ sys.stderr.flush()
+ sys.exit(1)
+ except OSError, e:
+ sys.stderr.write("%s: %s\n" % (sys.argv[0], e))
+ sys.stderr.flush()
+ sys.exit(1)
+ except Exception, e:
+ print e.message
+ sys.exit(1)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libvirt-sandbox.git
More information about the Pkg-libvirt-commits
mailing list