From 4f5c4825ee8b7c0eed917271c09afffb045799c1 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Thu, 15 Nov 2012 09:43:14 +0000 Subject: Drop the auto prefix, doesn't make much sense --- (limited to 'commands') diff --git a/commands/check-system b/commands/check-system index ef559b1..d605434 100755 --- a/commands/check-system +++ b/commands/check-system @@ -9,10 +9,10 @@ from devbot import system common.setup() parser = argparse.ArgumentParser(description='Check the system') -parser.add_argument("--autoupdate", action="store_true", +parser.add_argument("--update", action="store_true", help="first of all update the system") -parser.add_argument("--autoremove", action="store_true", +parser.add_argument("--remove", action="store_true", help="remove all the unnecessary packages") args = parser.parse_args() -system.check(autoupdate=args.autoupdate, autoremove=args.autoremove) +system.check(update=args.update, remove=args.remove) -- cgit v0.9.1