Your IP : 216.73.216.95


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/webmin.postrm

#!/bin/sh
if [ "$1" != "upgrade" -a "$1" != "abort-upgrade" ]; then
	grep root=/usr/share/webmin /etc/webmin/miniserv.conf >/dev/null 2>&1
	if [ "$?" = 0 ]; then
		# Package is being removed, and no new version of webmin
		# has taken it's place. Delete the config files
		rm -rf /etc/webmin /var/webmin
	fi
fi