updated zabbix state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2025-07-14 10:02:30 +02:00
parent 37a056d4c9
commit 6c524f303e

View File

@ -7,6 +7,7 @@ HOST = "127.0.0.1"
PORT = 8060
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.settimeout(2)
s.connect((HOST, PORT))
s.sendall(b"1")
data = bytes()