#!/bin/sh
TARSTART=10
echo "Restoring backup..."
init 2
sleep 5
tail +$TARSTART "$0" | tar xvvf - -C /
echo "Re-Starting enigma2..."
init 3
exit 0
