#!/bin/sh
#
TMP=/tmp/.skin
echo "syncing disk"
sync
echo "checking swapstick"
if [ ! -d /var/swap/skins/ ]; then
  echo "--------------------------"
	echo "no swapstick found...."
	echo "--------------------------"
	exit 1
fi
echo "swapstick found...."
echo "installing HD-Shadow3 Skin to swapstick..."
echo "checking OS"
if  [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then                      
	echo ---------------------------
	echo DONT USE this IPK Package!!
	echo ---
	echo Only for AAF Image!!
	echo ---------------------------
	exit 1
fi
exit 0