On Fri, Oct 04 2019, Jeremie Courreges-Anglas <[email protected]> wrote:
> On Fri, Oct 04 2019, Jeremie Courreges-Anglas <[email protected]> wrote:
>> Here's a rather straightforward update to the latest supported version.
>> Since samba-4.11.0 has been published on 2019-09-17, samba-4.8.x has
>> been EOL'd.
>>
>> This update doesn't include lmdb support (now the default upstream); and
>> doesn't fix the AD DC support in the samba daemon either.
>>
>> 6.6 is approaching and I'd like this update to make it, so that 6.6 can
>> benefit from upstream security updates. So please, please, make sure
>> you test this asap if you use smbd!
I'd like to stress this point. I only did very basic smbd tests, and
Ian is away for a few days. Test reports are more than welcome.
> I forgot an obvious problem: download.samba.org now rejects HTTP/1.0, so
> here's an updated diff with a temporary mirror.
>
> If someone could host this (and a few other samba.org distfiles) on
> a machine with better bandwidth, that would be great. Please contact me
> in private.
Updated diff which fixes the missing library bumps. Some libraries
don't export the _end symbol any more, due to mechanical changes in the
waf scripts. I did not bump the major in this case. I'll try to get
someone to test this in a bulk build, for safety.
Index: Makefile
===================================================================
RCS file: /cvs/ports/net/samba/Makefile,v
retrieving revision 1.275
diff -u -p -r1.275 Makefile
--- Makefile 22 Jun 2019 23:58:23 -0000 1.275
+++ Makefile 5 Oct 2019 09:55:06 -0000
@@ -1,6 +1,6 @@
# $OpenBSD: Makefile,v 1.275 2019/06/22 23:58:23 jca Exp $
-VERSION = 4.8.12
+VERSION = 4.9.13
DISTNAME = samba-${VERSION}
COMMENT-main = SMB and CIFS client and server for UNIX
@@ -17,19 +17,15 @@ PKGNAME-docs = samba-docs-${VERSION}
PKG_ARCH-docs = *
-LDB_V = 1.3.8
-TEVENT_V = 0.9.36
-
-REVISION-main = 1
-REVISION-ldb = 0
-REVISION-tevent = 6
+LDB_V = 1.4.7
+TEVENT_V = 0.9.37
SHARED_LIBS = asn1-samba4 0.0 \
com_err-samba4 0.0 \
dcerpc 0.0 \
dcerpc-binding 1.1 \
dcerpc-samr 0.0 \
- dcerpc-server 4.0 \
+ dcerpc-server 5.0 \
gssapi-samba4 0.0 \
hcrypto-samba4 0.0 \
hdb-samba4 0.0 \
@@ -48,20 +44,20 @@ SHARED_LIBS = asn1-samba4 0.0 \
roken-samba4 0.0 \
samba-credentials 0.2 \
samba-errors 1.0 \
- samba-hostconfig 4.0 \
+ samba-hostconfig 4.1 \
samba-passdb 2.1 \
samba-policy 0.0 \
- samba-util 3.2 \
- samdb 0.1 \
- smbclient 4.2 \
- smbconf 5.1 \
+ samba-util 4.0 \
+ samdb 0.2 \
+ smbclient 4.3 \
+ smbconf 6.0 \
smbldap 0.1 \
- tevent 0.4 \
- tevent-util 1.0 \
+ tevent 0.5 \
+ tevent-util 1.1 \
wbclient 3.2 \
wind-samba4 0.0 \
- replace 8.0 \
- util-setid 8.0
+ replace 9.0 \
+ util-setid 9.0
CATEGORIES = net sysutils security
@@ -97,7 +93,8 @@ WANTLIB-util = ${WANTLIB-common}
WANTLIB-docs =
-MASTER_SITES = https://download.samba.org/pub/samba/stable/ \
+MASTER_SITES = https://autogeree.net/~jca/distfiles/ \
+ https://download.samba.org/pub/samba/stable/ \
https://download.samba.org/pub/samba/old-versions/
MULTI_PACKAGES = -main -ldb -tevent -util -docs
@@ -167,7 +164,8 @@ CONFIGURE_ARGS = --enable-fhs \
--without-libarchive \
--disable-rpath \
--with-ntvfs-fileserver \
- --without-gpgme
+ --without-gpgme \
+ --without-ldb-lmdb
# XXX Remember to remove --enable-developer, it prints passwords in logs.
#CONFIGURE_ARGS += --enable-developer
Index: distinfo
===================================================================
RCS file: /cvs/ports/net/samba/distinfo,v
retrieving revision 1.76
diff -u -p -r1.76 distinfo
--- distinfo 14 May 2019 17:57:20 -0000 1.76
+++ distinfo 5 Oct 2019 09:55:06 -0000
@@ -1,2 +1,2 @@
-SHA256 (samba-4.8.12.tar.gz) = wWLVGRAeFdGh123wY7/v6NFlb1f7dOHvGf4F00GmXY8=
-SIZE (samba-4.8.12.tar.gz) = 17764832
+SHA256 (samba-4.9.13.tar.gz) = qxgzHjd2axPbsH0fEVvaPXlJF7r1AtDKKyuP/wFLiPI=
+SIZE (samba-4.9.13.tar.gz) = 18109481
Index: patches/patch-auth_auth_log_c
===================================================================
RCS file: /cvs/ports/net/samba/patches/patch-auth_auth_log_c,v
retrieving revision 1.1
diff -u -p -r1.1 patch-auth_auth_log_c
--- patches/patch-auth_auth_log_c 2 Sep 2018 16:41:56 -0000 1.1
+++ patches/patch-auth_auth_log_c 5 Oct 2019 09:55:06 -0000
@@ -5,7 +5,7 @@ Avoid printf("%s", NULL);
Index: auth/auth_log.c
--- auth/auth_log.c.orig
+++ auth/auth_log.c
-@@ -716,7 +716,8 @@ static void log_authentication_event_human_readable(
+@@ -566,7 +566,8 @@ static void log_authentication_event_human_readable(
ui->netlogon_trust_account.account_name);
nl = talloc_asprintf(frame,
" NETLOGON computer [%s] trust account [%s]",
@@ -15,7 +15,7 @@ Index: auth/auth_log.c
}
remote = tsocket_address_string(ui->remote_host, frame);
-@@ -735,8 +736,10 @@ static void log_authentication_event_human_readable(
+@@ -585,8 +586,10 @@ static void log_authentication_event_human_readable(
logon_line = talloc_asprintf(
frame,
" mapped to [%s]\\[%s].",
@@ -28,7 +28,7 @@ Index: auth/auth_log.c
}
DEBUGC(DBGC_AUTH_AUDIT, debug_level,
-@@ -746,13 +749,15 @@ static void log_authentication_event_human_readable(
+@@ -596,13 +599,15 @@ static void log_authentication_event_human_readable(
"%s local host [%s]"
" %s\n",
ui->service_description,
Index: patches/patch-buildtools_wafsamba_samba_autoconf_py
===================================================================
RCS file:
/cvs/ports/net/samba/patches/patch-buildtools_wafsamba_samba_autoconf_py,v
retrieving revision 1.9
diff -u -p -r1.9 patch-buildtools_wafsamba_samba_autoconf_py
--- patches/patch-buildtools_wafsamba_samba_autoconf_py 29 Aug 2018 11:40:23
-0000 1.9
+++ patches/patch-buildtools_wafsamba_samba_autoconf_py 5 Oct 2019 09:55:06
-0000
@@ -7,7 +7,7 @@ $OpenBSD: patch-buildtools_wafsamba_samb
Index: buildtools/wafsamba/samba_autoconf.py
--- buildtools/wafsamba/samba_autoconf.py.orig
+++ buildtools/wafsamba/samba_autoconf.py
-@@ -825,6 +825,27 @@ def ADD_LDFLAGS(conf, flags, testflags=False):
+@@ -848,6 +848,27 @@ def ADD_LDFLAGS(conf, flags, testflags=False):
if not 'EXTRA_LDFLAGS' in conf.env:
conf.env['EXTRA_LDFLAGS'] = []
conf.env['EXTRA_LDFLAGS'].extend(TO_LIST(flags))
@@ -35,7 +35,7 @@ Index: buildtools/wafsamba/samba_autocon
return flags
-@@ -888,10 +909,9 @@ def SETUP_CONFIGURE_CACHE(conf, enable):
+@@ -911,10 +932,9 @@ def SETUP_CONFIGURE_CACHE(conf, enable):
def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(conf):
# we don't want any libraries or modules to rely on runtime
# resolution of symbols
Index: patches/patch-lib_ldb_wscript
===================================================================
RCS file: /cvs/ports/net/samba/patches/patch-lib_ldb_wscript,v
retrieving revision 1.9
diff -u -p -r1.9 patch-lib_ldb_wscript
--- patches/patch-lib_ldb_wscript 29 Aug 2018 11:40:23 -0000 1.9
+++ patches/patch-lib_ldb_wscript 5 Oct 2019 09:55:06 -0000
@@ -7,7 +7,7 @@ $OpenBSD: patch-lib_ldb_wscript,v 1.9 20
Index: lib/ldb/wscript
--- lib/ldb/wscript.orig
+++ lib/ldb/wscript
-@@ -61,6 +61,7 @@ def configure(conf):
+@@ -67,6 +67,7 @@ def configure(conf):
conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') +
'/ldb')
conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
@@ -15,7 +15,7 @@ Index: lib/ldb/wscript
if not conf.env.standalone_ldb:
max_ldb_version = [int(x) for x in VERSION.split(".")]
-@@ -119,8 +120,7 @@ def configure(conf):
+@@ -160,8 +161,7 @@ def configure(conf):
# we don't want any libraries or modules to rely on runtime
# resolution of symbols
@@ -23,5 +23,5 @@ Index: lib/ldb/wscript
- conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
+ conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
- conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
-
+ # if lmdb support is enabled then we require lmdb
+ # is present, build the mdb back end and enable lmdb support in
Index: patches/patch-python_samba_provision___init___py
===================================================================
RCS file:
/cvs/ports/net/samba/patches/patch-python_samba_provision___init___py,v
retrieving revision 1.5
diff -u -p -r1.5 patch-python_samba_provision___init___py
--- patches/patch-python_samba_provision___init___py 11 Jun 2018 11:59:51
-0000 1.5
+++ patches/patch-python_samba_provision___init___py 5 Oct 2019 09:55:06
-0000
@@ -5,7 +5,7 @@ $OpenBSD: patch-python_samba_provision__
Index: python/samba/provision/__init__.py
--- python/samba/provision/__init__.py.orig
+++ python/samba/provision/__init__.py
-@@ -2057,7 +2057,7 @@ def provision(logger, session_info, smbconf=None,
+@@ -2138,7 +2138,7 @@ def provision(logger, session_info, smbconf=None,
root_gid = pwd.getpwuid(root_uid).pw_gid
try:
Index: patches/patch-source3_wscript
===================================================================
RCS file: /cvs/ports/net/samba/patches/patch-source3_wscript,v
retrieving revision 1.8
diff -u -p -r1.8 patch-source3_wscript
--- patches/patch-source3_wscript 11 Apr 2019 14:05:58 -0000 1.8
+++ patches/patch-source3_wscript 5 Oct 2019 09:55:06 -0000
@@ -15,7 +15,7 @@ Index: source3/wscript
conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
# We crash without vfs_default
-@@ -1534,6 +1534,7 @@ main() {
+@@ -1521,6 +1521,7 @@ main() {
conf.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
'SEEKDIR_RETURNS_VOID',
Index: patches/patch-source3_wscript_build
===================================================================
RCS file: /cvs/ports/net/samba/patches/patch-source3_wscript_build,v
retrieving revision 1.1
diff -u -p -r1.1 patch-source3_wscript_build
--- patches/patch-source3_wscript_build 23 Jan 2019 01:46:19 -0000 1.1
+++ patches/patch-source3_wscript_build 5 Oct 2019 09:55:06 -0000
@@ -9,7 +9,7 @@ Work around by spelling out the affected
Index: source3/wscript_build
--- source3/wscript_build.orig
+++ source3/wscript_build
-@@ -124,7 +124,9 @@ ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_doma
+@@ -135,7 +135,9 @@ ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_doma
'!get_attr_list']
private_pdb_match.append('!pdb_nds_*')
private_pdb_match.append('!pdb_ldapsam_init*')
Index: patches/patch-source4_dsdb_samdb_ldb_modules_acl_c
===================================================================
RCS file:
/cvs/ports/net/samba/patches/patch-source4_dsdb_samdb_ldb_modules_acl_c,v
retrieving revision 1.1
diff -u -p -r1.1 patch-source4_dsdb_samdb_ldb_modules_acl_c
--- patches/patch-source4_dsdb_samdb_ldb_modules_acl_c 2 Sep 2018 16:41:56
-0000 1.1
+++ patches/patch-source4_dsdb_samdb_ldb_modules_acl_c 5 Oct 2019 09:55:06
-0000
@@ -3,7 +3,7 @@ $OpenBSD: patch-source4_dsdb_samdb_ldb_m
Index: source4/dsdb/samdb/ldb_modules/acl.c
--- source4/dsdb/samdb/ldb_modules/acl.c.orig
+++ source4/dsdb/samdb/ldb_modules/acl.c
-@@ -631,7 +631,7 @@ fail:
+@@ -643,7 +643,7 @@ fail:
"nbname[%s] ntds[%s] forest[%s] domain[%s]\n",
spn_value, (unsigned)userAccountControl,
samAccountName, dnsHostName,
Index: pkg/PLIST-ldb
===================================================================
RCS file: /cvs/ports/net/samba/pkg/PLIST-ldb,v
retrieving revision 1.6
diff -u -p -r1.6 PLIST-ldb
--- pkg/PLIST-ldb 28 Nov 2018 16:36:05 -0000 1.6
+++ pkg/PLIST-ldb 5 Oct 2019 09:55:06 -0000
@@ -23,6 +23,7 @@ lib/python${MODPY_VERSION}/site-packages
lib/samba/ldb/
lib/samba/ldb/asq.so
lib/samba/ldb/ldap.so
+lib/samba/ldb/ldb.so
lib/samba/ldb/paged_results.so
lib/samba/ldb/paged_searches.so
lib/samba/ldb/rdn_name.so
@@ -31,6 +32,7 @@ lib/samba/ldb/server_sort.so
lib/samba/ldb/skel.so
lib/samba/ldb/tdb.so
lib/samba/libldb-cmdline-samba4.so
+lib/samba/libldb-key-value-samba4.so
@man man/man1/ldbadd.1
@man man/man1/ldbdel.1
@man man/man1/ldbedit.1
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/net/samba/pkg/PLIST-main,v
retrieving revision 1.49
diff -u -p -r1.49 PLIST-main
--- pkg/PLIST-main 12 Apr 2019 18:21:17 -0000 1.49
+++ pkg/PLIST-main 5 Oct 2019 09:55:06 -0000
@@ -11,7 +11,6 @@
@sample ${SYSCONFDIR}/samba/
@bin bin/cifsdd
@bin bin/dbwrap_tool
-@bin bin/eventlogadm
bin/findsmb
@bin bin/gentest
@bin bin/locktest
@@ -262,6 +261,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/getopt.py
lib/python${MODPY_VERSION}/site-packages/samba/getopt.pyc
lib/python${MODPY_VERSION}/site-packages/samba/getopt.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/gp_sec_ext.py
+lib/python${MODPY_VERSION}/site-packages/samba/gp_sec_ext.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/gp_sec_ext.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/gpclass.py
lib/python${MODPY_VERSION}/site-packages/samba/gpclass.pyc
lib/python${MODPY_VERSION}/site-packages/samba/gpclass.${MODPY_PYOEXTENSION}
@@ -297,6 +299,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/kcc/ldif_import_export.py
lib/python${MODPY_VERSION}/site-packages/samba/kcc/ldif_import_export.pyc
lib/python${MODPY_VERSION}/site-packages/samba/kcc/ldif_import_export.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/mdb_util.py
+lib/python${MODPY_VERSION}/site-packages/samba/mdb_util.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/mdb_util.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/messaging.so
lib/python${MODPY_VERSION}/site-packages/samba/ms_display_specifiers.py
lib/python${MODPY_VERSION}/site-packages/samba/ms_display_specifiers.pyc
@@ -322,6 +327,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/common.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/common.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/common.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/computer.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/computer.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/computer.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dbcheck.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dbcheck.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dbcheck.${MODPY_PYOEXTENSION}
@@ -334,12 +342,18 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain_backup.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain_backup.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/domain_backup.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/drs.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/drs.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/drs.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dsacl.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dsacl.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/dsacl.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/forest.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/forest.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/forest.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/fsmo.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/fsmo.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/fsmo.${MODPY_PYOEXTENSION}
@@ -361,12 +375,21 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ntacl.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ntacl.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ntacl.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ou.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ou.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/ou.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/processes.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/processes.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/processes.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/pso.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/pso.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/pso.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/rodc.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/rodc.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/rodc.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/schema.py
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/schema.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/netcmd/schema.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/sites.py
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/sites.pyc
lib/python${MODPY_VERSION}/site-packages/samba/netcmd/sites.${MODPY_PYOEXTENSION}
@@ -451,6 +474,15 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/__init__.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/__init__.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_base.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_base.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_base.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_dsdb.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_dsdb.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_dsdb.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_pass_change.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_pass_change.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/audit_log_pass_change.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/auth.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/auth.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/auth.${MODPY_PYOEXTENSION}
@@ -479,6 +511,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/__init__.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/__init__.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/bug13653.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/bug13653.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/bug13653.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/check_output.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/check_output.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/blackbox/check_output.${MODPY_PYOEXTENSION}
@@ -558,6 +593,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/dcerpc/unix.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/dcerpc/unix.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/dcerpc/unix.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/dckeytab.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/dckeytab.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/dckeytab.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/dns.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/dns.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/dns.${MODPY_PYOEXTENSION}
@@ -583,6 +621,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/docs.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/docs.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/docs.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/domain_backup.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/domain_backup.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/domain_backup.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/dsdb.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/dsdb.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/dsdb.${MODPY_PYOEXTENSION}
@@ -611,12 +652,21 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/get_opt.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/get_opt.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/get_opt.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/getdcname.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/getdcname.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/getdcname.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/glue.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/glue.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/glue.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/gpo.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/gpo.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/gpo.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/graph.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/graph.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/graph.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/group_audit.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/group_audit.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/group_audit.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/hostconfig.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/hostconfig.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/hostconfig.${MODPY_PYOEXTENSION}
@@ -642,9 +692,15 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/krb5_credentials.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/krb5_credentials.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/krb5_credentials.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ldap_referrals.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ldap_referrals.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ldap_referrals.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/libsmb_samba_internal.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/libsmb_samba_internal.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/libsmb_samba_internal.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/loadparm.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/loadparm.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/loadparm.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/lsa_string.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/lsa_string.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/lsa_string.${MODPY_PYOEXTENSION}
@@ -657,6 +713,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/net_join_no_spnego.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/net_join_no_spnego.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/net_join_no_spnego.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/netbios.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/netbios.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/netbios.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/netcmd.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/netcmd.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/netcmd.${MODPY_PYOEXTENSION}
@@ -666,6 +725,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls_backup.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls_backup.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/ntacls_backup.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntlmdisabled.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntlmdisabled.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/ntlmdisabled.${MODPY_PYOEXTENSION}
@@ -696,6 +758,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/password_quality.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/password_quality.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/password_quality.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/password_test.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/password_test.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/password_test.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/policy.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/policy.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/policy.${MODPY_PYOEXTENSION}
@@ -705,15 +770,30 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/provision.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/provision.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/provision.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/pso.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/pso.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/pso.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/py_credentials.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/py_credentials.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/py_credentials.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/registry.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/registry.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/registry.${MODPY_PYOEXTENSION}
-lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3.py
-lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3.pyc
-lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3idmapdb.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3idmapdb.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3idmapdb.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3param.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3param.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3param.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3passdb.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3passdb.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3passdb.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3registry.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3registry.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3registry.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3windb.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3windb.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/s3windb.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3sam.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3sam.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba3sam.${MODPY_PYOEXTENSION}
@@ -724,9 +804,18 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/base.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/base.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/base.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/computer.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/computer.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/computer.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/demote.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/demote.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/demote.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/dnscmd.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/dnscmd.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/dnscmd.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/forest.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/forest.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/forest.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/fsmo.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/fsmo.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/fsmo.${MODPY_PYOEXTENSION}
@@ -745,6 +834,12 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ntacl.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ntacl.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ntacl.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ou.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ou.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/ou.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/passwordsettings.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/passwordsettings.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/passwordsettings.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/processes.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/processes.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/processes.${MODPY_PYOEXTENSION}
@@ -754,6 +849,9 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/rodc.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/rodc.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/rodc.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/schema.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/schema.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/schema.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/sites.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/sites.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samba_tool/sites.${MODPY_PYOEXTENSION}
@@ -781,9 +879,18 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb_api.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb_api.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/samdb_api.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/security.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/security.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/security.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smb.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smb.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smb.${MODPY_PYOEXTENSION}
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smbd_base.py
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smbd_base.pyc
+lib/python${MODPY_VERSION}/site-packages/samba/tests/smbd_base.${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/samba/tests/source.py
lib/python${MODPY_VERSION}/site-packages/samba/tests/source.pyc
lib/python${MODPY_VERSION}/site-packages/samba/tests/source.${MODPY_PYOEXTENSION}
@@ -863,6 +970,7 @@ lib/samba/krb5/winbind_krb5_locator.so
lib/samba/ldb/acl.so
lib/samba/ldb/aclread.so
lib/samba/ldb/anr.so
+lib/samba/ldb/audit_log.so
lib/samba/ldb/descriptor.so
lib/samba/ldb/dirsync.so
lib/samba/ldb/dns_notify.so
@@ -871,6 +979,7 @@ lib/samba/ldb/encrypted_secrets.so
lib/samba/ldb/extended_dn_in.so
lib/samba/ldb/extended_dn_out.so
lib/samba/ldb/extended_dn_store.so
+lib/samba/ldb/group_audit_log.so
lib/samba/ldb/ildap.so
lib/samba/ldb/instancetype.so
lib/samba/ldb/lazy_commit.so
@@ -992,6 +1101,7 @@ lib/samba/libsamba-security-samba4.so
lib/samba/libsamba-sockets-samba4.so
lib/samba/libsamba3-util-samba4.so
lib/samba/libsamdb-common-samba4.so
+lib/samba/libscavenge-dns-records-samba4.so
lib/samba/libsecrets3-samba4.so
lib/samba/libserver-id-db-samba4.so
lib/samba/libserver-role-samba4.so
@@ -1058,7 +1168,6 @@ lib/samba/vfs/extd_audit.so
lib/samba/vfs/fake_perms.so
lib/samba/vfs/fruit.so
lib/samba/vfs/full_audit.so
-lib/samba/vfs/glusterfs_fuse.so
lib/samba/vfs/linux_xfs_sgid.so
lib/samba/vfs/media_harmony.so
lib/samba/vfs/netatalk.so
@@ -1176,10 +1285,10 @@ libexec/samba/
@man man/man8/nmbd.8
@man man/man8/pam_winbind.8
@man man/man8/pdbedit.8
+@man man/man8/samba-gpupdate.8
@man man/man8/samba-regedit.8
@man man/man8/samba-tool.8
@man man/man8/samba.8
-@man man/man8/samba_gpoupdate.8
@man man/man8/smbd.8
@man man/man8/smbpasswd.8
@man man/man8/smbspool.8
@@ -1231,10 +1340,11 @@ libexec/samba/
@man man/man8/vfs_xattr_tdb.8
@man man/man8/winbind_krb5_locator.8
@man man/man8/winbindd.8
+@bin sbin/eventlogadm
@bin sbin/nmbd
@bin sbin/samba
+sbin/samba-gpupdate
sbin/samba_dnsupdate
-sbin/samba_gpoupdate
sbin/samba_kcc
sbin/samba_spnupdate
sbin/samba_upgradedns
@@ -1340,6 +1450,7 @@ share/samba/setup/provision_self_join.ld
share/samba/setup/provision_self_join_config.ldif
share/samba/setup/provision_self_join_modify.ldif
share/samba/setup/provision_self_join_modify_config.ldif
+share/samba/setup/provision_self_join_modify_schema.ldif
share/samba/setup/provision_users.ldif
share/samba/setup/provision_users_add.ldif
share/samba/setup/provision_users_modify.ldif
--
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE