13 lines
284 B
Python
13 lines
284 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
import subprocess
|
||
|
|
result = subprocess.run(['python3', '/root/engine/public_oversight/hotels/quick_check.py'], capture_output=True, text=True)
|
||
|
|
print(result.stdout)
|
||
|
|
if result.stderr:
|
||
|
|
print("STDERR:", result.stderr)
|
||
|
|
print("EXIT CODE:", result.returncode)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|