#!/bin/bash

. ${TOOLKIT}-functions.sh

# fixes ftp alternative (installed ncftp)
#
[ -L /etc/alternatives/ftp ] || {
	echo "  fixing alternative for ftp"
	update-alternatives --verbose --install /usr/bin/ftp ftp /usr/bin/ncftp 1 \
		|| exit $?
}


##$SOMETHING_CHANGED && {
	##:
##}

exit 0
