724e3bd668
include: * Added the new Bandwidth Monitoring module, for generating simple reports of network traffic by port, time and host on Linux systems. * Added the Cluster Copy module, for copying files to multiple servers either on schedule or manually. * Added the Backup Configuration Files module, for backing up and restoring config files known to Webmin. * Several improvements to the Linux firewall module, including pre- and post commands, cluster support and the ability to reset the firewall configuration. * Support for selecting specific MySQL and PostgreSQL tables to back up, and improved searching in the MySQL module. * Automatic email notification for users approaching their disk quotas. * The timezone can now be set in the System Time module on Linux, Solaris and FreeBSD. * Added the new Sarg Squid access reporting module. Thanks to Omar Armas for sponsoring its development. * Added support for NFSv4 to the Disk and Network Filesystems module. * In the MySQL and PostgreSQL modules, all databases can now be backed up at once, either manually or on a configured schedule. * Added the ability to delete multiple users at once to the Users and Groups module. * Added support for MD5 encryption for Webmin passwords, to avoid the 8-character effective password length limit. * The BIND module can now create and edit delegation-only zones. * When PAM is used for Unix authentication, expired passwords are now detected and the user is prompted to select a new password (if this feature is enabled on the Webmin Configuration module).
17 lines
309 B
Text
17 lines
309 B
Text
# $NetBSD: DEINSTALL,v 1.3 2005/01/23 04:36:27 jlam Exp $
|
|
|
|
WEBMIN_DIR="@WEBMIN_DIR@"
|
|
WEBMIN_ETCDIR="@WEBMIN_ETCDIR@"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
uninstall="${WEBMIN_ETCDIR}/uninstall.sh"
|
|
if [ -x "${uninstall}" ]; then
|
|
${ECHO} "y" | ${uninstall}
|
|
fi
|
|
;;
|
|
|
|
POST-DEINSTALL)
|
|
${RM} -rf ${WEBMIN_DIR}
|
|
;;
|
|
esac
|