# make good and certain that update is dead, then fire up a new one

killall -KILL update 2>/dev/null

# if the first kill didn't do update in, drop into a loop to bang
# away at it every second until it falls down and STAYS dead.

while killall -KILL update 2>/dev/null; do
    echo "kill update"
    sleep 1
done

/sbin/update
