summaryrefslogtreecommitdiff
path: root/net/samba/files/winbindd.sh
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-01-11 02:26:30 +0000
committerjlam <jlam@pkgsrc.org>2004-01-11 02:26:30 +0000
commita1ad0bdf8742dbdd54e0d3bb525f523f95622c9d (patch)
tree5ab4f601d568858d0210e45f72fb18565cb78dec /net/samba/files/winbindd.sh
parente28e8e6d08d50b5f2ebb790ee013a7ec1ab14172 (diff)
downloadpkgsrc-a1ad0bdf8742dbdd54e0d3bb525f523f95622c9d.tar.gz
Update net/samba to 3.0.1. Major changes from version 2.2.8anb6 include:
* Active Directory support. Samba is able to join a ADS realm as a member server and authenticate using LDAP/Kerberos. * Unicode support. * New, more flexible authentication (passdb) system. * A new "net" command that is similar to the "net" command in Windows. * Samba now negotiates NT-style status32 codes on the wire, which greatly improves error handling. * Better Windows 2K/2K3/XP printing support. * Loadable module support for passdb backends and character sets. * More performant winbindd. * Support for migrating from a Windows NT4 domain to a Samba domain and maintaining user, group, and domain SIDs. * Support for establishing trust relationships with Windows NT4 DCs. * Initial support for a distributed Winbind architecture using an LDAP directory for storing SID-to-uid/gid mappings. * Major updates to the Samba documentation tree. * Full support for client and server SMB signing to ensure compatibility with default Windows 2K3 security settings. * Improvement of ACL mapping features.
Diffstat (limited to 'net/samba/files/winbindd.sh')
-rw-r--r--net/samba/files/winbindd.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/samba/files/winbindd.sh b/net/samba/files/winbindd.sh
new file mode 100644
index 00000000000..a5462332d66
--- /dev/null
+++ b/net/samba/files/winbindd.sh
@@ -0,0 +1,25 @@
+#!@RCD_SCRIPTS_SHELL@
+#
+# $NetBSD: winbindd.sh,v 1.1 2004/01/11 02:26:31 jlam Exp $
+#
+# PROVIDE: winbindd
+# REQUIRE: nmbd
+
+if [ -f /etc/rc.subr ]; then
+ . /etc/rc.subr
+fi
+
+name="winbindd"
+rcvar=$name
+command="@PREFIX@/sbin/${name}"
+required_vars="nmbd"
+required_files="@SAMBA_ETCDIR@/smb.conf"
+extra_commands="reload"
+
+if [ -f /etc/rc.subr ]; then
+ load_rc_config $name
+ run_rc_command "$1"
+else
+ @ECHO@ -n " ${name}"
+ ${command} ${winbindd_flags}
+fi