13 lines
329 B
Bash
13 lines
329 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" = DEINSTALL ] && cat <<***EOM
|
|
------------------------------------------------------------------------------
|
|
|
|
If you are no longer using the $1 port, then manually delete
|
|
the following directory:
|
|
|
|
/var/db/cvechecker
|
|
|
|
------------------------------------------------------------------------------
|
|
***EOM
|
|
exit 0
|