19 lines
535 B
Bash
19 lines
535 B
Bash
#!/bin/sh
|
|
|
|
# Post-deinstallation cleanup of leafnode
|
|
|
|
echo ""
|
|
echo "** To completely deinstall the leafnode package you need to perform"
|
|
echo "** these steps as root:"
|
|
echo "**"
|
|
echo "** rm -rf /etc/leafnode"
|
|
echo "** rm -rf /var/run/news"
|
|
echo "** rm -rf /var/spool/news"
|
|
echo "**"
|
|
echo "** Also, you should run the command \"user del news\" and remove the"
|
|
echo "** news pseudo user. Be absolutly sure you want to completely remove"
|
|
echo "** the package before issuing these commands."
|
|
echo ""
|
|
|
|
exit 0
|