18 lines
485 B
Plaintext
18 lines
485 B
Plaintext
|
#!/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/spool/news"
|
||
|
echo "**"
|
||
|
echo "** Also, you should run the command \"vipw\" and remove the news"
|
||
|
echo "** pseudo user. Be absolutly sure you want to completely remove"
|
||
|
echo "** the package before issuing these commands."
|
||
|
echo ""
|
||
|
|
||
|
exit 0
|