freebsd-ports/sysutils/cbsd/pkg-deinstall
Dmitry Marakasov 32a778d183 update to 10.1.0:
- Bsdconfig integration
- Bhyve: support for reboot virtual machine
- Removed old patches and periodic-tasks
- Ipnat support
(bugfix) getnics-by-ip: looking only IP prefix inet in the output ifconfig
(bugfix) bhyve: do not test the hard drive is empty, if you are booting from CD
(bugfix) Fix order of epair number and a/b side

PR:		193962
Submitted by:	olevole@olevole.ru (maintainer)
2014-09-27 14:02:36 +00:00

23 lines
688 B
Bash

#!/bin/sh
case $2 in
POST-DEINSTALL)
echo
echo "The cbsd package has been deleted."
echo
echo "If you are *not* upgrading this package, you may want to"
echo "remove the following to complete the deinstallation process:"
echo
echo "1) Records in /etc/rc.conf"
echo
echo " cbsdrsyncd_enable=\"YES\""
echo " cbsdrsyncd_flags=\"--config=\$workdir/etc/rsyncd.conf\""
echo " cbsdd_enable=\"YES\""
echo " devfs_load_rulesets=\"YES\""
echo " cbsd_workdir=\"\$workdir\""
echo " rcshutdown_timeout=\"900\""
echo " sshd_flags=\"-oPort=22222\""
echo
echo "2) Remove /usr/local/etc/sudoers.d/cbsd_sudoers"
echo
;;
esac