diff options
author | Steve Price <steve@FreeBSD.org> | 2000-10-30 12:57:16 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-10-30 12:57:16 +0000 |
commit | 1360caf6fe1d1adf821f2df9b26364637b93915e (patch) | |
tree | a0e5e962ba4f141f15451c74d7cdc312638d0064 /security/ssh2 | |
parent | b51b39faaa092062f68fe3297bc8a983b5004820 (diff) | |
download | ports-1360caf6fe1d1adf821f2df9b26364637b93915e.tar.gz ports-1360caf6fe1d1adf821f2df9b26364637b93915e.zip |
Notes
Diffstat (limited to 'security/ssh2')
-rw-r--r-- | security/ssh2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile index 002bf70252e9..dcec14d0a452 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -55,11 +55,13 @@ post-install: .endfor .endif # - @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ + @if [ "`grep ssh /etc/inetd.conf|grep -v ^#ssh`" = "" ]; then \ + if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+' < ${FILESDIR}/sshd.sh \ > ${PREFIX}/etc/rc.d/sshd.sh; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ + fi; \ fi .include <bsd.port.post.mk> |