blob: 80fcc49efc65bc013dad84e59f8d852e1f55eedd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
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."
|