Do not check if we have all commands

This commit is contained in:
Martin Gracik 2011-03-23 14:15:15 +01:00
parent c8a52d628a
commit c47c9d5520
1 changed files with 3 additions and 0 deletions

View File

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