#!/bin/sh
set -e

# Automatically added by dh_installdeb/13.24.2
dpkg-maintscript-helper rm_conffile /etc/ssh/moduli 1:7.9p1-8\~ -- "$@"
# End automatically added section
# Automatically added by dh_installsystemduser/13.24.2
if [ "$1" = "purge" ]; then
	if [ -z "$DPKG_ROOT" ] && [ -x "/usr/bin/deb-systemd-helper" ] ; then
		deb-systemd-helper --user purge 'ssh-agent.socket' >/dev/null || true
	fi
fi
# End automatically added section


case $1 in
	purge)
		# Remove all non-conffiles that ssh might create, so that we
		# can smoothly remove /etc/ssh if and only if the user
		# hasn't dropped some other files in there. Conffiles have
		# already been removed at this point.
		rm -f /etc/ssh/moduli /etc/ssh/primes
		rm -f /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts2
		[ ! -d /etc/ssh ] || rmdir --ignore-fail-on-non-empty /etc/ssh

		if command -v delgroup >/dev/null 2>&1; then
			delgroup --quiet ssh > /dev/null || true
		fi
		;;
esac

exit 0
