diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-14 12:44:42 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-14 12:44:42 +0000 |
commit | 42d5f3f5e5c6316156ee79eae147076568c13823 (patch) | |
tree | 9ab95901316103d9ca15a6362a41dc0e8f6aef1f /databases/msql3/Makefile | |
parent | 494167749748b385b9cc282e1d9e050331421b76 (diff) |
Merge from msql-beta port as of 04/28/97
Change startup script in ${PREFIX}/etc/rc.d to directly run the daemon instead of using the old kludgey run_daemon wrapper.
Fix up two mistakes in the PLIST
Notes
Notes:
svn path=/head/; revision=7314
Diffstat (limited to 'databases/msql3/Makefile')
-rw-r--r-- | databases/msql3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/msql3/Makefile b/databases/msql3/Makefile index c8ba243fcb18..9adfdc8b3ce8 100644 --- a/databases/msql3/Makefile +++ b/databases/msql3/Makefile @@ -46,7 +46,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/msql2.sh ]; then \ echo "Installing ${PREFIX}/etc/rc.d/msql2.sh startup file."; \ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/msql2.sh; \ - echo "[ -x ${PREFIX}/bin/run_daemon ] && su -l msql -c '${PREFIX}/bin/run_daemon msql2d' & && echo -n ' msql2'" >> ${PREFIX}/etc/rc.d/msql2.sh; \ + echo "[ -x ${PREFIX}/bin/msql2d ] && su -l msql -c '${PREFIX}/bin/msql2d' > /dev/null 2>&1 & && echo -n ' msql2'" >> ${PREFIX}/etc/rc.d/msql2.sh; \ chmod 751 ${PREFIX}/etc/rc.d/msql2.sh; \ fi .if !defined(BATCH) |