Your message dated Thu, 29 Jun 2017 13:06:30 +0000
with message-id <[email protected]>
and subject line Bug#866138: fixed in samba 2:4.6.5+dfsg-3
has caused the Debian Bug report #866138,
regarding samba-ad-dc package metadata unused
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
866138: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=866138
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: samba
Version: 2:4.6.5+dfsg-3
I noticed that these files (samba-ad-dc.*) in the samba package appear
to be unused and out of date. For example, samba3upgrade has been
classicupgrade for some time.
Before we rush to restore it, I don't think it is a good idea to run it
from debconf in any case. Perhaps we could restore running provision,
but even that I think is better done manually.
(untested)
Andrew Bartlett
--
Andrew Bartlett http://samba.org/~abartlet/
Authentication Developer, Samba Team http://samba.org
Samba Developer, Catalyst IT http://catalyst.net.nz/services/samba
From 4185e1ef720b99395a20b7b79a491f697c6cb689 Mon Sep 17 00:00:00 2001
From: Andrew Bartlett <[email protected]>
Date: Wed, 28 Jun 2017 05:29:13 +1200
Subject: [PATCH] Remove unused samba-ad-dc scripts, this package is no longer
produced
---
debian/samba-ad-dc.config | 69 --------------------------------------------
debian/samba-ad-dc.postinst | 67 ------------------------------------------
debian/samba-ad-dc.postrm | 12 --------
debian/samba-ad-dc.templates | 54 ----------------------------------
4 files changed, 202 deletions(-)
delete mode 100755 debian/samba-ad-dc.config
delete mode 100644 debian/samba-ad-dc.postinst
delete mode 100644 debian/samba-ad-dc.postrm
delete mode 100644 debian/samba-ad-dc.templates
diff --git a/debian/samba-ad-dc.config b/debian/samba-ad-dc.config
deleted file mode 100755
index aef1cf0..0000000
--- a/debian/samba-ad-dc.config
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/sh
-
-set -e
-
-. /usr/share/debconf/confmodule
-
-db_title "Samba Server"
-
-SERVER_ROLE=`samba-tool testparm --parameter-name="server role" 2>/dev/null | tail -1`
-if [ ! -z "$SERVER_ROLE" ]; then
- db_set samba4/server-role "$SERVER_ROLE"
-fi
-
-REALM=`samba-tool testparm --parameter-name=realm 2>/dev/null | tail -1`
-if [ -z "$REALM" ]; then
- REALM=`hostname -d | tr 'a-z' 'A-Z'`
-fi
-if [ -z "$REALM" ]; then
- # Default to localdomain if there are no good alternatives.
- REALM=localdomain
-fi
-db_set samba4/realm "$REALM"
-
-#
-# Are we upgrading from Samba 3, and already have a configuration file?
-# If so, the user might want to try the automatic upgrading.
-#
-if [ -n "$2" ] && dpkg --compare-versions "$2" lt "3.9.0"; then
- if [ -f /etc/samba/smb.conf ]; then
- db_input medium samba4/upgrade-from-v3 || true
- fi
-fi
-
-db_input high samba4/server-role || true
-db_go
-db_get samba4/server-role
-if [ "$RET" != "none" ]; then
- db_input medium samba4/realm || true
- db_go || true
-fi
-
-# only ask this question on installs that require provisioning
-if [ "$1" = "configure" ] && ([ -z "$2" ] && [ ! -e "/var/lib/samba/private/sam.ldb" ] ) || [ "$1" = "reconfigure" ]; then
- while :; do
- RET=""
- db_input high samba4/admin_password || true
- db_go
- db_get samba4/admin_password
- # if password isn't empty we ask for password verification
- if [ -z "$RET" ]; then
- db_fset samba4/admin_password seen false
- db_fset samba4/admin_password_again seen false
- break
- fi
- ADMIN_PW="$RET"
- db_input high samba4/admin_password_again || true
- db_go
- db_get samba4/admin_password_again
- if [ "$RET" = "$ADMIN_PW" ]; then
- ADMIN_PW=''
- break
- fi
- db_fset samba4/password_mismatch seen false
- db_input critical samba4/password_mismatch
- db_set samba4/admin_password ""
- db_set samba4/admin_password_again ""
- db_go
- done
-fi
diff --git a/debian/samba-ad-dc.postinst b/debian/samba-ad-dc.postinst
deleted file mode 100644
index 1f8921f..0000000
--- a/debian/samba-ad-dc.postinst
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/sh -e
-
-. /usr/share/debconf/confmodule
-
-if [ "$1" = "configure" ]; then
- db_get samba4/server-role || true
- SERVER_ROLE="$RET"
-fi
-
-if [ "$1" = "configure" -a "$SERVER_ROLE" != "none" ]; then
- db_get samba-common/workgroup || true
- DOMAIN="$RET"
- db_get samba4/realm || true
- REALM="$RET"
- # FIXME: Urgh.. ideally samba-tool would be able to update this:
- # Update realm setting and server role setting
- if [ -f "/etc/samba/smb.conf" ]; then
- /usr/share/samba/setoption.py "realm" "${REALM}"
- /usr/share/samba/setoption.py "server role" "${SERVER_ROLE}"
- if [ "$SERVER_ROLE" = "domain controller" ]; then
- /usr/share/samba/addshare.py sysvol /var/lib/samba/sysvol
- /usr/share/samba/addshare.py netlogon "/var/lib/samba/sysvol/$REALM/scripts"
- fi
- fi
-
- # See if we're upgrading from Samba 3
- if [ ! -z "$2" ] && dpkg --compare-versions "$2" lt "3.9.0"; then
- db_get samba4/upgrade-from-v3 || true
- if [ "$RET" = "true" ]; then
- samba-tool domain samba3upgrade --dbdir=/var/lib/samba
- fi
- elif [ ! -z "$2" ] && dpkg --compare-versions "$2" lt "4.0.0~alpha12"; then
- # Upgrade from previous Samba 4 installation
- if [ -f /etc/samba/smb.conf ]; then
- samba-tool domain upgradeprovision --full
- fi
- elif [ -e /var/lib/samba/private/sam.ldb ]; then
- # Upgrade from previous Samba 4 installation
- if [ -f /etc/samba/smb.conf ]; then
- samba-tool dbcheck --fix --yes
- fi
- fi
- # Provision from scratch if we need to
- if [ ! -e /var/lib/samba/private/sam.ldb ]; then
- db_get samba4/admin_password
- if [ -z "$RET" ]; then
- PASSOPTION=" "
- else
- PASSOPTION="--adminpass='$RET' "
- fi
-
- # Install from scratch
- # samba-common.postinst takes care of setting the work group.
- samba-tool domain provision --realm="$REALM" --domain="$DOMAIN" \
- --server-role="$SERVER_ROLE" --use-ntvfs $PASSOPTION
-
- # Forget we ever saw the password
- db_set samba4/admin_password ""
- db_set samba4/admin_password_again ""
- fi
-fi
-
-#DEBHELPER#
-
-db_stop
-
-exit 0
diff --git a/debian/samba-ad-dc.postrm b/debian/samba-ad-dc.postrm
deleted file mode 100644
index 91f4b1b..0000000
--- a/debian/samba-ad-dc.postrm
+++ /dev/null
@@ -1,12 +0,0 @@
-#! /bin/sh -e
-
-set -e
-
-if [ "$1" = purge ]; then
- if [ -e /usr/share/debconf/confmodule ]; then
- . /usr/share/debconf/confmodule
- db_purge
- fi
-fi
-
-#DEBHELPER#
diff --git a/debian/samba-ad-dc.templates b/debian/samba-ad-dc.templates
deleted file mode 100644
index af24031..0000000
--- a/debian/samba-ad-dc.templates
+++ /dev/null
@@ -1,54 +0,0 @@
-Template: samba4/upgrade-from-v3
-Type: boolean
-Default: true
-_Description: Upgrade from Samba 3?
- It is possible to migrate the existing configuration files from Samba 3 to
- Samba 4. This is likely to fail for complex setups, but should provide a
- good starting point for most existing installations.
-
-Template: samba4/server-role
-Type: select
-Choices: domain controller, member, standalone, none
-Default: domain controller
-_Description: Server role
- Domain controllers manage NT4-style or Active Directory domains and
- provide services such as identity management and domain logons. Each
- domain needs to have a at least one domain controller.
- .
- Member servers can be part of a NT4-style or Active Directory domain but
- do not provide any domain services. Workstations and file or print servers
- are usually regular domain members.
- .
- A standalone server can not be used in a domain and only supports file
- sharing and Windows for Workgroups-style logins.
- .
- If no server role is specified, the Samba server will not be provisioned,
- so this can be done manually by the user.
-
-Template: samba4/realm
-Type: string
-Default: REALM
-_Description: Realm name:
- Please specify the Kerberos realm for the domain that this domain controller
- controls.
- .
- Usually this is the a capitalized version of your DNS hostname.
-
-Template: samba4/admin_password
-Type: password
-#flag:translate!:4
-_Description: New password for the Samba "administrator" user:
- If this field is left blank, a random password will be generated.
- .
- A password can be set later by running, as root:
- .
- $ samba-tool user setpassword administrator
-
-Template: samba4/admin_password_again
-Type: password
-_Description: Repeat password for the Samba "administrator" user:
-
-Template: samba4/password_mismatch
-Type: error
-_Description: Password input error
- The two passwords you entered were not the same. Please try again.
--
2.9.4
--- End Message ---
--- Begin Message ---
Source: samba
Source-Version: 2:4.6.5+dfsg-3
We believe that the bug you reported is fixed in the latest version of
samba, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Mathieu Parent <[email protected]> (supplier of updated samba package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Thu, 29 Jun 2017 09:45:59 +0200
Source: samba
Binary: samba samba-libs samba-common samba-common-bin smbclient
samba-testsuite registry-tools libparse-pidl-perl samba-dev python-samba
samba-dsdb-modules samba-vfs-modules libsmbclient libsmbclient-dev winbind
libpam-winbind libnss-winbind libwbclient0 libwbclient-dev ctdb
Architecture: source amd64 all
Version: 2:4.6.5+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Samba Maintainers <[email protected]>
Changed-By: Mathieu Parent <[email protected]>
Description:
ctdb - clustered database to store temporary data
libnss-winbind - Samba nameservice integration plugins
libpam-winbind - Windows domain authentication integration plugin
libparse-pidl-perl - IDL compiler written in Perl
libsmbclient - shared library for communication with SMB/CIFS servers
libsmbclient-dev - development files for libsmbclient
libwbclient-dev - Samba winbind client library - development files
libwbclient0 - Samba winbind client library
python-samba - Python bindings for Samba
registry-tools - tools for viewing and manipulating the Windows registry
samba - SMB/CIFS file, print, and login server for Unix
samba-common - common files used by both the Samba server and client
samba-common-bin - Samba common files used by both the server and the client
samba-dev - tools for extending Samba
samba-dsdb-modules - Samba Directory Services Database
samba-libs - Samba core libraries
samba-testsuite - test suite from Samba
samba-vfs-modules - Samba Virtual FileSystem plugins
smbclient - command-line SMB/CIFS clients for Unix
winbind - service to resolve user and group information from Windows NT ser
Closes: 739768 810794 866138 866258 866284
Changes:
samba (2:4.6.5+dfsg-3) unstable; urgency=medium
.
* Remove upstart code
* Remove empty prerm for samba and samba-common-bin (Closes: #866258,
#866284)
* sysv: Use --pidfile in addition to --exec to avoid matching daemons in
containers (Closes: #810794)
* Standards-Version: 4.0.0
- Use https form of the copyright-format URL (Debian Policy 4.0.0)
* Remove debian/bzr-builddeb.conf
* Remove empty debian/diversions
* Remove "ugly workaround to get the manpages on every architecture to be
identical", xsltproc now honour SOURCE_DATE_EPOCH
* Remove dh-exec shbang in libnss-winbind.install
* Remove empty debian/libsmbclient.manpages
* Remove pre-jessie maintscript snipsets
* Move to debhelper compat 10 (Major change: dh_installinit command now
defaults to --restart-after-upgrade)
* Remove unused samba-ad-dc package metadata (Closes: #866138)
* Fix "Non-kerberos logins fails on winbind 4.X when krb5_auth is configured
in PAM" (Closes: #739768)
Checksums-Sha1:
6ef0e405de2f4f75f4dec0afd40a405803155b23 4072 samba_4.6.5+dfsg-3.dsc
5cff9b0c4fc19361a9117cf0308dffb679f561b6 224208
samba_4.6.5+dfsg-3.debian.tar.xz
daa42660389454305336b498e09aad68c48ed9db 2207606
ctdb-dbgsym_4.6.5+dfsg-3_amd64.deb
8411fb6672443acbfa5d55becdbeca39c9f423f0 666626 ctdb_4.6.5+dfsg-3_amd64.deb
20d8c12dc49829ecdf9f0c1e7d29c3b2f254c41d 28868
libnss-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
35da3947f9211ad34b7fd6471a664ef1f510bace 107808
libnss-winbind_4.6.5+dfsg-3_amd64.deb
2b0ae8f86544b71e84f85bd533104fd3d66d8446 42732
libpam-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
71f5e8d633a336fff31af36bac8a6290174e8df9 125670
libpam-winbind_4.6.5+dfsg-3_amd64.deb
b70bee6539e672bffe7afb3c8276e5bf94f71f26 191942
libparse-pidl-perl_4.6.5+dfsg-3_amd64.deb
cd5dfdc41030e47e24d996ca7584657914e0cf64 194788
libsmbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
fb13a4b863df5bf6fdb31da25c9ed1020694b4de 138378
libsmbclient-dev_4.6.5+dfsg-3_amd64.deb
f1cde09bfe0aab2ce6a23a531a06fec03c55aae4 150704
libsmbclient_4.6.5+dfsg-3_amd64.deb
fcf84ff3feebde9e5e1b49691dd9f6e0cb89ac5a 109916
libwbclient-dev_4.6.5+dfsg-3_amd64.deb
1400d429da886b4bd965d2eeffc499d1925be8c7 87232
libwbclient0-dbgsym_4.6.5+dfsg-3_amd64.deb
d595a98f78a13d790dd9e9bf886fc45697772210 124150
libwbclient0_4.6.5+dfsg-3_amd64.deb
6159a14434baaa9519941b225988812618a932e6 6232400
python-samba-dbgsym_4.6.5+dfsg-3_amd64.deb
4e14c1768791d97ab9132b7d0d80983a7bc4be58 1886618
python-samba_4.6.5+dfsg-3_amd64.deb
9614d16626fa168444525ffa007cbcb848503128 77590
registry-tools-dbgsym_4.6.5+dfsg-3_amd64.deb
5916a8d284596a93c63d7572cb8e2fe5ac2ecbf3 125610
registry-tools_4.6.5+dfsg-3_amd64.deb
e93141dca89035537416d9d0c927a50968bfbaf9 1271548
samba-common-bin-dbgsym_4.6.5+dfsg-3_amd64.deb
db50a04459eeeef1c8af2c7d1efb59d8fca85c80 606944
samba-common-bin_4.6.5+dfsg-3_amd64.deb
71aa3dd83a2108ba58119355397c52bccb098553 165870
samba-common_4.6.5+dfsg-3_all.deb
e862abda6fa26c40ed0af401db5ece11faec86b1 1941024
samba-dbgsym_4.6.5+dfsg-3_amd64.deb
8054fb2e5db2054f64ce5dbc4a6bdfdaac8335c5 325424
samba-dev_4.6.5+dfsg-3_amd64.deb
0d37e3b6d374fe1f287e83e80a7a834b2a3b41a2 886790
samba-dsdb-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
0a97c310e82477bfdc695da5c00665f313577213 327814
samba-dsdb-modules_4.6.5+dfsg-3_amd64.deb
4e7ed43707ce60470ba23069e3e3cb1b6dc9f9c4 19594480
samba-libs-dbgsym_4.6.5+dfsg-3_amd64.deb
13d8367b1c07ed34d4b8d9573f346fdccefee635 5282542
samba-libs_4.6.5+dfsg-3_amd64.deb
11f5f3408b4d2eee6c7c2c602a3e8cfa1b8b335c 5557758
samba-testsuite-dbgsym_4.6.5+dfsg-3_amd64.deb
534e0ef35d09cc8e69b92edefc6dfe9cd7357f93 1799980
samba-testsuite_4.6.5+dfsg-3_amd64.deb
35f4949060156d6ee5faa95b57c121f37da16183 1335446
samba-vfs-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
01faa2cb5cc087f5ddfe5f9c7d54e123422595ec 388418
samba-vfs-modules_4.6.5+dfsg-3_amd64.deb
af95242f146df88b32d17ad389b78d0103163844 20562
samba_4.6.5+dfsg-3_amd64.buildinfo
dacd314d237508b932303e3b4841a85f2d951a7c 936422 samba_4.6.5+dfsg-3_amd64.deb
cc696a0ca6a1cfbbd7fc54c17416eb33e454e75d 1257074
smbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
35f2b5416dd172f0589db1cad18ac5a326ef4537 442192
smbclient_4.6.5+dfsg-3_amd64.deb
90db2c7d4c173f91da6e5307ce33dad08849990e 1781964
winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
296aedb07a38f890b386be9952902082ac92014d 531764 winbind_4.6.5+dfsg-3_amd64.deb
Checksums-Sha256:
39eb5abe1ab1fbe7a326e082bf4f25875c9988277e63c0a67c3ce930655eb8d5 4072
samba_4.6.5+dfsg-3.dsc
b9a14a24286fafdb7d631795b09a9bfbf9e8bbc0eb2dd32ccb19a072ce6acf6f 224208
samba_4.6.5+dfsg-3.debian.tar.xz
560982c229419e6d996f20391b9cbe27d28ce7381baf19398a94a08a33ffb5da 2207606
ctdb-dbgsym_4.6.5+dfsg-3_amd64.deb
7fd0ca000b3ae8e959299450d8e4fdf62af5a69f7c86c98f9f02e0c0c7acddb7 666626
ctdb_4.6.5+dfsg-3_amd64.deb
655ad5e85ebae28aaa3ad71dcae922377b86621099c0d297b6afa441ff7bec56 28868
libnss-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
aa19eed9c97fa2f810131b09eaa97035a99da1637d0695ddd49aff11ccd00278 107808
libnss-winbind_4.6.5+dfsg-3_amd64.deb
36f3a8084c3c4cf64e75e2ca462a44b545becbc87d3485e7bb3d9b6464e1a2c2 42732
libpam-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
447cac77bb4a649cc5cdf6865c3f973df453f0da950a74daf48167910103a9d0 125670
libpam-winbind_4.6.5+dfsg-3_amd64.deb
3e6b2b16f7ee3343389ac2bc732e0a70acef9bdb7b275068e7f701e74cac0a2c 191942
libparse-pidl-perl_4.6.5+dfsg-3_amd64.deb
6857278e47a475ced108c62fe20804710aad0d726f653a3e43b5edf344d36321 194788
libsmbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
0ba7ddd7242d7673c76507177c9a83ef2e9ae7ad9ea7330d01e0b9312905788e 138378
libsmbclient-dev_4.6.5+dfsg-3_amd64.deb
577f0ba8dcdb1569689c20b198c04d16ef49c9eed6ea91646fb8cd91be23e18a 150704
libsmbclient_4.6.5+dfsg-3_amd64.deb
9c7b668d4f500bc478e25bbe0b653bb7d1df81da0ccb8bab1f4151e742ddd90a 109916
libwbclient-dev_4.6.5+dfsg-3_amd64.deb
61070259dc00f2e5599b6b1c8b7e27aa0456a064e70fdd772aa1d1899d3c7fd2 87232
libwbclient0-dbgsym_4.6.5+dfsg-3_amd64.deb
9b5005ea2a5d194f048caeaab28a82a26085bff77582627f451b9aff567ef9e7 124150
libwbclient0_4.6.5+dfsg-3_amd64.deb
79dd8befc847af031394e9305395a7fc361ff9d7ac814a88662d7c0b040726f2 6232400
python-samba-dbgsym_4.6.5+dfsg-3_amd64.deb
0de4d3b4de96dc10fa9c8e1ac2d6f17ec0b701cf8921f97dbab193762095ea41 1886618
python-samba_4.6.5+dfsg-3_amd64.deb
2c6a4bc5f6c3bc0856eb0aa25cb0510a4041d7f4c8957eb76925cb21257ff321 77590
registry-tools-dbgsym_4.6.5+dfsg-3_amd64.deb
51374ce024e8243edbee8eb74c3e9fe9da310188fa42cae0ac7473b8be99f8da 125610
registry-tools_4.6.5+dfsg-3_amd64.deb
e4283c89e427df09b3fd86cf0fa338d529492e2ad687b1183f1666c5ff57b380 1271548
samba-common-bin-dbgsym_4.6.5+dfsg-3_amd64.deb
055cf1f315194eb628acb9f9864f60cfb557bf2b5569c6cf88fe64e2d38dd97e 606944
samba-common-bin_4.6.5+dfsg-3_amd64.deb
3b7b7fb3f39cda83e41eb68936fd67f54be435275377e6358e9a2c216c51a12c 165870
samba-common_4.6.5+dfsg-3_all.deb
c943492f3ccd358a40f13229d7720ab2ec68805952f8453766849aa3b090f0cf 1941024
samba-dbgsym_4.6.5+dfsg-3_amd64.deb
08465d10b3630bf74ee23ffb605b2644aae579dd207ccfca3444b0d11ca2dc89 325424
samba-dev_4.6.5+dfsg-3_amd64.deb
9f9ccf8fc570ecebcd554ebfcf2a1c1adecff10aa9824d7d38d99fabecbff2c7 886790
samba-dsdb-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
f97dc417317b8511f578eedf65abf648accab419b0b4d8b9c5f5ad7578b44097 327814
samba-dsdb-modules_4.6.5+dfsg-3_amd64.deb
756d0a19a1c2474ec870f02f6232d5e867c9d0d1041e2821c30d2c8c49c8106b 19594480
samba-libs-dbgsym_4.6.5+dfsg-3_amd64.deb
0f446e4099e772818305dae8fd52fb3835f5dd61d3b5269b65a0200d48a5dc45 5282542
samba-libs_4.6.5+dfsg-3_amd64.deb
128e82b9152e195bfc935227e61811b27122e4cca83907508637fda052e11840 5557758
samba-testsuite-dbgsym_4.6.5+dfsg-3_amd64.deb
cbb98cdba2eb63452054d718d5402cdae1e0e2fe19767d23705616122cbf2818 1799980
samba-testsuite_4.6.5+dfsg-3_amd64.deb
77974361e6352e61fd6f1928d2a42fbf158cdd58c9751a2beb536a0d51224f25 1335446
samba-vfs-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
879666d1087322d0314d08a3eba2b89c2984709563e772fc9bed20e0461483bc 388418
samba-vfs-modules_4.6.5+dfsg-3_amd64.deb
69f50f71205711120a0a7f2149d63941e1e55eb470674b7390b2ec84d92ac106 20562
samba_4.6.5+dfsg-3_amd64.buildinfo
d88d83fbcd5b2cd77288ab15f828e4f84e686068dafbd44a6496ee0fcd9fadaf 936422
samba_4.6.5+dfsg-3_amd64.deb
200a9234ac8f4da279a7cd08a77fd3f44c5592310cf607101437e03fc86718b2 1257074
smbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
5321279f29cf60b13380d995216cd98894ab7531d04c799f873d2944cb56a02c 442192
smbclient_4.6.5+dfsg-3_amd64.deb
f3d6f175de9c57e314dc9e67a7e044abbcf88a46da2b99b8018840132113cbbb 1781964
winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
ce2d7ee4cb7306e50bb2759ab5c7faa4bf607331073a9e28a2545c86bb79e17c 531764
winbind_4.6.5+dfsg-3_amd64.deb
Files:
01d6306e751807512bfed6d2cce7b05d 4072 net optional samba_4.6.5+dfsg-3.dsc
d90f79eddea6ce768298f36997e08c50 224208 net optional
samba_4.6.5+dfsg-3.debian.tar.xz
3e6bbf69ac6a1601999801952f90a285 2207606 debug extra
ctdb-dbgsym_4.6.5+dfsg-3_amd64.deb
514f08266740bdb3c3acb5f198a94ec4 666626 net optional
ctdb_4.6.5+dfsg-3_amd64.deb
a0d37afed005fe0a3b0cbd7ebf66d41b 28868 debug extra
libnss-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
1c8afc3ebf3c8f285b2816cbb491742a 107808 net optional
libnss-winbind_4.6.5+dfsg-3_amd64.deb
ce2b982d5726c244ad98c5d3ecfc0dc2 42732 debug extra
libpam-winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
2d0ef54af96ad2289a0d2bd320ee1dee 125670 net optional
libpam-winbind_4.6.5+dfsg-3_amd64.deb
cf313c33c475d02093fcaa67c465ae79 191942 perl optional
libparse-pidl-perl_4.6.5+dfsg-3_amd64.deb
7755c8572f018767b80a0467bf3ce612 194788 debug extra
libsmbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
fc142c41027c96a934f5677827e54bde 138378 libdevel extra
libsmbclient-dev_4.6.5+dfsg-3_amd64.deb
c747f0ed1219e7026066488ee7d1a797 150704 libs optional
libsmbclient_4.6.5+dfsg-3_amd64.deb
6b03cc3637fde6e18112f24e3bbd70db 109916 libdevel optional
libwbclient-dev_4.6.5+dfsg-3_amd64.deb
a6cdd77da899ed86fe15b878f6f86a1e 87232 debug extra
libwbclient0-dbgsym_4.6.5+dfsg-3_amd64.deb
70854eb91dda3ff65457ecbef634ac9a 124150 libs optional
libwbclient0_4.6.5+dfsg-3_amd64.deb
0d30df07c2b2ff8395ddd148119b5a7d 6232400 debug extra
python-samba-dbgsym_4.6.5+dfsg-3_amd64.deb
85c2a45d209cc760e69fc4c30b45f6b0 1886618 python optional
python-samba_4.6.5+dfsg-3_amd64.deb
ae2e7ab842a5c54d9ad4ca801838b36b 77590 debug extra
registry-tools-dbgsym_4.6.5+dfsg-3_amd64.deb
692ec2be176ba74f5d487bed2436a2d5 125610 net optional
registry-tools_4.6.5+dfsg-3_amd64.deb
cae0b09e02a26e70ee12fcda98f1dd05 1271548 debug extra
samba-common-bin-dbgsym_4.6.5+dfsg-3_amd64.deb
975ddf056e22ebb14c7743e884483265 606944 net optional
samba-common-bin_4.6.5+dfsg-3_amd64.deb
e54781737eeb152a1aaa9d36155de8dd 165870 net optional
samba-common_4.6.5+dfsg-3_all.deb
f848ca2a7de5e6d88ec292fa855eed58 1941024 debug extra
samba-dbgsym_4.6.5+dfsg-3_amd64.deb
413e0697f91c828120c44bf9bc30e8ec 325424 devel optional
samba-dev_4.6.5+dfsg-3_amd64.deb
5eca8fa5affae4381fadc1601c322c52 886790 debug extra
samba-dsdb-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
fe2cacad95a9482e36682bba792d1bf6 327814 libs optional
samba-dsdb-modules_4.6.5+dfsg-3_amd64.deb
5958a203c84b9ac955ef3ebcbba259b6 19594480 debug extra
samba-libs-dbgsym_4.6.5+dfsg-3_amd64.deb
81b7d31a528c0a5eeca1a9356065f73c 5282542 libs optional
samba-libs_4.6.5+dfsg-3_amd64.deb
9c63b777a511836239171d85794e3365 5557758 debug extra
samba-testsuite-dbgsym_4.6.5+dfsg-3_amd64.deb
465afb07a08ab678778de5226abacb6f 1799980 net optional
samba-testsuite_4.6.5+dfsg-3_amd64.deb
d9c6a655fb0afceee6884e4f74a864a7 1335446 debug extra
samba-vfs-modules-dbgsym_4.6.5+dfsg-3_amd64.deb
a2345c5320a08f88c61511f07a41b40f 388418 net optional
samba-vfs-modules_4.6.5+dfsg-3_amd64.deb
ca286aee35fb3cfa283b5b588b646c92 20562 net optional
samba_4.6.5+dfsg-3_amd64.buildinfo
ff344dd1adc87ac6f3e58e562a9132d4 936422 net optional
samba_4.6.5+dfsg-3_amd64.deb
2ed4560cf410e0fe2f9c69f029dcfd7b 1257074 debug extra
smbclient-dbgsym_4.6.5+dfsg-3_amd64.deb
acd4a3d2257da260139d26cb616440e0 442192 net optional
smbclient_4.6.5+dfsg-3_amd64.deb
cc07f6cdbc0a12a6a9a29a904cd6f382 1781964 debug extra
winbind-dbgsym_4.6.5+dfsg-3_amd64.deb
cbb75050267a27d51d72d1f96ab8fa43 531764 net optional
winbind_4.6.5+dfsg-3_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEqIGbPTP9weQZ135HrgOYBGZoH6UFAllUyxIACgkQrgOYBGZo
H6X1Eg/9Fh2kOg6O61/6JGUH+W59JztUdUYVhUitY7x8rF0tVR9+Ku8bf/zdJDO9
YkjGd0mzqTivY769iHgkJXJmIr+3lcsvFNxU2gBLmswsR8voInsyyjjhBAy5h+aW
hQKVwcWTZMmXcjGnuW/TOIhHuDmRud6ff0wx8fVb+7t2QfB10skEv5OFI5bOo9ZY
CgYCwlSNfuqn2Sv3R2W8JmxsMlIyNfJvgQZFMohRp2Am3J2hhujL4MkBz2qPyrbg
xZinfw8TPJGGP6exB68bJwdPrcJKsoxKTkyP72FjiXtQsbF8VWCAgmWbGsBghn8D
PEA9emEKZ7s77caZ49LRpsI/LgG8tZzHGJzb7dcK0iBOb7GinwPknJ1Tq/u4M6p9
iSxZ5QQhMbK0C77SFQD2exYsPLKKCttOipLDbSyn6KkT7XrSrnfy/2L3YYt8+6/6
vqmA5e7qqCHrB8trfTEH4Ad6tKTSWtakiRHsfDt38LcCIT6NSLp/T2zvMlq12RbB
YoevjHpmGK/h9wnaLWC+DVrf00/2QC0ELo67A55pPE8eHYjR+JidaPYPy9FH0hyP
0IdVkC8CIqHOx94UorUipKM33FG9SM/VvtKOQws0srv8rQhnhjTrkorUzpgSXR7t
5jZrQ9Bpyu2ADMD5RKHf9a+clQE9OZUmd5gdoq3zprvX/g821vQ=
=Rfyi
-----END PGP SIGNATURE-----
--- End Message ---