aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/respawn-only.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/respawn-only.sh')
-rwxr-xr-xcontrib/respawn-only.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/respawn-only.sh b/contrib/respawn-only.sh
deleted file mode 100755
index 478abd66..00000000
--- a/contrib/respawn-only.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-PID=$$
-echo "-1000" > /proc/$PID/oom_score_adj
-
-trap "{ kill 0; kill -2 0; }" EXIT
-
-while [ -f $1 ]; do
- (echo "0" > /proc/self/oom_score_adj && exec nice -n -20 $*) &
- LAST_PID=$!
- wait $LAST_PID
- sleep 10s
-done