mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
85d2841b60
ones. PR: ports/125340 Submitted by: Marcin Simonides <marcin@studio4plus.com>
13 lines
255 B
Bash
13 lines
255 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo
|
|
echo "Remember to remove zfs-snapshot-mgmt entry from cron configuration."
|
|
echo -n "Otherwise the system will be constantly trying to call the deinstalled"
|
|
echo " script."
|