diff options
author | jlam <jlam@pkgsrc.org> | 2004-01-11 02:26:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-01-11 02:26:30 +0000 |
commit | 2a085db7871e837f8f806076692ec6ce1ce74acc (patch) | |
tree | 5ab4f601d568858d0210e45f72fb18565cb78dec /net/samba/patches/patch-ac | |
parent | 168ce375b92c0e86a7333a326c4fc766fe135c32 (diff) | |
download | pkgsrc-2a085db7871e837f8f806076692ec6ce1ce74acc.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/patches/patch-ac')
-rw-r--r-- | net/samba/patches/patch-ac | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/net/samba/patches/patch-ac b/net/samba/patches/patch-ac index 2b2cecd146a..8cefa5799dd 100644 --- a/net/samba/patches/patch-ac +++ b/net/samba/patches/patch-ac @@ -1,13 +1,17 @@ -$NetBSD: patch-ac,v 1.11 2002/10/18 11:50:28 martti Exp $ +$NetBSD: patch-ac,v 1.12 2004/01/11 02:26:31 jlam Exp $ ---- profile/profile.c.orig Wed Oct 9 22:27:22 2002 -+++ profile/profile.c Fri Oct 18 13:02:32 2002 -@@ -23,7 +23,7 @@ - #include "includes.h" +--- include/local.h.orig Fri Nov 7 12:37:33 2003 ++++ include/local.h +@@ -170,10 +170,10 @@ + * Default passwd chat script. + */ - #ifdef WITH_PROFILE --#define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6)) -+#define IPC_PERMS ((S_IRUSR | S_IWUSR) | S_IRGRP | S_IROTH) - static int shm_id; - static BOOL read_only; +-#define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*" ++#define DEFAULT_PASSWD_CHAT "*\\n*ew\\spassword* %n\\n *ew\\spassword* %n\\n *updating\\sthe\\sdatabase...\\npasswd:\\sdone\\n" + /* Minimum length of allowed password when changing UNIX password. */ +-#define MINPASSWDLENGTH 5 ++#define MINPASSWDLENGTH 6 + + /* maximum ID number used for session control. This cannot be larger + than 62*62 for the current code */ |