Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 09:54:03 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 09:54:03 (GMT)
commit934ec1619f77e73662e7ff0b0d7d2c35225c0c59 (patch)
tree49ff671d68cd59af8d62a71c324019fa6541a801 /commands
parent4f5c4825ee8b7c0eed917271c09afffb045799c1 (diff)
Add a --test option
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/check-system4
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/check-system b/commands/check-system
index d605434..ac0b9d3 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -13,6 +13,8 @@ parser.add_argument("--update", action="store_true",
help="first of all update the system")
parser.add_argument("--remove", action="store_true",
help="remove all the unnecessary packages")
+parser.add_argument("--test", action="store_true",
+ help="don't add or remove packages, test only")
args = parser.parse_args()
-system.check(update=args.update, remove=args.remove)
+system.check(update=args.update, remove=args.remove, test=args.test)