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>2012-11-15 09:43:14 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 09:43:14 (GMT)
commit4f5c4825ee8b7c0eed917271c09afffb045799c1 (patch)
tree340de95012142d131dd2f7e63a24b699eaedc1d7 /commands/check-system
parent954ab5909cc53c5fd697a013b683409bc93c69bc (diff)
Drop the auto prefix, doesn't make much sense
Diffstat (limited to 'commands/check-system')
-rwxr-xr-xcommands/check-system6
1 files changed, 3 insertions, 3 deletions
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)