Signed-off-by: Michael Fritch <mfritch@suse.com>
return True
def command_check_host():
+ # type: () -> None
# caller already checked for docker/podman
logger.info('podman|docker (%s) is present' % container_path)
##################################
def command_prepare_host():
+ # type: () -> None
logger.info('Verifying podman|docker is present...')
pkg = None
if not container_path:
f.write(args.expect_hostname + '\n')
logger.info('Repeating the final host check...')
- return command_check_host()
+ command_check_host()
##################################