From c47c9d55202e4b7cafa8619d64fae7f23441fb79 Mon Sep 17 00:00:00 2001 From: Martin Gracik Date: Wed, 23 Mar 2011 14:15:15 +0100 Subject: [PATCH] Do not check if we have all commands --- src/pylorax/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index 328fdecd..cabaecc2 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -163,10 +163,13 @@ class Lorax(BaseLoraxClass): # do we have all lorax required commands? self.lcmds = constants.LoraxRequiredCommands() + + """ missing = self.lcmds.get_missing() if missing: logger.critical("missing required command: {0}".format(missing)) sys.exit(1) + """ # do we have a proper yum base object? logger.info("checking yum base object")