Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check-system
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-14 11:01:37 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-14 11:01:37 (GMT)
commita75122d1f6b3cbdfb6456e4e559d66e6b8d77e25 (patch)
treece0328a09fa930c30c289487c6976775334dedfb /commands/check-system
parent8be37beabcbaef276a45a44ff94c8ea293c3f05a (diff)
Make system check interactive in all commands
Diffstat (limited to 'commands/check-system')
-rwxr-xr-xcommands/check-system10
1 files changed, 1 insertions, 9 deletions
diff --git a/commands/check-system b/commands/check-system
index 4429d90..f92e491 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -14,17 +14,9 @@ parser.add_argument("--test", action="store_true",
help="don't add or remove packages, test only")
args = parser.parse_args()
-interactive = "SUGAR_BUILDBOT" not in os.environ
-
check_args = {"update": args.update,
"remove": args.remove,
"test": args.test,
- "interactive": interactive,
"lazy": False}
-setup_args = {"check_args": check_args}
-
-if not interactive:
- setup_args["log_name"] = "check-system"
-
-common.setup(**setup_args)
+common.setup(log_name="check-system", check_args=check_args)