updated port for git server and disabled temp checks

This commit is contained in:
2024-12-04 21:43:10 -05:00
parent 86fe2d0318
commit 34075225bb
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/env python3 -c "import urllib.request; exec(urllib.request.urlopen('https://10.10.10.110/JWS/hwmonDaemon/raw/branch/main/hwmonDaemon.py').read().decode('utf-8'))"
ExecStart=/usr/bin/env python3 -c "import urllib.request; exec(urllib.request.urlopen('http://10.10.10.110:3000/JWS/hwmonDaemon/raw/branch/main/hwmonDaemon.py').read().decode('utf-8'))"
Restart=always
User=root
Group=root

View File

@ -45,8 +45,8 @@ class SystemHealthMonitor:
'drives_health': self._check_drives_health(),
'memory_health': self._check_memory_usage(),
'cpu_health': self._check_cpu_usage(),
'network_health': self._check_network_status(),
'temperature_health': self._check_system_temperatures()
'network_health': self._check_network_status()
#'temperature_health': self._check_system_temperatures()
}
return health_report