blob: e7274d4f30128405184bcbd11a918086abedcc4c [file] [log] [blame]
Holger Hans Peter Freyther1b7bb4a2013-03-16 11:25:49 +01001#!/usr/bin/env bash
2
3NAME=`basename $1`
4PIDFILE="/var/run/$NAME.pid"
5PID=$$
6echo "$PID" > $PIDFILE
7echo "-1000" > /proc/$PID/oom_score_adj
8
9trap "{ rm -f $PIDFILE ; kill 0; }" EXIT
10
11while true;
12do
13 echo "Restarting not dealing well with spaces.."
14 (echo "0" > /proc/self/oom_score_adj && exec $@) &
15 LAST_PID=$!
16 wait $LAST_PID
17 sleep 10s
18done
19