Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check-system
diff options
context:
space:
mode:
Diffstat (limited to 'commands/check-system')
-rwxr-xr-xcommands/check-system7
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/check-system b/commands/check-system
index 63b86ed..4429d90 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -22,4 +22,9 @@ check_args = {"update": args.update,
"interactive": interactive,
"lazy": False}
-common.setup(log_name="check-system", check_args=check_args)
+setup_args = {"check_args": check_args}
+
+if not interactive:
+ setup_args["log_name"] = "check-system"
+
+common.setup(**setup_args)