Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/check-system
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check-system')
-rwxr-xr-xscripts/check-system4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check-system b/scripts/check-system
index f1f6622..d62d4a2 100755
--- a/scripts/check-system
+++ b/scripts/check-system
@@ -89,9 +89,9 @@ def run_checks(distro, checks, packages):
to_install = []
for check in checks:
- check_name = check["check"]
checker = checkers[check["checker"]]
- if checker(check_name):
+ if checker(check["check"]):
+ check_name = check.get("check_name", check["check"])
if distro in packages[check_name]:
package = packages[check_name][distro]