Do not check if we have all commands
This commit is contained in:
parent
507735e127
commit
024f7137c6
@ -163,10 +163,13 @@ class Lorax(BaseLoraxClass):
|
|||||||
|
|
||||||
# do we have all lorax required commands?
|
# do we have all lorax required commands?
|
||||||
self.lcmds = constants.LoraxRequiredCommands()
|
self.lcmds = constants.LoraxRequiredCommands()
|
||||||
|
|
||||||
|
"""
|
||||||
missing = self.lcmds.get_missing()
|
missing = self.lcmds.get_missing()
|
||||||
if missing:
|
if missing:
|
||||||
logger.critical("missing required command: {0}".format(missing))
|
logger.critical("missing required command: {0}".format(missing))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
"""
|
||||||
|
|
||||||
# do we have a proper yum base object?
|
# do we have a proper yum base object?
|
||||||
logger.info("checking yum base object")
|
logger.info("checking yum base object")
|
||||||
|
Loading…
Reference in New Issue
Block a user