diff options
Diffstat (limited to 'security/portaudit/pkg-install')
-rw-r--r-- | security/portaudit/pkg-install | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/security/portaudit/pkg-install b/security/portaudit/pkg-install index 56b66fd5592d..485fe2c991cb 100644 --- a/security/portaudit/pkg-install +++ b/security/portaudit/pkg-install @@ -3,16 +3,14 @@ # $FreeBSD$ # -ECHO_CMD=echo - case $2 in POST-INSTALL) if [ ! -f "%%DATABASEDIR%%/auditfile.tbz" ]; then - ${ECHO_CMD} - ${ECHO_CMD} "===> To check your installed ports for known vulnerabilities now do:" - ${ECHO_CMD} - ${ECHO_CMD} " %%PREFIX%%/bin/portaudit -F -a" - ${ECHO_CMD} + echo + echo "===> To check your installed ports for known vulnerabilities now do:" + echo + echo " %%PREFIX%%/bin/portaudit -F -a" + echo fi ;; esac |