From 38720618e2382cae228b8b839203b26ab344a26c Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Thu, 03 Jan 2013 22:23:18 +0000 Subject: Check system before setting up the environ --- (limited to 'commands/check-system') diff --git a/commands/check-system b/commands/check-system index f610bcb..f471f58 100755 --- a/commands/check-system +++ b/commands/check-system @@ -1,15 +1,10 @@ #!/usr/bin/python -u import argparse -import sys import os import common -from devbot import system - -common.setup() - parser = argparse.ArgumentParser(description='Check the system') parser.add_argument("--update", action="store_true", help="first of all update the system") @@ -21,8 +16,9 @@ args = parser.parse_args() interactive = "SUGAR_BUILDBOT" not in os.environ -if not system.check(update=args.update, - remove=args.remove, - test=args.test, - interactive=interactive): - sys.exit(1) +check_args = {"update": args.update, + "remove": args.remove, + "test": args.test, + "interactive": interactive} + +common.setup(check_args=check_args) -- cgit v0.9.1