diff options
author | tg <tg@FreeBSD.org> | 2000-07-05 12:37:06 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-07-05 12:37:06 +0000 |
commit | 3a84881f168162a487490bbbd275ca05b7f5560d (patch) | |
tree | e888acd7e17d635c1f902fccb1eefdf89f15641a /net/tac_plus4/Makefile | |
parent | 83513fef56c1c9996eb040a93488ed7837fac927 (diff) | |
download | FreeBSD-ports-3a84881f168162a487490bbbd275ca05b7f5560d.zip FreeBSD-ports-3a84881f168162a487490bbbd275ca05b7f5560d.tar.gz |
As threatened on freebsd-ports: all startup scripts know about the two
options `start' and `stop' now (unless I have forgotten any). This allows
us to call the scripts from /etc/rc.shutdown with the correct option.
The (42 or so) ports that already DTRT before are unchanged.
Diffstat (limited to 'net/tac_plus4/Makefile')
-rw-r--r-- | net/tac_plus4/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/tac_plus4/Makefile b/net/tac_plus4/Makefile index 491b88a..e6b03f3 100644 --- a/net/tac_plus4/Makefile +++ b/net/tac_plus4/Makefile @@ -29,9 +29,7 @@ do-install: ${INSTALL_DATA} ${FILESDIR}/tac_plus.conf.example ${PREFIX}/etc/ @if [ ! -f ${PREFIX}/etc/rc.d/tac_plus.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/tac_plus.sh startup file."; \ - ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/tac_plus.sh; \ - ${ECHO} "[ -x ${PREFIX}/sbin/tac_plus -a -f ${PREFIX}/etc/tac_plus.conf ] && ${PREFIX}/sbin/tac_plus -C ${PREFIX}/etc/tac_plus.conf && echo -n ' tac_plus'" >> ${PREFIX}/etc/rc.d/tac_plus.sh; \ - chmod 751 ${PREFIX}/etc/rc.d/tac_plus.sh; \ + ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/tac_plus.sh ${PREFIX}/etc/rc.d/tac_plus.sh; \ fi .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/tac_plus |