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-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)