#!/bin/sh -e

# FIXME: Gets logged instead of actually asking user
echo -n "Remove networking tools? [Y/n] "
read answer

if [ "$answer" = "Y" ] || [ "$answer" = "y" ]; then
	for package in bind9* ldap-utils* slapd* snmp* snmp-mibs-downloader* nfs-common* cups*; do
		apt $APT_FLAGS purge $package;
	done
fi
