Zap samba.rc, useless since we don't ship AD DC support anymore

This commit is contained in:
jca 2022-03-10 00:06:27 +00:00
parent cd0fba1ff1
commit 9fb44d50f8
3 changed files with 1 additions and 24 deletions

View File

@ -1,7 +1,7 @@
VERSION = 4.15.5
DISTNAME = samba-${VERSION}
EPOCH = 0
REVISION-main = 0
REVISION-main = 1
REVISION-ldb = 1
REVISION-tevent = 3

View File

@ -3,7 +3,6 @@
@pkgpath net/samba,ads,-main
@pkgpath net/samba,,-main
@rcscript ${RCDIR}/nmbd
@rcscript ${RCDIR}/samba
@rcscript ${RCDIR}/smbd
@rcscript ${RCDIR}/winbindd
@sample ${SYSCONFDIR}/samba/

View File

@ -1,22 +0,0 @@
#!/bin/ksh
# "meta" script running the following rc.d(8) scripts with the given argument;
# note that daemon_flags, daemon_user, daemon_timeout and daemon_class are not
# passed to the child scripts.
_pkg_scripts="smbd nmbd"
if [[ $1 == restart ]]; then
$0 stop && $0 start
exit
fi
if [[ $1 == stop ]]; then
for _i in ${_pkg_scripts}; do _l="${_i} ${_l}"; done
_pkg_scripts=${_l% }
fi
for _i in ${_pkg_scripts}; do
if [[ -x ${RCDIR}/${_i} ]]; then
${RCDIR}/${_i} $@ || exit $?
fi
done