Home | History | Annotate | Download | only in health

Lines Matching refs:script

37     This stops and returns False at the first script failure.
39 @param scripts: A list of lists. Where the inner list is the script name
46 for script in scripts:
47 logging.info('Running %s', ' '.join(script))
48 return_code = subprocess.call(script)
51 (' '.join(script), return_code))
63 @param scripts: A list of lists, where the inner list is the script name
72 for script in scripts:
73 logging.info('Running %s', ' '.join(script))
74 return_code = subprocess.call(script)
77 (' '.join(script), return_code))