diff options
author | jlam <jlam> | 2006-05-03 23:23:06 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-05-03 23:23:06 +0000 |
commit | f3eba0a83e24d937d9e1f876e0fb67dd153eff81 (patch) | |
tree | a09f6e605812292ad1a6e304d67646aa335d1800 /net/samba | |
parent | 7622e32dd75b43804206d94ba18d4ec389552e92 (diff) | |
download | pkgsrc-f3eba0a83e24d937d9e1f876e0fb67dd153eff81.tar.gz |
Samba developers say that winbindd does not require nmbd to be running.
Bump PKGREVISION to 1.
Diffstat (limited to 'net/samba')
-rw-r--r-- | net/samba/Makefile | 3 | ||||
-rw-r--r-- | net/samba/files/winbindd.sh | 19 |
2 files changed, 4 insertions, 18 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile index d99af983583..1bd6ae0217c 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.160 2006/04/03 13:23:03 salo Exp $ +# $NetBSD: Makefile,v 1.161 2006/05/03 23:23:06 jlam Exp $ .include "Makefile.mirrors" DISTNAME= samba-3.0.22 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${SAMBA_MIRRORS:=old-versions/} DIST_SUBDIR= ${DISTNAME} diff --git a/net/samba/files/winbindd.sh b/net/samba/files/winbindd.sh index 61207980a1c..2f1542a1336 100644 --- a/net/samba/files/winbindd.sh +++ b/net/samba/files/winbindd.sh @@ -1,33 +1,18 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: winbindd.sh,v 1.3 2005/12/21 04:17:53 jlam Exp $ +# $NetBSD: winbindd.sh,v 1.4 2006/05/03 23:23:06 jlam Exp $ # # PROVIDE: winbindd -# REQUIRE: nmbd +# REQUIRE: DAEMON . /etc/rc.subr name="winbindd" rcvar=$name command="@PREFIX@/sbin/${name}" -required_vars="nmbd" required_files="@SAMBA_ETCDIR@/smb.conf" extra_commands="reload" command_args="-B" -# load_rc_config_var() from /etc/rc.subr on the netbsd-3 branch, for -# the benefit of platforms with older versions of /etc/rc.subr. -# -load_rc_config_var() -{ - eval $(eval '( - load_rc_config '$1' >/dev/null; - if [ -n "${'$2'}" -o "${'$2'-UNSET}" != "UNSET" ]; then - echo '$2'=\'\''${'$2'}\'\''; - fi - )' ) -} - load_rc_config $name -load_rc_config_var nmbd nmbd run_rc_command "$1" |