WGDashboard/test.py
2020-10-18 01:10:13 -04:00

5 lines
No EOL
160 B
Python

import os
import subprocess
try: status = subprocess.check_output("wg show wg0", shell=True)
except Exception: print("false")
else:print(status.decode("UTF-8"))