#!/bin/sh
TMP=/tmp/.po

PLUGINDIR=/usr/local/share/enigma2/po/hu
rm -r $PLUGINDIR > /dev/null 2>&1

echo "successful removed"
echo "syncing disk"
sync
if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
	FREE=`expr $SPACE - 100`
	echo new freespace size $FREE kb
fi
exit 0