aboutsummaryrefslogtreecommitdiff
path: root/unix/sys/shutdown_watchdog
diff options
context:
space:
mode:
Diffstat (limited to 'unix/sys/shutdown_watchdog')
-rwxr-xr-xunix/sys/shutdown_watchdog11
1 files changed, 0 insertions, 11 deletions
diff --git a/unix/sys/shutdown_watchdog b/unix/sys/shutdown_watchdog
deleted file mode 100755
index 79bc7bf..0000000
--- a/unix/sys/shutdown_watchdog
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-LOGFILE="/tmp/shutdown_watchdog.log"
-
-while true; do
- echo "--- $(date) ---" >> "$LOGFILE"
- uptime >> "$LOGFILE"
- sensors >> "$LOGFILE" 2>/dev/null
- acpi -V >> "$LOGFILE" 2>/dev/null
- sleep 10
-done