def suspend_handler(args):
matches = suspend_host(args.host)
if not matches:
print('No matching, unsuspended hosts.')
return
with logbook.StreamHandler(sys.stdout, bubble=True):
for host in matches:
log.info('Suspended {}', host)
评论列表
文章目录