cp --reply=yes /etc/fstab /etc/fstab.bak
sed -e "/.*\/tmp.*/d" /etc/fstab.bak > /etc/fstab
cp -Rp /tmp /tmp_backup
for mount in `mount | grep '/tmp' | awk '{print $3}'` ; do
	umount -l $mount 2>/dev/null
done
cp -Rp /tmp_backup/* /tmp/
service mysqld restart
service postgresql restart
service webppliance restart
