blob: 1f907167fd216693dde972de5a46db5460599384 [file] [log] [blame]
schillinge2f5e85e2019-03-03 19:17:23 +01001import logging
2import subprocess
3import time
4
5
6def wait_until(cmd):
7 logging.debug('waiting for %s\n' % cmd)
8 while subprocess.call(cmd, shell=True) != 0:
9 time.sleep(1)