/[smeserver]/rpms/samba/sme10/samba.spec
ViewVC logotype

Annotation of /rpms/samba/sme10/samba.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.7 - (hide annotations) (download)
Fri May 26 19:16:27 2017 UTC (7 years ago) by unnilennium
Branch: MAIN
Changes since 1.6: +23 -0 lines
* Fri May 26 2017 Jean-Philipe Pialasse <tests@pialasse.com> 4.4.4-14.6.sme
- import to SME the two last upstream releases [SME: 10326]
- resolves: #1450784 - Security fix for CVE-2017-7494
- resolves: #1437816 - Fix krb5 memory cache in libads sasl code
- resolves: #1437741 - Fix CVE-2016-2125, CVE-2016-2126 and CVE-2017-2619

1 vip-ire 1.1 # rpmbuild --rebuild --with testsuite --without clustering samba.src.rpm
2     #
3 unnilennium 1.3 # The testsuite is disabled by default. Set --with testsuite or bcond_without
4 vip-ire 1.1 # to run the Samba torture testsuite.
5     %bcond_with testsuite
6     # ctdb is enabled by default, you can disable it with: --without clustering
7     %bcond_without clustering
8    
9 unnilennium 1.6 %define main_release 12.6
10 vip-ire 1.1
11 unnilennium 1.3 %define samba_version 4.4.4
12     %define talloc_version 2.1.6
13     %define tdb_version 1.3.8
14     %define tevent_version 0.9.28
15     %define ldb_version 1.1.26
16 vip-ire 1.1 # This should be rc1 or nil
17     %define pre_release %nil
18    
19     %if "x%{?pre_release}" != "x"
20     %define samba_release 0.%{main_release}.%{pre_release}%{?dist}
21     %else
22     %define samba_release %{main_release}%{?dist}
23     %endif
24    
25 unnilennium 1.3 # This is a network daemon, do a hardened build
26 vip-ire 1.1 # Enables PIE and full RELRO protection
27     %global _hardened_build 1
28    
29     %global with_libsmbclient 1
30     %global with_libwbclient 1
31    
32     %global with_internal_talloc 0
33     %global with_internal_tevent 0
34     %global with_internal_tdb 0
35 unnilennium 1.4 %global with_internal_ldb 1
36 vip-ire 1.1
37     %global with_profiling 1
38    
39     %global with_vfs_cephfs 1
40     %if 0%{?rhel}
41     %global with_vfs_cephfs 0
42     %endif
43    
44     %global with_vfs_glusterfs 1
45     %if 0%{?rhel}
46     %global with_vfs_glusterfs 0
47     # Only enable on x86_64
48     %ifarch x86_64
49     %global with_vfs_glusterfs 1
50     %endif
51     %endif
52    
53     %global libwbc_alternatives_version 0.12
54     %global libwbc_alternatives_suffix %nil
55     %if 0%{?__isa_bits} == 64
56     %global libwbc_alternatives_suffix -64
57     %endif
58    
59 unnilennium 1.4 %global with_mitkrb5 0
60     %global with_dc 1
61 vip-ire 1.1
62     %if %{with testsuite}
63     # The testsuite only works with a full build right now.
64     %global with_mitkrb5 0
65     %global with_dc 1
66     %endif
67    
68     %global with_clustering_support 0
69    
70     %if %{with clustering}
71     %global with_clustering_support 1
72     %endif
73    
74     %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
75    
76     Name: samba
77     Version: %{samba_version}
78     Release: %{samba_release}
79    
80     %if 0%{?rhel}
81     Epoch: 0
82     %else
83     Epoch: 2
84     %endif
85    
86     %if 0%{?epoch} > 0
87     %define samba_depver %{epoch}:%{version}-%{release}
88     %else
89     %define samba_depver %{version}-%{release}
90     %endif
91    
92     Summary: Server and Client software to interoperate with Windows machines
93     License: GPLv3+ and LGPLv3+
94     Group: System Environment/Daemons
95     URL: http://www.samba.org/
96    
97     Source0: samba-%{version}%{pre_release}.tar.xz
98    
99     # Red Hat specific replacement-files
100     Source1: samba.log
101     Source2: samba.xinetd
102 unnilennium 1.3 Source3: smb.conf.vendor
103     Source4: smb.conf.example
104 vip-ire 1.1 Source5: pam_winbind.conf
105     Source6: samba.pamd
106    
107     Source200: README.dc
108     Source201: README.downgrade
109    
110 unnilennium 1.3 Patch0: samba-4.4.5-fix_resolving_trusted_domain_users.patch
111     Patch1: samba-4.4.5-fix_site_aware_net_ads_join_with_krb5.patch
112     Patch2: samba-4.4.5-accept_empty_realm_for_ad_domains_with_security_domain.patch
113     Patch3: samba-4.4.5-fix_winbind_cached_creds_memleak.patch
114     Patch4: CVE-2016-2119-v4-4.patch
115     Patch5: samba-4.4.7-fix-ctdb-test-install-dir.patch
116     Patch6: samba-4.4.7-fix_ads_krb5_ccname_handling.patch
117     Patch7: samba-4.4.7-fix_smbclient_cpu_usage_with_unreachable_ip.patch
118     Patch8: samba-4.4.7-fix_idmap_range_checks.patch
119     Patch9: samba-4.4.7-fix_smget_auth_callback.patch
120     Patch10: samba-4.4.6-fix_nss_wins.patch
121     Patch11: samba-4.4.7-fix_group_substituion_with_ad.patch
122     Patch12: samba-4.4.6-fix_smbclient_against_apple_and_azure.patch
123 unnilennium 1.7 Patch13: samba-4.4.x-fix_libads_krb5_memcache.patch
124     Patch14: CVE-2016-2125-v4-4.patch
125     Patch15: CVE-2016-2126-v4-4.patch
126     Patch16: CVE-2017-2619-v4-4.patch
127     Patch17: CVE-2017-7494.patch
128 vip-ire 1.1
129     BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
130    
131     Requires(pre): /usr/sbin/groupadd
132     Requires(post): systemd
133     Requires(preun): systemd
134     Requires(postun): systemd
135    
136     Requires(pre): %{name}-common = %{samba_depver}
137     Requires: %{name}-common-libs = %{samba_depver}
138     Requires: %{name}-common-tools = %{samba_depver}
139     Requires: %{name}-client-libs = %{samba_depver}
140     Requires: %{name}-libs = %{samba_depver}
141     %if %with_libwbclient
142     Requires: libwbclient = %{samba_depver}
143     %endif
144    
145     Requires: pam
146    
147     Provides: samba4 = %{samba_depver}
148     Obsoletes: samba4 < %{samba_depver}
149    
150     # We don't build it outdated docs anymore
151 unnilennium 1.3 Provides: samba-doc = %{samba_depver}
152     Obsoletes: samba-doc < %{samba_depver}
153    
154 vip-ire 1.1 # Is not supported yet
155 unnilennium 1.3 Provides: samba-domainjoin-gui = %{samba_depver}
156     Obsoletes: samba-domainjoin-gui < %{samba_depver}
157    
158 vip-ire 1.1 # SWAT been deprecated and removed from samba
159 unnilennium 1.3 Provides: samba-swat = %{samba_depver}
160     Obsoletes: samba-swat < %{samba_depver}
161    
162     Provides: samba4-swat = %{samba_depver}
163     Obsoletes: samba4-swat < %{samba_depver}
164 vip-ire 1.1
165     BuildRequires: cups-devel
166     BuildRequires: dbus-devel
167     BuildRequires: docbook-style-xsl
168     BuildRequires: e2fsprogs-devel
169     BuildRequires: gawk
170 unnilennium 1.3 BuildRequires: krb5-devel >= 1.14
171 vip-ire 1.1 BuildRequires: libacl-devel
172     BuildRequires: libaio-devel
173     BuildRequires: libarchive-devel
174     BuildRequires: libattr-devel
175     BuildRequires: libcap-devel
176     BuildRequires: libuuid-devel
177     BuildRequires: libxslt
178     BuildRequires: ncurses-devel
179     BuildRequires: openldap-devel
180     BuildRequires: pam-devel
181     BuildRequires: perl(ExtUtils::MakeMaker)
182     BuildRequires: perl(Parse::Yapp)
183     BuildRequires: popt-devel
184 unnilennium 1.3 BuildRequires: python
185 vip-ire 1.1 BuildRequires: python-devel
186     BuildRequires: python-tevent
187     BuildRequires: quota-devel
188     BuildRequires: readline-devel
189     BuildRequires: sed
190     BuildRequires: xfsprogs-devel
191     BuildRequires: zlib-devel >= 1.2.3
192    
193     BuildRequires: pkgconfig(libsystemd)
194    
195     %if %{with_vfs_glusterfs}
196     BuildRequires: glusterfs-api-devel >= 3.4.0.16
197     BuildRequires: glusterfs-devel >= 3.4.0.16
198     %endif
199     %if %{with_vfs_cephfs}
200     BuildRequires: libcephfs1-devel
201     %endif
202 unnilennium 1.6 BuildRequires: gnutls-devel
203 unnilennium 1.3 # Allow build with testsuite which uses heimdal
204     #%if %{with_dc}
205     #BuildRequires: gnutls-devel >= 3.4.7
206     # Required by samba-tool
207     #BuildRequires: python-crypto
208     #%endif
209 vip-ire 1.1
210     # pidl requirements
211     BuildRequires: perl(Parse::Yapp)
212    
213     %if ! %with_internal_talloc
214 unnilennium 1.3 %global libtalloc_version 2.1.6
215 vip-ire 1.1
216     BuildRequires: libtalloc-devel >= %{libtalloc_version}
217     BuildRequires: pytalloc-devel >= %{libtalloc_version}
218     %endif
219    
220     %if ! %with_internal_tevent
221 unnilennium 1.3 %global libtevent_version 0.9.28
222 vip-ire 1.1
223     BuildRequires: libtevent-devel >= %{libtevent_version}
224     BuildRequires: python-tevent >= %{libtevent_version}
225     %endif
226    
227     %if ! %with_internal_ldb
228 unnilennium 1.3 %global libldb_version 1.1.26
229 vip-ire 1.1
230     BuildRequires: libldb-devel >= %{libldb_version}
231     BuildRequires: pyldb-devel >= %{libldb_version}
232     %endif
233    
234     %if ! %with_internal_tdb
235 unnilennium 1.3 %global libtdb_version 1.3.8
236 vip-ire 1.1
237     BuildRequires: libtdb-devel >= %{libtdb_version}
238     BuildRequires: python-tdb >= %{libtdb_version}
239     %endif
240    
241     %if %{with testsuite}
242     BuildRequires: ldb-tools
243     %endif
244    
245     # filter out perl requirements pulled in from examples in the docdir.
246     %{?filter_setup:
247     %filter_provides_in %{_docdir}
248     %filter_requires_in %{_docdir}
249     %filter_setup
250     }
251    
252     ### SAMBA
253     %description
254 unnilennium 1.3 Samba is the standard Windows interoperability suite of programs for Linux and
255     Unix.
256 vip-ire 1.1
257     ### CLIENT
258     %package client
259     Summary: Samba client programs
260     Group: Applications/System
261     Requires(pre): %{name}-common = %{samba_depver}
262     Requires: %{name}-common-libs = %{samba_depver}
263     Requires: %{name}-client-libs = %{samba_depver}
264     %if %with_libsmbclient
265     Requires: libsmbclient = %{samba_depver}
266     %endif
267    
268     Provides: samba4-client = %{samba_depver}
269     Obsoletes: samba4-client < %{samba_depver}
270    
271 unnilennium 1.3 Requires(post): %{_sbindir}/update-alternatives
272     Requires(postun): %{_sbindir}/update-alternatives
273    
274 vip-ire 1.1 %description client
275 unnilennium 1.3 The %{name}-client package provides some SMB/CIFS clients to complement
276 vip-ire 1.1 the built-in SMB/CIFS filesystem in Linux. These clients allow access
277     of SMB/CIFS shares and printing to SMB/CIFS printers.
278    
279     ### CLIENT-LIBS
280     %package client-libs
281     Summary: Samba client libraries
282     Group: Applications/System
283     Requires(pre): %{name}-common = %{samba_depver}
284     %if %with_libwbclient
285     Requires: libwbclient = %{samba_depver}
286     %endif
287    
288     %description client-libs
289     The samba-client-libs package contains internal libraries needed by the
290     SMB/CIFS clients.
291    
292     ### COMMON
293     %package common
294     Summary: Files used by both Samba servers and clients
295     Group: Applications/System
296     BuildArch: noarch
297    
298     Requires(post): systemd
299    
300     Provides: samba4-common = %{samba_depver}
301     Obsoletes: samba4-common < %{samba_depver}
302    
303     %description common
304     samba-common provides files necessary for both the server and client
305     packages of Samba.
306    
307     ### COMMON-LIBS
308     %package common-libs
309     Summary: Libraries used by both Samba servers and clients
310     Group: Applications/System
311     Requires(pre): samba-common = %{samba_depver}
312     Requires: %{name}-client-libs = %{samba_depver}
313     %if %with_libwbclient
314     Requires: libwbclient = %{samba_depver}
315     %endif
316    
317     %description common-libs
318     The samba-common-libs package contains internal libraries needed by the
319     SMB/CIFS clients.
320    
321     ### COMMON-TOOLS
322     %package common-tools
323     Summary: Tools for Samba servers and clients
324     Group: Applications/System
325     Requires: samba-common-libs = %{samba_depver}
326     Requires: samba-client-libs = %{samba_depver}
327     Requires: samba-libs = %{samba_depver}
328     %if %with_libwbclient
329     Requires: libwbclient = %{samba_depver}
330     %endif
331    
332     %description common-tools
333     The samba-common-tools package contains tools for Samba servers and
334     SMB/CIFS clients.
335    
336     ### DC
337     %package dc
338     Summary: Samba AD Domain Controller
339     Group: Applications/System
340 unnilennium 1.3 Requires: %{name} = %{samba_depver}
341 vip-ire 1.1 Requires: %{name}-libs = %{samba_depver}
342     Requires: %{name}-dc-libs = %{samba_depver}
343     Requires: %{name}-python = %{samba_depver}
344 unnilennium 1.3 Requires: %{name}-winbind = %{samba_depver}
345     %if %{with_dc}
346     # samba-tool requirements
347     Requires: python-crypto
348     %endif
349 vip-ire 1.1
350     Provides: samba4-dc = %{samba_depver}
351     Obsoletes: samba4-dc < %{samba_depver}
352    
353     %description dc
354     The samba-dc package provides AD Domain Controller functionality
355    
356     ### DC-LIBS
357     %package dc-libs
358     Summary: Samba AD Domain Controller Libraries
359     Group: Applications/System
360     Requires: %{name}-common-libs = %{samba_depver}
361     Requires: %{name}-libs = %{samba_depver}
362    
363     Provides: samba4-dc-libs = %{samba_depver}
364     Obsoletes: samba4-dc-libs < %{samba_depver}
365    
366     %description dc-libs
367 unnilennium 1.3 The %{name}-dc-libs package contains the libraries needed by the DC to
368 vip-ire 1.1 link against the SMB, RPC and other protocols.
369    
370     ### DEVEL
371     %package devel
372     Summary: Developer tools for Samba libraries
373     Group: Development/Libraries
374     Requires: %{name}-libs = %{samba_depver}
375     Requires: %{name}-client-libs = %{samba_depver}
376    
377     Provides: samba4-devel = %{samba_depver}
378     Obsoletes: samba4-devel < %{samba_depver}
379    
380     %description devel
381 unnilennium 1.3 The %{name}-devel package contains the header files for the libraries
382 vip-ire 1.1 needed to develop programs that link against the SMB, RPC and other
383     libraries in the Samba suite.
384    
385     ### CEPH
386     %if %{with_vfs_cephfs}
387     %package vfs-cephfs
388     Summary: Samba VFS module for Ceph distributed storage system
389     Group: Applications/System
390     Requires: libcephfs1
391     Requires: %{name} = %{samba_depver}
392     Requires: %{name}-libs = %{samba_depver}
393    
394     %description vfs-cephfs
395     Samba VFS module for Ceph distributed storage system integration.
396     %endif
397    
398     ### GLUSTER
399     %if %{with_vfs_glusterfs}
400     %package vfs-glusterfs
401     Summary: Samba VFS module for GlusterFS
402     Group: Applications/System
403 unnilennium 1.4 Requires: libldb
404 vip-ire 1.1 Requires: glusterfs-api >= 3.4.0.16
405     Requires: glusterfs >= 3.4.0.16
406     Requires: %{name} = %{samba_depver}
407     Requires: %{name}-client-libs = %{samba_depver}
408     Requires: %{name}-libs = %{samba_depver}
409    
410 unnilennium 1.3 Obsoletes: samba-glusterfs < %{samba_depver}
411     Provides: samba-glusterfs = %{samba_depver}
412 vip-ire 1.1
413     %description vfs-glusterfs
414     Samba VFS module for GlusterFS integration.
415     %endif
416    
417 unnilennium 1.3 ### KRB5-PRINTING
418     %package krb5-printing
419     Summary: Samba CUPS backend for printing with Kerberos
420     Group: Applications/System
421     Requires(pre): %{name}-client
422    
423     Requires(post): %{_sbindir}/update-alternatives
424     Requires(postun): %{_sbindir}/update-alternatives
425    
426     %description krb5-printing
427     If you need Kerberos for print jobs to a printer connection to cups via the SMB
428     backend, then you need to install that package. It will allow cups to access
429     the Kerberos credentials cache of the user issuing the print job.
430    
431 vip-ire 1.1 ### LIBS
432     %package libs
433     Summary: Samba libraries
434     Group: Applications/System
435 unnilennium 1.3 Requires: krb5-libs >= 1.14
436 vip-ire 1.1 Requires: %{name}-client-libs = %{samba_depver}
437     %if %with_libwbclient
438     Requires: libwbclient = %{samba_depver}
439     %endif
440    
441     Provides: samba4-libs = %{samba_depver}
442     Obsoletes: samba4-libs < %{samba_depver}
443    
444     %description libs
445 unnilennium 1.3 The %{name}-libs package contains the libraries needed by programs that link
446     against the SMB, RPC and other protocols provided by the Samba suite.
447 vip-ire 1.1
448     ### LIBSMBCLIENT
449     %if %with_libsmbclient
450     %package -n libsmbclient
451     Summary: The SMB client library
452     Group: Applications/System
453     Requires(pre): %{name}-common = %{samba_depver}
454     Requires: %{name}-client-libs = %{samba_depver}
455    
456     %description -n libsmbclient
457     The libsmbclient contains the SMB client library from the Samba suite.
458    
459     %package -n libsmbclient-devel
460     Summary: Developer tools for the SMB client library
461     Group: Development/Libraries
462     Requires: libsmbclient = %{samba_depver}
463    
464     %description -n libsmbclient-devel
465 unnilennium 1.3 The libsmbclient-devel package contains the header files and libraries needed
466     to develop programs that link against the SMB client library in the Samba
467     suite.
468 vip-ire 1.1 %endif # with_libsmbclient
469    
470     ### LIBWBCLIENT
471     %if %with_libwbclient
472     %package -n libwbclient
473     Summary: The winbind client library
474     Group: Applications/System
475     Requires: %{name}-client-libs = %{samba_depver}
476    
477     %description -n libwbclient
478 unnilennium 1.3 The libwbclient package contains the winbind client library from the Samba
479     suite.
480 vip-ire 1.1
481     %package -n libwbclient-devel
482     Summary: Developer tools for the winbind library
483     Group: Development/Libraries
484     Requires: libwbclient = %{samba_depver}
485 unnilennium 1.3
486     Provides: samba-winbind-devel = %{samba_depver}
487     Obsoletes: samba-winbind-devel < %{samba_depver}
488 vip-ire 1.1
489     %description -n libwbclient-devel
490 unnilennium 1.3 The libwbclient-devel package provides developer tools for the wbclient
491     library.
492 vip-ire 1.1 %endif # with_libwbclient
493    
494     ### PYTHON
495     %package python
496     Summary: Samba Python libraries
497     Group: Applications/System
498     Requires: %{name} = %{samba_depver}
499     Requires: %{name}-client-libs = %{samba_depver}
500     Requires: %{name}-libs = %{samba_depver}
501     Requires: python-tevent
502     Requires: python-tdb
503 unnilennium 1.4 #Requires: pyldb
504 vip-ire 1.1 Requires: pytalloc
505    
506     Provides: samba4-python = %{samba_depver}
507     Obsoletes: samba4-python < %{samba_depver}
508    
509     %description python
510 unnilennium 1.3 The %{name}-python package contains the Python libraries needed by programs
511 vip-ire 1.1 that use SMB, RPC and other Samba provided protocols in Python programs.
512    
513     ### PIDL
514     %package pidl
515     Summary: Perl IDL compiler
516     Group: Development/Tools
517     Requires: perl(Parse::Yapp)
518     Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
519     BuildArch: noarch
520    
521     Provides: samba4-pidl = %{samba_depver}
522     Obsoletes: samba4-pidl < %{samba_depver}
523    
524     %description pidl
525     The %{name}-pidl package contains the Perl IDL compiler used by Samba
526     and Wireshark to parse IDL and similar protocols
527    
528     ### TEST
529     %package test
530     Summary: Testing tools for Samba servers and clients
531     Group: Applications/System
532     Requires: %{name} = %{samba_depver}
533     Requires: %{name}-common = %{samba_depver}
534     Requires: %{name}-winbind = %{samba_depver}
535    
536     Requires: %{name}-client-libs = %{samba_depver}
537     Requires: %{name}-libs = %{samba_depver}
538     Requires: %{name}-test-libs = %{samba_depver}
539     %if %with_dc
540     Requires: %{name}-dc-libs = %{samba_depver}
541     %endif
542     Requires: %{name}-libs = %{samba_depver}
543     %if %with_libsmbclient
544     Requires: libsmbclient = %{samba_depver}
545     %endif
546     %if %with_libwbclient
547     Requires: libwbclient = %{samba_depver}
548     %endif
549    
550     Provides: samba4-test = %{samba_depver}
551     Obsoletes: samba4-test < %{samba_depver}
552    
553     %description test
554     %{name}-test provides testing tools for both the server and client
555     packages of Samba.
556    
557     ### TEST-LIBS
558     %package test-libs
559 unnilennium 1.3 Summary: Libraries need by the testing tools for Samba servers and clients
560 vip-ire 1.1 Group: Applications/System
561     Requires: %{name}-client-libs = %{samba_depver}
562     Requires: %{name}-libs = %{samba_depver}
563    
564 unnilennium 1.3 Provides: %{name}-test-devel = %{samba_depver}
565     Obsoletes: %{name}-test-devel < %{samba_depver}
566    
567 vip-ire 1.1 %description test-libs
568     %{name}-test-libs provides libraries required by the testing tools.
569    
570     ### WINBIND
571     %package winbind
572     Summary: Samba winbind
573     Group: Applications/System
574     Requires(pre): %{name}-common = %{samba_depver}
575     Requires: %{name}-common-libs = %{samba_depver}
576     Requires: %{name}-common-tools = %{samba_depver}
577     Requires: %{name}-client-libs = %{samba_depver}
578     Requires: %{name}-libs = %{samba_depver}
579     Requires: %{name}-winbind-modules = %{samba_depver}
580    
581     Provides: samba4-winbind = %{samba_depver}
582     Obsoletes: samba4-winbind < %{samba_depver}
583    
584     %description winbind
585 unnilennium 1.3 The samba-winbind package provides the winbind NSS library, and some client
586     tools. Winbind enables Linux to be a full member in Windows domains and to use
587     Windows user and group accounts on Linux.
588 vip-ire 1.1
589     ### WINBIND-CLIENTS
590     %package winbind-clients
591     Summary: Samba winbind clients
592     Group: Applications/System
593     Requires: %{name}-common = %{samba_depver}
594     Requires: %{name}-common-libs = %{samba_depver}
595     Requires: %{name}-client-libs = %{samba_depver}
596     Requires: %{name}-libs = %{samba_depver}
597     Requires: %{name}-winbind = %{samba_depver}
598     %if %with_libwbclient
599     Requires: libwbclient = %{samba_depver}
600     %endif
601    
602     Provides: samba4-winbind-clients = %{samba_depver}
603     Obsoletes: samba4-winbind-clients < %{samba_depver}
604    
605     %description winbind-clients
606     The samba-winbind-clients package provides the wbinfo and ntlm_auth
607     tool.
608    
609     ### WINBIND-KRB5-LOCATOR
610     %package winbind-krb5-locator
611     Summary: Samba winbind krb5 locator
612     Group: Applications/System
613     %if %with_libwbclient
614     Requires: libwbclient = %{samba_depver}
615     Requires: %{name}-winbind = %{samba_depver}
616     %else
617     Requires: %{name}-libs = %{samba_depver}
618     %endif
619    
620     Provides: samba4-winbind-krb5-locator = %{samba_depver}
621     Obsoletes: samba4-winbind-krb5-locator < %{samba_depver}
622    
623     # Handle winbind_krb5_locator.so as alternatives to allow
624     # IPA AD trusts case where it should not be used by libkrb5
625     # The plugin will be diverted to /dev/null by the FreeIPA
626     # freeipa-server-trust-ad subpackage due to higher priority
627     # and restored to the proper one on uninstall
628     Requires(post): %{_sbindir}/update-alternatives
629     Requires(postun): %{_sbindir}/update-alternatives
630     Requires(preun): %{_sbindir}/update-alternatives
631    
632     %description winbind-krb5-locator
633     The winbind krb5 locator is a plugin for the system kerberos library to allow
634     the local kerberos library to use the same KDC as samba and winbind use
635    
636     ### WINBIND-MODULES
637     %package winbind-modules
638     Summary: Samba winbind modules
639     Group: Applications/System
640     Requires: %{name}-client-libs = %{samba_depver}
641     Requires: %{name}-libs = %{samba_depver}
642     %if %with_libwbclient
643     Requires: libwbclient = %{samba_depver}
644     %endif
645     Requires: pam
646    
647     %description winbind-modules
648 unnilennium 1.3 The samba-winbind-modules package provides the NSS library and a PAM module
649     necessary to communicate to the Winbind Daemon
650 vip-ire 1.1
651     ### CTDB
652     %if %with_clustering_support
653     %package -n ctdb
654     Summary: A Clustered Database based on Samba's Trivial Database (TDB)
655     Group: System Environment/Daemons
656    
657     Requires: %{name}-client-libs = %{samba_depver}
658    
659     Requires: coreutils
660     Requires: fileutils
661     # for ps and killall
662     Requires: psmisc
663     Requires: sed
664     Requires: tdb-tools
665     Requires: gawk
666     # for pkill and pidof:
667     Requires: procps-ng
668     # for netstat:
669     Requires: net-tools
670     Requires: ethtool
671     # for ip:
672     Requires: iproute
673     Requires: iptables
674     # for flock, getopt, kill:
675     Requires: util-linux
676    
677     Requires(post): systemd-units
678     Requires(preun): systemd-units
679     Requires(postun): systemd-units
680    
681     %description -n ctdb
682     CTDB is a cluster implementation of the TDB database used by Samba and other
683     projects to store temporary data. If an application is already using TDB for
684     temporary data it is very easy to convert that application to be cluster aware
685     and use CTDB instead.
686    
687     ### CTDB-TEST
688     %package -n ctdb-tests
689     Summary: CTDB clustered database test suite
690     Group: Development/Tools
691    
692     Requires: samba-client-libs = %{samba_depver}
693    
694     Requires: ctdb = %{samba_depver}
695     Requires: nc
696    
697 unnilennium 1.3 Provides: ctdb-devel = %{samba_depver}
698     Obsoletes: ctdb-devel < %{samba_depver}
699    
700 vip-ire 1.1 %description -n ctdb-tests
701     Test suite for CTDB.
702     CTDB is a cluster implementation of the TDB database used by Samba and other
703     projects to store temporary data. If an application is already using TDB for
704     temporary data it is very easy to convert that application to be cluster aware
705     and use CTDB instead.
706     %endif # with_clustering_support
707    
708    
709    
710     %prep
711     %setup -q -n samba-%{version}%{pre_release}
712    
713 unnilennium 1.3 %patch0 -p1 -b .samba-4.4.5-fix_resolving_trusted_domain_users.patch
714     %patch1 -p1 -b .samba-4.4.5-fix_site_aware_net_ads_join_with_krb5.patch
715     %patch2 -p1 -b .samba-4.4.5-accept_empty_realm_for_ad_domains_with_security_domain.patch
716     %patch3 -p1 -b .samba-4.4.5-fix_winbind_cached_creds_memleak.patch
717     %patch4 -p1 -b .CVE-2016-2119-v4-4.patch
718     %patch5 -p1 -b .samba-4.4.7-fix-ctdb-test-install-dir.patch
719     %patch6 -p1 -b .samba-4.4.7-fix_ads_krb5_ccname_handling.patch
720     %patch7 -p1 -b .samba-4.4.7-fix_smbclient_cpu_usage_with_unreachable_ip.patch
721     %patch8 -p1 -b .samba-4.4.7-fix_idmap_range_checks.patch
722     %patch9 -p1 -b .samba-4.4.7-fix_smget_auth_callback.patch
723     %patch10 -p1 -b .samba-4.4.6-fix_nss_wins.patch
724     %patch11 -p1 -b .samba-4.4.7-fix_group_substituion_with_ad.patch
725     %patch12 -p1 -b .samba-4.4.6-fix_smbclient_against_apple_and_azure.patch
726 unnilennium 1.7 %patch13 -p1 -b .samba-4.4.x-fix_libads_krb5_memcache.patch
727     %patch14 -p1 -b .CVE-2016-2125-v4-4.patch
728     %patch15 -p1 -b .CVE-2016-2126-v4-4.patch
729     %patch16 -p1 -b .CVE-2017-2619-v4-4.patch
730     %patch17 -p1 -b .CVE-2017-7494.patch
731 vip-ire 1.1
732     %build
733     %global _talloc_lib ,talloc,pytalloc,pytalloc-util
734     %global _tevent_lib ,tevent,pytevent
735     %global _tdb_lib ,tdb,pytdb
736 unnilennium 1.3 %global _ldb_lib ,ldb,pyldb,pyldb-util
737 vip-ire 1.1
738     %if ! %{with_internal_talloc}
739     %global _talloc_lib ,!talloc,!pytalloc,!pytalloc-util
740     %endif
741    
742     %if ! %{with_internal_tevent}
743     %global _tevent_lib ,!tevent,!pytevent
744     %endif
745    
746     %if ! %{with_internal_tdb}
747     %global _tdb_lib ,!tdb,!pytdb
748     %endif
749    
750     %if ! %{with_internal_ldb}
751 unnilennium 1.3 %global _ldb_lib ,!ldb,!pyldb,!pyldb-util
752 vip-ire 1.1 %endif
753    
754     %global _samba4_libraries heimdal,!zlib,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib}
755    
756     %global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
757     %global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
758     %global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
759    
760     %global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules}
761    
762     %global _libsmbclient %nil
763     %global _libwbclient %nil
764    
765     %if ! %with_libsmbclient
766     %global _libsmbclient smbclient,
767     %endif
768    
769     %if ! %with_libwbclient
770     %global _libwbclient wbclient,
771     %endif
772    
773     %global _samba4_private_libraries %{_libsmbclient}%{_libwbclient}
774    
775     %configure \
776     --enable-fhs \
777     --with-piddir=/run \
778     --with-sockets-dir=/run/samba \
779     --with-modulesdir=%{_libdir}/samba \
780     --with-pammodulesdir=%{_libdir}/security \
781 unnilennium 1.3 --with-lockdir=/var/lib/samba/lock \
782     --with-statedir=/var/lib/samba \
783 vip-ire 1.1 --with-cachedir=/var/lib/samba \
784     --disable-rpath-install \
785     --with-shared-modules=%{_samba4_modules} \
786     --bundled-libraries=%{_samba4_libraries} \
787     --with-pam \
788     --with-pie \
789     --with-relro \
790     --without-fam \
791     %if (! %with_libsmbclient) || (! %with_libwbclient)
792     --private-libraries=%{_samba4_private_libraries} \
793     %endif
794     %if %with_mitkrb5
795     --with-system-mitkrb5 \
796     %endif
797     %if ! %with_dc
798     --without-ad-dc \
799     %endif
800     %if ! %with_vfs_glusterfs
801     --disable-glusterfs \
802     %endif
803     %if %with_clustering_support
804     --with-cluster-support \
805     %endif
806     %if %with_profiling
807     --with-profiling-data \
808     %endif
809     %if %{with testsuite}
810     --enable-selftest \
811     %endif
812     --with-systemd
813    
814     make %{?_smp_mflags}
815    
816     %install
817     rm -rf %{buildroot}
818     make %{?_smp_mflags} install DESTDIR=%{buildroot}
819    
820     install -d -m 0755 %{buildroot}/usr/{sbin,bin}
821     install -d -m 0755 %{buildroot}%{_libdir}/security
822     install -d -m 0755 %{buildroot}/var/lib/samba
823 unnilennium 1.3 install -d -m 0755 %{buildroot}/var/lib/samba/drivers
824     install -d -m 0755 %{buildroot}/var/lib/samba/lock
825 vip-ire 1.1 install -d -m 0755 %{buildroot}/var/lib/samba/private
826     install -d -m 0755 %{buildroot}/var/lib/samba/scripts
827     install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
828 unnilennium 1.3 install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
829 vip-ire 1.1 install -d -m 0755 %{buildroot}/var/log/samba/old
830     install -d -m 0755 %{buildroot}/var/spool/samba
831     install -d -m 0755 %{buildroot}/var/run/samba
832     install -d -m 0755 %{buildroot}/var/run/winbindd
833     install -d -m 0755 %{buildroot}/%{_libdir}/samba
834 unnilennium 1.3 install -d -m 0755 %{buildroot}/%{_libdir}/samba/ldb
835 vip-ire 1.1 install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
836    
837     # Move libwbclient.so* into private directory, it cannot be just libdir/samba
838     # because samba uses rpath with this directory.
839     install -d -m 0755 %{buildroot}/%{_libdir}/samba/wbclient
840     mv %{buildroot}/%{_libdir}/libwbclient.so* %{buildroot}/%{_libdir}/samba/wbclient
841     if [ ! -f %{buildroot}/%{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version} ]
842     then
843     echo "Expected libwbclient version not found, please check if version has changed."
844     exit -1
845     fi
846    
847 unnilennium 1.3
848     touch %{buildroot}%{_libexecdir}/samba/cups_backend_smb
849    
850 vip-ire 1.1 # Install other stuff
851     install -d -m 0755 %{buildroot}%{_sysconfdir}/logrotate.d
852     install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/samba
853    
854 unnilennium 1.3 install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/samba/smb.conf
855     install -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/samba/smb.conf.example
856 vip-ire 1.1
857     install -d -m 0755 %{buildroot}%{_sysconfdir}/security
858     install -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
859    
860     install -d -m 0755 %{buildroot}%{_sysconfdir}/pam.d
861     install -m 0644 %{SOURCE6} %{buildroot}%{_sysconfdir}/pam.d/samba
862    
863     echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
864    
865     # openLDAP database schema
866     install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
867     install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
868    
869     install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint
870    
871 unnilennium 1.3 install -d -m 0755 %{buildroot}%{_tmpfilesdir}
872     install -m644 packaging/systemd/samba.conf.tmp %{buildroot}%{_tmpfilesdir}/samba.conf
873 vip-ire 1.1 # create /run/samba too.
874 unnilennium 1.3 echo "d /run/samba 755 root root" >> %{buildroot}%{_tmpfilesdir}/samba.conf
875 vip-ire 1.1 %if %with_clustering_support
876     echo "d /run/ctdb 755 root root" >> %{buildroot}%{_tmpfilesdir}/ctdb.conf
877     %endif
878    
879     install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
880     install -m 0644 packaging/systemd/samba.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/samba
881     %if %with_clustering_support
882     install -m 0644 ctdb/config/ctdb.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/ctdb
883     %endif
884    
885     install -m 0644 %{SOURCE201} packaging/README.downgrade
886    
887     %if ! %with_dc
888     install -m 0644 %{SOURCE200} packaging/README.dc
889     install -m 0644 %{SOURCE200} packaging/README.dc-libs
890     %endif
891    
892     install -d -m 0755 %{buildroot}%{_unitdir}
893 unnilennium 1.4 for i in nmb smb winbind samba; do
894     cat packaging/systemd/$i.service | sed -e 's@\[Service\]@[Service]\nEnvironment=KRB5CCNAME=/run/samba/krb5cc_samba@g' >tmp$i.service
895 vip-ire 1.1 install -m 0644 tmp$i.service %{buildroot}%{_unitdir}/$i.service
896     done
897     %if %with_clustering_support
898     install -m 0755 ctdb/config/ctdb.service %{buildroot}%{_unitdir}
899     %endif
900    
901     # NetworkManager online/offline script
902     install -d -m 0755 %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/
903     install -m 0755 packaging/NetworkManager/30-winbind-systemd \
904     %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
905    
906     # winbind krb5 locator
907     install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
908     touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
909    
910 vip-ire 1.2 %if ! %with_dc
911     for i in %{_libdir}/samba/libdfs-server-ad-samba4.so \
912 unnilennium 1.3 %{_libdir}/samba/libdnsserver-common-samba4.so \
913     %{_mandir}/man8/samba.8 \
914     %{_mandir}/man8/samba-tool.8 \
915     %{_libdir}/samba/ldb/ildap.so \
916     %{_libdir}/samba/ldb/ldbsamba_extensions.so ; do
917 vip-ire 1.2 rm -f %{buildroot}$i
918     done
919     %endif
920    
921 vip-ire 1.1 # This makes the right links, as rpmlint requires that
922     # the ldconfig-created links be recorded in the RPM.
923     /sbin/ldconfig -N -n %{buildroot}%{_libdir}
924    
925     %if %{with testsuite}
926     %check
927     TDB_NO_FSYNC=1 make %{?_smp_mflags} test
928     %endif
929    
930     %post
931     %systemd_post smb.service
932     %systemd_post nmb.service
933    
934     %preun
935     %systemd_preun smb.service
936     %systemd_preun nmb.service
937    
938     %postun
939     %systemd_postun_with_restart smb.service
940     %systemd_postun_with_restart nmb.service
941    
942     %post common
943     /sbin/ldconfig
944 unnilennium 1.3 /usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/samba.conf
945 vip-ire 1.1 if [ -d /var/cache/samba ]; then
946     mv /var/cache/samba/netsamlogon_cache.tdb /var/lib/samba/ 2>/dev/null
947     mv /var/cache/samba/winbindd_cache.tdb /var/lib/samba/ 2>/dev/null
948     rm -rf /var/cache/samba/
949     ln -sf /var/cache/samba /var/lib/samba/
950     fi
951    
952 unnilennium 1.3 %post client
953     %{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \
954     cups_backend_smb \
955     %{_bindir}/smbspool 10
956    
957     %postun client
958     if [ $1 -eq 0 ] ; then
959     %{_sbindir}/update-alternatives --remove cups_backend_smb %{_bindir}/smbspool
960     fi
961    
962     %post client-libs -p /sbin/ldconfig
963    
964     %postun client-libs -p /sbin/ldconfig
965    
966     %post common-libs -p /sbin/ldconfig
967    
968     %postun common-libs -p /sbin/ldconfig
969 vip-ire 1.1
970     %if %with_dc
971     %post dc-libs -p /sbin/ldconfig
972    
973     %postun dc-libs -p /sbin/ldconfig
974 unnilennium 1.3 %endif
975    
976     %post krb5-printing
977     %{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \
978     cups_backend_smb \
979     %{_libexecdir}/samba/smbspool_krb5_wrapper 50
980    
981     %postun krb5-printing
982     if [ $1 -eq 0 ] ; then
983     %{_sbindir}/update-alternatives --remove cups_backend_smb %{_libexecdir}/samba/smbspool_krb5_wrapper
984     fi
985 vip-ire 1.1
986     %post libs -p /sbin/ldconfig
987    
988     %postun libs -p /sbin/ldconfig
989    
990     %if %with_libsmbclient
991     %post -n libsmbclient -p /sbin/ldconfig
992    
993     %postun -n libsmbclient -p /sbin/ldconfig
994 unnilennium 1.3 %endif
995 vip-ire 1.1
996     %if %with_libwbclient
997     %posttrans -n libwbclient
998     # It has to be posttrans here to make sure all files of a previous version
999     # without alternatives support are removed
1000     %{_sbindir}/update-alternatives --install %{_libdir}/libwbclient.so.%{libwbc_alternatives_version} \
1001     libwbclient.so.%{libwbc_alternatives_version}%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version} 10
1002     /sbin/ldconfig
1003    
1004     %preun -n libwbclient
1005     %{_sbindir}/update-alternatives --remove libwbclient.so.%{libwbc_alternatives_version}%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version}
1006     /sbin/ldconfig
1007    
1008     %posttrans -n libwbclient-devel
1009     %{_sbindir}/update-alternatives --install %{_libdir}/libwbclient.so \
1010     libwbclient.so%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so 10
1011    
1012     %preun -n libwbclient-devel
1013     # alternatives checks if the file which should be removed is a link or not, but
1014     # not if it points to the /etc/alternatives directory or to some other place.
1015     # When downgrading to a version where alternatives is not used and
1016     # libwbclient.so is a link and not a file it will be removed. The following
1017     # check removes the alternatives files manually if that is the case.
1018     if [ "`readlink %{_libdir}/libwbclient.so`" == "libwbclient.so.%{libwbc_alternatives_version}" ]; then
1019     /bin/rm -f /etc/alternatives/libwbclient.so%{libwbc_alternatives_suffix} /var/lib/alternatives/libwbclient.so%{libwbc_alternatives_suffix} 2> /dev/null
1020     else
1021     %{_sbindir}/update-alternatives --remove libwbclient.so%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so
1022     fi
1023    
1024     %endif # with_libwbclient
1025    
1026     %post test -p /sbin/ldconfig
1027    
1028     %postun test -p /sbin/ldconfig
1029    
1030     %pre winbind
1031     /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
1032    
1033     %post winbind
1034     %systemd_post winbind.service
1035    
1036     %preun winbind
1037     %systemd_preun winbind.service
1038    
1039     %postun winbind
1040     %systemd_postun_with_restart smb.service
1041     %systemd_postun_with_restart nmb.service
1042    
1043     %postun winbind-krb5-locator
1044     if [ "$1" -ge "1" ]; then
1045     if [ "`readlink %{_sysconfdir}/alternatives/winbind_krb5_locator.so`" == "%{_libdir}/winbind_krb5_locator.so" ]; then
1046     %{_sbindir}/update-alternatives --set winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so
1047     fi
1048     fi
1049    
1050     %post winbind-krb5-locator
1051     %{_sbindir}/update-alternatives --install %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so \
1052     winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so 10
1053    
1054     %preun winbind-krb5-locator
1055     if [ $1 -eq 0 ]; then
1056     %{_sbindir}/update-alternatives --remove winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so
1057     fi
1058    
1059     %post winbind-modules -p /sbin/ldconfig
1060    
1061     %postun winbind-modules -p /sbin/ldconfig
1062    
1063     %if %with_clustering_support
1064     %post -n ctdb
1065 unnilennium 1.3 /usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/ctdb.conf
1066 vip-ire 1.1 %systemd_post ctdb.service
1067    
1068     %preun -n ctdb
1069     %systemd_preun ctdb.service
1070    
1071     %postun -n ctdb
1072     %systemd_postun_with_restart ctdb.service
1073     %endif
1074    
1075    
1076     %clean
1077     rm -rf %{buildroot}
1078    
1079     ### SAMBA
1080     %files
1081     %defattr(-,root,root,-)
1082     %doc COPYING README WHATSNEW.txt
1083     %doc examples/autofs examples/LDAP examples/misc
1084     %doc examples/printer-accounting examples/printing
1085     %doc packaging/README.downgrade
1086     %{_bindir}/smbstatus
1087     %{_bindir}/eventlogadm
1088     %{_sbindir}/nmbd
1089     %{_sbindir}/smbd
1090     %dir %{_libdir}/samba/auth
1091     %{_libdir}/samba/auth/script.so
1092     %{_libdir}/samba/auth/unix.so
1093     %{_libdir}/samba/auth/wbc.so
1094     %dir %{_libdir}/samba/vfs
1095     %{_libdir}/samba/vfs/acl_tdb.so
1096     %{_libdir}/samba/vfs/acl_xattr.so
1097     %{_libdir}/samba/vfs/aio_fork.so
1098     %{_libdir}/samba/vfs/aio_linux.so
1099     %{_libdir}/samba/vfs/aio_pthread.so
1100     %{_libdir}/samba/vfs/audit.so
1101     %{_libdir}/samba/vfs/btrfs.so
1102     %{_libdir}/samba/vfs/cap.so
1103     %{_libdir}/samba/vfs/catia.so
1104     %{_libdir}/samba/vfs/commit.so
1105     %{_libdir}/samba/vfs/crossrename.so
1106     %{_libdir}/samba/vfs/default_quota.so
1107     %{_libdir}/samba/vfs/dirsort.so
1108     %{_libdir}/samba/vfs/expand_msdfs.so
1109     %{_libdir}/samba/vfs/extd_audit.so
1110     %{_libdir}/samba/vfs/fake_perms.so
1111     %{_libdir}/samba/vfs/fileid.so
1112     %{_libdir}/samba/vfs/fruit.so
1113     %{_libdir}/samba/vfs/full_audit.so
1114     %{_libdir}/samba/vfs/linux_xfs_sgid.so
1115     %{_libdir}/samba/vfs/media_harmony.so
1116     %{_libdir}/samba/vfs/netatalk.so
1117 unnilennium 1.3 %{_libdir}/samba/vfs/offline.so
1118 vip-ire 1.1 %{_libdir}/samba/vfs/preopen.so
1119     %{_libdir}/samba/vfs/readahead.so
1120     %{_libdir}/samba/vfs/readonly.so
1121     %{_libdir}/samba/vfs/recycle.so
1122     %{_libdir}/samba/vfs/shadow_copy.so
1123     %{_libdir}/samba/vfs/shadow_copy2.so
1124 unnilennium 1.3 %{_libdir}/samba/vfs/shell_snap.so
1125 vip-ire 1.1 %{_libdir}/samba/vfs/snapper.so
1126     %{_libdir}/samba/vfs/streams_depot.so
1127     %{_libdir}/samba/vfs/streams_xattr.so
1128     %{_libdir}/samba/vfs/syncops.so
1129     %{_libdir}/samba/vfs/time_audit.so
1130 unnilennium 1.3 %{_libdir}/samba/vfs/unityed_media.so
1131 vip-ire 1.1 %{_libdir}/samba/vfs/worm.so
1132     %{_libdir}/samba/vfs/xattr_tdb.so
1133    
1134     %{_unitdir}/nmb.service
1135     %{_unitdir}/smb.service
1136     %attr(1777,root,root) %dir /var/spool/samba
1137     %dir %{_sysconfdir}/openldap/schema
1138 unnilennium 1.3 %config %{_sysconfdir}/openldap/schema/samba.schema
1139     %config(noreplace) %{_sysconfdir}/pam.d/samba
1140 vip-ire 1.1 %{_mandir}/man1/smbstatus.1*
1141     %{_mandir}/man8/eventlogadm.8*
1142     %{_mandir}/man8/smbd.8*
1143     %{_mandir}/man8/nmbd.8*
1144     %{_mandir}/man8/vfs_acl_tdb.8*
1145     %{_mandir}/man8/vfs_acl_xattr.8*
1146     %{_mandir}/man8/vfs_aio_fork.8*
1147     %{_mandir}/man8/vfs_aio_linux.8*
1148     %{_mandir}/man8/vfs_aio_pthread.8*
1149     %{_mandir}/man8/vfs_audit.8*
1150     %{_mandir}/man8/vfs_btrfs.8*
1151     %{_mandir}/man8/vfs_cacheprime.8*
1152     %{_mandir}/man8/vfs_cap.8*
1153     %{_mandir}/man8/vfs_catia.8*
1154     %{_mandir}/man8/vfs_commit.8*
1155     %{_mandir}/man8/vfs_crossrename.8*
1156     %{_mandir}/man8/vfs_default_quota.8*
1157     %{_mandir}/man8/vfs_dirsort.8*
1158     %{_mandir}/man8/vfs_extd_audit.8*
1159     %{_mandir}/man8/vfs_fake_perms.8*
1160     %{_mandir}/man8/vfs_fileid.8*
1161     %{_mandir}/man8/vfs_fruit.8*
1162     %{_mandir}/man8/vfs_full_audit.8*
1163     %{_mandir}/man8/vfs_gpfs.8*
1164     %{_mandir}/man8/vfs_linux_xfs_sgid.8*
1165     %{_mandir}/man8/vfs_media_harmony.8*
1166     %{_mandir}/man8/vfs_netatalk.8*
1167 unnilennium 1.3 %{_mandir}/man8/vfs_offline.8*
1168 vip-ire 1.1 %{_mandir}/man8/vfs_prealloc.8*
1169     %{_mandir}/man8/vfs_preopen.8*
1170     %{_mandir}/man8/vfs_readahead.8*
1171     %{_mandir}/man8/vfs_readonly.8*
1172     %{_mandir}/man8/vfs_recycle.8*
1173     %{_mandir}/man8/vfs_shadow_copy.8*
1174     %{_mandir}/man8/vfs_shadow_copy2.8*
1175 unnilennium 1.3 %{_mandir}/man8/vfs_shell_snap.8*
1176 vip-ire 1.1 %{_mandir}/man8/vfs_snapper.8*
1177     %{_mandir}/man8/vfs_streams_depot.8*
1178     %{_mandir}/man8/vfs_streams_xattr.8*
1179     %{_mandir}/man8/vfs_syncops.8*
1180     %{_mandir}/man8/vfs_time_audit.8*
1181     %{_mandir}/man8/vfs_tsmsm.8*
1182 unnilennium 1.3 %{_mandir}/man8/vfs_unityed_media.8*
1183 vip-ire 1.1 %{_mandir}/man8/vfs_worm.8*
1184     %{_mandir}/man8/vfs_xattr_tdb.8*
1185    
1186     %if ! %{with_vfs_glusterfs}
1187     %exclude %{_mandir}/man8/vfs_glusterfs.8*
1188     %endif
1189    
1190     %if ! %{with_vfs_cephfs}
1191     %exclude %{_mandir}/man8/vfs_ceph.8*
1192     %endif
1193    
1194 unnilennium 1.3 %dir /var/lib/samba/drivers
1195     %dir /var/lib/samba/lock
1196    
1197 vip-ire 1.1 ### CLIENT
1198     %files client
1199     %defattr(-,root,root)
1200     %{_bindir}/cifsdd
1201     %{_bindir}/dbwrap_tool
1202     %{_bindir}/nmblookup
1203     %{_bindir}/oLschema2ldif
1204     %{_bindir}/regdiff
1205     %{_bindir}/regpatch
1206     %{_bindir}/regshell
1207     %{_bindir}/regtree
1208     %{_bindir}/rpcclient
1209     %{_bindir}/samba-regedit
1210     %{_bindir}/sharesec
1211     %{_bindir}/smbcacls
1212     %{_bindir}/smbclient
1213     %{_bindir}/smbcquotas
1214     %{_bindir}/smbget
1215     %{_bindir}/smbprint
1216     %{_bindir}/smbspool
1217     %{_bindir}/smbtar
1218     %{_bindir}/smbtree
1219 unnilennium 1.3 %dir %{_libexecdir}/samba
1220     %ghost %{_libexecdir}/samba/cups_backend_smb
1221 vip-ire 1.1 %{_mandir}/man1/dbwrap_tool.1*
1222     %{_mandir}/man1/nmblookup.1*
1223     %{_mandir}/man1/oLschema2ldif.1*
1224     %{_mandir}/man1/regdiff.1*
1225     %{_mandir}/man1/regpatch.1*
1226     %{_mandir}/man1/regshell.1*
1227     %{_mandir}/man1/regtree.1*
1228     %exclude %{_mandir}/man1/findsmb.1*
1229     %{_mandir}/man1/log2pcap.1*
1230     %{_mandir}/man1/rpcclient.1*
1231     %{_mandir}/man1/sharesec.1*
1232     %{_mandir}/man1/smbcacls.1*
1233     %{_mandir}/man1/smbclient.1*
1234     %{_mandir}/man1/smbcquotas.1*
1235     %{_mandir}/man1/smbget.1*
1236     %{_mandir}/man5/smbgetrc.5*
1237     %{_mandir}/man1/smbtar.1*
1238     %{_mandir}/man1/smbtree.1*
1239 unnilennium 1.3 %{_mandir}/man8/cifsdd.8.*
1240 vip-ire 1.1 %{_mandir}/man8/samba-regedit.8*
1241     %{_mandir}/man8/smbspool.8*
1242    
1243     %if %{with_internal_tdb}
1244     %{_bindir}/tdbbackup
1245     %{_bindir}/tdbdump
1246     %{_bindir}/tdbrestore
1247     %{_bindir}/tdbtool
1248     %{_mandir}/man8/tdbbackup.8*
1249     %{_mandir}/man8/tdbdump.8*
1250     %{_mandir}/man8/tdbrestore.8*
1251     %{_mandir}/man8/tdbtool.8*
1252     %endif
1253    
1254     %if %with_internal_ldb
1255     %{_bindir}/ldbadd
1256     %{_bindir}/ldbdel
1257     %{_bindir}/ldbedit
1258     %{_bindir}/ldbmodify
1259     %{_bindir}/ldbrename
1260     %{_bindir}/ldbsearch
1261 unnilennium 1.3 %{_libdir}/samba/libldb-cmdline-samba4.so
1262 vip-ire 1.1 %{_libdir}/samba/ldb/asq.so
1263     %{_libdir}/samba/ldb/paged_results.so
1264     %{_libdir}/samba/ldb/paged_searches.so
1265     %{_libdir}/samba/ldb/rdn_name.so
1266     %{_libdir}/samba/ldb/sample.so
1267     %{_libdir}/samba/ldb/server_sort.so
1268     %{_libdir}/samba/ldb/skel.so
1269     %{_libdir}/samba/ldb/tdb.so
1270     %{_mandir}/man1/ldbadd.1.gz
1271     %{_mandir}/man1/ldbdel.1.gz
1272     %{_mandir}/man1/ldbedit.1.gz
1273     %{_mandir}/man1/ldbmodify.1.gz
1274     %{_mandir}/man1/ldbrename.1.gz
1275     %{_mandir}/man1/ldbsearch.1.gz
1276     %endif
1277    
1278     ### CLIENT-LIBS
1279     %files client-libs
1280     %defattr(-,root,root)
1281     %{_libdir}/libdcerpc-binding.so.*
1282     %{_libdir}/libndr.so.*
1283     %{_libdir}/libndr-krb5pac.so.*
1284     %{_libdir}/libndr-nbt.so.*
1285     %{_libdir}/libndr-standard.so.*
1286     %{_libdir}/libnetapi.so.*
1287     %{_libdir}/libsamba-credentials.so.*
1288 unnilennium 1.3 %{_libdir}/libsamba-errors.so.*
1289 vip-ire 1.1 %{_libdir}/libsamba-passdb.so.*
1290     %{_libdir}/libsamba-util.so.*
1291     %{_libdir}/libsamba-hostconfig.so.*
1292     %{_libdir}/libsamdb.so.*
1293     %{_libdir}/libsmbconf.so.*
1294     %{_libdir}/libsmbldap.so.*
1295 unnilennium 1.3 %{_libdir}/libtevent-unix-util.so.*
1296 vip-ire 1.1 %{_libdir}/libtevent-util.so.*
1297     %{_libdir}/libdcerpc.so.*
1298    
1299     %dir %{_libdir}/samba
1300     %{_libdir}/samba/libCHARSET3-samba4.so
1301     %{_libdir}/samba/libaddns-samba4.so
1302     %{_libdir}/samba/libads-samba4.so
1303     %{_libdir}/samba/libasn1util-samba4.so
1304     %{_libdir}/samba/libauth-sam-reply-samba4.so
1305     %{_libdir}/samba/libauth-samba4.so
1306     %{_libdir}/samba/libauthkrb5-samba4.so
1307     %{_libdir}/samba/libcli-cldap-samba4.so
1308     %{_libdir}/samba/libcli-ldap-common-samba4.so
1309     %{_libdir}/samba/libcli-ldap-samba4.so
1310     %{_libdir}/samba/libcli-nbt-samba4.so
1311     %{_libdir}/samba/libcli-smb-common-samba4.so
1312     %{_libdir}/samba/libcli-spoolss-samba4.so
1313     %{_libdir}/samba/libcliauth-samba4.so
1314     %{_libdir}/samba/libcmdline-credentials-samba4.so
1315     %{_libdir}/samba/libdbwrap-samba4.so
1316     %{_libdir}/samba/libdcerpc-samba-samba4.so
1317     %{_libdir}/samba/libevents-samba4.so
1318     %{_libdir}/samba/libflag-mapping-samba4.so
1319 unnilennium 1.3 %{_libdir}/samba/libgenrand-samba4.so
1320     %{_libdir}/samba/libgensec-samba4.so
1321 vip-ire 1.1 %{_libdir}/samba/libgpo-samba4.so
1322     %{_libdir}/samba/libgse-samba4.so
1323     %{_libdir}/samba/libhttp-samba4.so
1324     %{_libdir}/samba/libinterfaces-samba4.so
1325 unnilennium 1.3 %{_libdir}/samba/libiov-buf-samba4.so
1326 vip-ire 1.1 %{_libdir}/samba/libkrb5samba-samba4.so
1327     %{_libdir}/samba/libldbsamba-samba4.so
1328     %{_libdir}/samba/liblibcli-lsa3-samba4.so
1329     %{_libdir}/samba/liblibcli-netlogon3-samba4.so
1330     %{_libdir}/samba/liblibsmb-samba4.so
1331 unnilennium 1.3 %{_libdir}/samba/libmessages-dgm-samba4.so
1332     %{_libdir}/samba/libmessages-util-samba4.so
1333     %{_libdir}/samba/libmsghdr-samba4.so
1334 vip-ire 1.1 %{_libdir}/samba/libmsrpc3-samba4.so
1335     %{_libdir}/samba/libndr-samba-samba4.so
1336     %{_libdir}/samba/libndr-samba4.so
1337     %{_libdir}/samba/libnet-keytab-samba4.so
1338     %{_libdir}/samba/libnetif-samba4.so
1339     %{_libdir}/samba/libnpa-tstream-samba4.so
1340     %{_libdir}/samba/libprinting-migrate-samba4.so
1341     %{_libdir}/samba/libreplace-samba4.so
1342 unnilennium 1.3 %{_libdir}/samba/libregistry-samba4.so
1343 vip-ire 1.1 %{_libdir}/samba/libsamba-cluster-support-samba4.so
1344     %{_libdir}/samba/libsamba-debug-samba4.so
1345     %{_libdir}/samba/libsamba-modules-samba4.so
1346     %{_libdir}/samba/libsamba-security-samba4.so
1347     %{_libdir}/samba/libsamba-sockets-samba4.so
1348     %{_libdir}/samba/libsamba3-util-samba4.so
1349     %{_libdir}/samba/libsamdb-common-samba4.so
1350     %{_libdir}/samba/libsecrets3-samba4.so
1351 unnilennium 1.3 %{_libdir}/samba/libserver-id-db-samba4.so
1352 vip-ire 1.1 %{_libdir}/samba/libserver-role-samba4.so
1353     %{_libdir}/samba/libsmb-transport-samba4.so
1354 unnilennium 1.3 %{_libdir}/samba/libsmbclient-raw-samba4.so
1355 vip-ire 1.1 %{_libdir}/samba/libsmbd-base-samba4.so
1356     %{_libdir}/samba/libsmbd-conn-samba4.so
1357     %{_libdir}/samba/libsmbd-shim-samba4.so
1358     %{_libdir}/samba/libsmbldaphelper-samba4.so
1359     %{_libdir}/samba/libsmbregistry-samba4.so
1360 unnilennium 1.3 %{_libdir}/samba/libsys-rw-samba4.so
1361 vip-ire 1.1 %{_libdir}/samba/libsocket-blocking-samba4.so
1362 unnilennium 1.3 %{_libdir}/samba/libtalloc-report-samba4.so
1363 vip-ire 1.1 %{_libdir}/samba/libtdb-wrap-samba4.so
1364 unnilennium 1.3 %{_libdir}/samba/libtime-basic-samba4.so
1365     %{_libdir}/samba/libtorture-samba4.so
1366 vip-ire 1.1 %{_libdir}/samba/libtrusts-util-samba4.so
1367     %{_libdir}/samba/libutil-cmdline-samba4.so
1368     %{_libdir}/samba/libutil-reg-samba4.so
1369     %{_libdir}/samba/libutil-setid-samba4.so
1370     %{_libdir}/samba/libutil-tdb-samba4.so
1371    
1372     %if ! %with_libwbclient
1373     %{_libdir}/samba/libwbclient.so.*
1374     %{_libdir}/samba/libwinbind-client-samba4.so
1375     %endif # ! with_libwbclient
1376    
1377     %if ! %with_libsmbclient
1378     %{_libdir}/samba/libsmbclient.so.*
1379     %{_mandir}/man7/libsmbclient.7*
1380     %endif # ! with_libsmbclient
1381    
1382     %if %{with_internal_talloc}
1383     %{_libdir}/samba/libtalloc.so.2
1384     %{_libdir}/samba/libtalloc.so.%{talloc_version}
1385     %{_libdir}/samba/libpytalloc-util.so.2
1386     %{_libdir}/samba/libpytalloc-util.so.%{talloc_version}
1387     %{_mandir}/man3/talloc.3.gz
1388     %endif
1389    
1390     %if %{with_internal_tevent}
1391     %{_libdir}/samba/libtevent.so.0
1392     %{_libdir}/samba/libtevent.so.%{tevent_version}
1393     %endif
1394    
1395     %if %{with_internal_tdb}
1396     %{_libdir}/samba/libtdb.so.1
1397     %{_libdir}/samba/libtdb.so.%{tdb_version}
1398     %endif
1399    
1400     %if %{with_internal_ldb}
1401     %{_libdir}/samba/libldb.so.1
1402     %{_libdir}/samba/libldb.so.%{ldb_version}
1403 unnilennium 1.3 %{_libdir}/samba/libpyldb-util.so.1
1404     %{_libdir}/samba/libpyldb-util.so.%{ldb_version}
1405 vip-ire 1.1 %{_mandir}/man3/ldb.3.gz
1406     %endif
1407    
1408     ### COMMON
1409     %files common
1410     %defattr(-,root,root)
1411 unnilennium 1.3 %{_tmpfilesdir}/samba.conf
1412 vip-ire 1.1 %dir %{_sysconfdir}/logrotate.d/
1413     %config(noreplace) %{_sysconfdir}/logrotate.d/samba
1414     %attr(0700,root,root) %dir /var/log/samba
1415     %attr(0700,root,root) %dir /var/log/samba/old
1416     %ghost %dir /var/run/samba
1417     %ghost %dir /var/run/winbindd
1418 unnilennium 1.3 %dir /var/lib/samba
1419 vip-ire 1.1 %attr(700,root,root) %dir /var/lib/samba/private
1420     %attr(755,root,root) %dir %{_sysconfdir}/samba
1421     %config(noreplace) %{_sysconfdir}/samba/smb.conf
1422 unnilennium 1.3 %{_sysconfdir}/samba/smb.conf.example
1423 vip-ire 1.1 %config(noreplace) %{_sysconfdir}/samba/lmhosts
1424     %config(noreplace) %{_sysconfdir}/sysconfig/samba
1425     %{_mandir}/man5/lmhosts.5*
1426     %{_mandir}/man5/smb.conf.5*
1427     %{_mandir}/man5/smbpasswd.5*
1428     %{_mandir}/man7/samba.7*
1429    
1430     ### COMMON-libs
1431     %files common-libs
1432     %defattr(-,root,root)
1433     # common libraries
1434     %{_libdir}/samba/libpopt-samba3-samba4.so
1435    
1436 unnilennium 1.3 # We need this directory here because the net tool is looking
1437     # for it.
1438     %dir %{_libdir}/samba/ldb
1439    
1440 vip-ire 1.1 %dir %{_libdir}/samba/pdb
1441     %{_libdir}/samba/pdb/ldapsam.so
1442     %{_libdir}/samba/pdb/smbpasswd.so
1443     %{_libdir}/samba/pdb/tdbsam.so
1444     %{_libdir}/samba/pdb/wbc_sam.so
1445    
1446     %files common-tools
1447     %defattr(-,root,root)
1448     %{_bindir}/net
1449     %{_bindir}/pdbedit
1450     %{_bindir}/profiles
1451     %{_bindir}/smbcontrol
1452     %{_bindir}/smbpasswd
1453     %{_bindir}/testparm
1454     %{_mandir}/man1/profiles.1*
1455     %{_mandir}/man1/smbcontrol.1*
1456     %{_mandir}/man1/testparm.1*
1457     %{_mandir}/man8/net.8*
1458     %{_mandir}/man8/pdbedit.8*
1459     %{_mandir}/man8/smbpasswd.8*
1460    
1461     ### DC
1462     %files dc
1463     %defattr(-,root,root)
1464    
1465     %if %with_dc
1466     %{_bindir}/samba-tool
1467     %{_sbindir}/samba
1468     %{_sbindir}/samba_kcc
1469     %{_sbindir}/samba_dnsupdate
1470     %{_sbindir}/samba_spnupdate
1471     %{_sbindir}/samba_upgradedns
1472     %{_libdir}/samba/auth/samba4.so
1473     %{_libdir}/samba/bind9/dlz_bind9.so
1474     %{_libdir}/samba/bind9/dlz_bind9_10.so
1475     %{_libdir}/samba/libheimntlm-samba4.so.1
1476     %{_libdir}/samba/libheimntlm-samba4.so.1.0.1
1477     %{_libdir}/samba/libkdc-samba4.so.2
1478     %{_libdir}/samba/libkdc-samba4.so.2.0.0
1479     %{_libdir}/samba/libpac-samba4.so
1480     %dir %{_libdir}/samba/gensec
1481     %{_libdir}/samba/gensec/krb5.so
1482     %{_libdir}/samba/ldb/acl.so
1483     %{_libdir}/samba/ldb/aclread.so
1484     %{_libdir}/samba/ldb/anr.so
1485     %{_libdir}/samba/ldb/descriptor.so
1486     %{_libdir}/samba/ldb/dirsync.so
1487 unnilennium 1.3 %{_libdir}/samba/ldb/dns_notify.so
1488 vip-ire 1.1 %{_libdir}/samba/ldb/extended_dn_in.so
1489     %{_libdir}/samba/ldb/extended_dn_out.so
1490     %{_libdir}/samba/ldb/extended_dn_store.so
1491     %{_libdir}/samba/ldb/ildap.so
1492     %{_libdir}/samba/ldb/instancetype.so
1493     %{_libdir}/samba/ldb/lazy_commit.so
1494     %{_libdir}/samba/ldb/ldbsamba_extensions.so
1495     %{_libdir}/samba/ldb/linked_attributes.so
1496     %{_libdir}/samba/ldb/local_password.so
1497     %{_libdir}/samba/ldb/new_partition.so
1498     %{_libdir}/samba/ldb/objectclass.so
1499     %{_libdir}/samba/ldb/objectclass_attrs.so
1500     %{_libdir}/samba/ldb/objectguid.so
1501     %{_libdir}/samba/ldb/operational.so
1502     %{_libdir}/samba/ldb/partition.so
1503     %{_libdir}/samba/ldb/password_hash.so
1504     %{_libdir}/samba/ldb/ranged_results.so
1505     %{_libdir}/samba/ldb/repl_meta_data.so
1506     %{_libdir}/samba/ldb/resolve_oids.so
1507     %{_libdir}/samba/ldb/rootdse.so
1508 unnilennium 1.4 %{_unitdir}/samba.service
1509 vip-ire 1.1 %{_libdir}/samba/ldb/samba3sam.so
1510     %{_libdir}/samba/ldb/samba3sid.so
1511     %{_libdir}/samba/ldb/samba_dsdb.so
1512     %{_libdir}/samba/ldb/samba_secrets.so
1513     %{_libdir}/samba/ldb/samldb.so
1514     %{_libdir}/samba/ldb/schema_data.so
1515     %{_libdir}/samba/ldb/schema_load.so
1516     %{_libdir}/samba/ldb/secrets_tdb_sync.so
1517     %{_libdir}/samba/ldb/show_deleted.so
1518     %{_libdir}/samba/ldb/simple_dn.so
1519     %{_libdir}/samba/ldb/simple_ldap_map.so
1520     %{_libdir}/samba/ldb/subtree_delete.so
1521     %{_libdir}/samba/ldb/subtree_rename.so
1522 unnilennium 1.3 %{_libdir}/samba/ldb/tombstone_reanimate.so
1523 vip-ire 1.1 %{_libdir}/samba/ldb/update_keytab.so
1524     %{_libdir}/samba/ldb/wins_ldb.so
1525     %{_libdir}/samba/vfs/posix_eadb.so
1526     %dir /var/lib/samba/sysvol
1527     %{_datadir}/samba/setup
1528     %{_mandir}/man8/samba.8*
1529     %{_mandir}/man8/samba-tool.8*
1530     %else # with_dc
1531     %doc packaging/README.dc
1532     %endif # with_dc
1533    
1534     ### DC-LIBS
1535     %files dc-libs
1536     %defattr(-,root,root)
1537     %if %with_dc
1538     %{_libdir}/samba/libprocess-model-samba4.so
1539     %{_libdir}/samba/libservice-samba4.so
1540     %dir %{_libdir}/samba/process_model
1541     %{_libdir}/samba/process_model/standard.so
1542     %dir %{_libdir}/samba/service
1543     %{_libdir}/samba/service/cldap.so
1544     %{_libdir}/samba/service/dcerpc.so
1545     %{_libdir}/samba/service/dns.so
1546     %{_libdir}/samba/service/dns_update.so
1547     %{_libdir}/samba/service/drepl.so
1548     %{_libdir}/samba/service/kcc.so
1549     %{_libdir}/samba/service/kdc.so
1550     %{_libdir}/samba/service/ldap.so
1551     %{_libdir}/samba/service/nbtd.so
1552     %{_libdir}/samba/service/ntp_signd.so
1553     %{_libdir}/samba/service/s3fs.so
1554     %{_libdir}/samba/service/web.so
1555     %{_libdir}/samba/service/winbindd.so
1556     %{_libdir}/samba/service/wrepl.so
1557     %{_libdir}/libdcerpc-server.so.*
1558     %{_libdir}/samba/libdfs-server-ad-samba4.so
1559     %{_libdir}/samba/libdnsserver-common-samba4.so
1560     %{_libdir}/samba/libdsdb-module-samba4.so
1561     %{_libdir}/samba/libntvfs-samba4.so
1562     %{_libdir}/samba/libposix-eadb-samba4.so
1563     %{_libdir}/samba/bind9/dlz_bind9_9.so
1564     %else
1565     %doc packaging/README.dc-libs
1566     %endif # with_dc
1567    
1568     ### DEVEL
1569     %files devel
1570     %defattr(-,root,root)
1571     %{_includedir}/samba-4.0/charset.h
1572     %{_includedir}/samba-4.0/core/doserr.h
1573     %{_includedir}/samba-4.0/core/error.h
1574     %{_includedir}/samba-4.0/core/hresult.h
1575     %{_includedir}/samba-4.0/core/ntstatus.h
1576     %{_includedir}/samba-4.0/core/werror.h
1577     %{_includedir}/samba-4.0/credentials.h
1578     %{_includedir}/samba-4.0/dcerpc.h
1579     %{_includedir}/samba-4.0/domain_credentials.h
1580     %{_includedir}/samba-4.0/gen_ndr/atsvc.h
1581     %{_includedir}/samba-4.0/gen_ndr/auth.h
1582     %{_includedir}/samba-4.0/gen_ndr/dcerpc.h
1583     %{_includedir}/samba-4.0/gen_ndr/krb5pac.h
1584     %{_includedir}/samba-4.0/gen_ndr/lsa.h
1585     %{_includedir}/samba-4.0/gen_ndr/misc.h
1586     %{_includedir}/samba-4.0/gen_ndr/nbt.h
1587     %{_includedir}/samba-4.0/gen_ndr/drsblobs.h
1588     %{_includedir}/samba-4.0/gen_ndr/drsuapi.h
1589     %{_includedir}/samba-4.0/gen_ndr/ndr_drsblobs.h
1590     %{_includedir}/samba-4.0/gen_ndr/ndr_drsuapi.h
1591     %{_includedir}/samba-4.0/gen_ndr/ndr_atsvc.h
1592     %{_includedir}/samba-4.0/gen_ndr/ndr_dcerpc.h
1593     %{_includedir}/samba-4.0/gen_ndr/ndr_krb5pac.h
1594     %{_includedir}/samba-4.0/gen_ndr/ndr_misc.h
1595     %{_includedir}/samba-4.0/gen_ndr/ndr_nbt.h
1596     %{_includedir}/samba-4.0/gen_ndr/ndr_samr.h
1597     %{_includedir}/samba-4.0/gen_ndr/ndr_samr_c.h
1598     %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl.h
1599     %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl_c.h
1600     %{_includedir}/samba-4.0/gen_ndr/netlogon.h
1601     %{_includedir}/samba-4.0/gen_ndr/samr.h
1602     %{_includedir}/samba-4.0/gen_ndr/security.h
1603     %{_includedir}/samba-4.0/gen_ndr/server_id.h
1604     %{_includedir}/samba-4.0/gen_ndr/svcctl.h
1605     %{_includedir}/samba-4.0/ldb_wrap.h
1606     %{_includedir}/samba-4.0/lookup_sid.h
1607     %{_includedir}/samba-4.0/machine_sid.h
1608     %{_includedir}/samba-4.0/ndr.h
1609     %dir %{_includedir}/samba-4.0/ndr
1610     %{_includedir}/samba-4.0/ndr/ndr_dcerpc.h
1611     %{_includedir}/samba-4.0/ndr/ndr_drsblobs.h
1612     %{_includedir}/samba-4.0/ndr/ndr_drsuapi.h
1613     %{_includedir}/samba-4.0/ndr/ndr_svcctl.h
1614     %{_includedir}/samba-4.0/ndr/ndr_nbt.h
1615     %{_includedir}/samba-4.0/netapi.h
1616     %{_includedir}/samba-4.0/param.h
1617     %{_includedir}/samba-4.0/passdb.h
1618     %{_includedir}/samba-4.0/policy.h
1619     %{_includedir}/samba-4.0/rpc_common.h
1620     %{_includedir}/samba-4.0/samba/session.h
1621     %{_includedir}/samba-4.0/samba/version.h
1622     %{_includedir}/samba-4.0/share.h
1623     %{_includedir}/samba-4.0/smb2_lease_struct.h
1624     %{_includedir}/samba-4.0/smbconf.h
1625     %{_includedir}/samba-4.0/smb_ldap.h
1626     %{_includedir}/samba-4.0/smbldap.h
1627     %{_includedir}/samba-4.0/tdr.h
1628     %{_includedir}/samba-4.0/tsocket.h
1629     %{_includedir}/samba-4.0/tsocket_internal.h
1630     %dir %{_includedir}/samba-4.0/util
1631     %{_includedir}/samba-4.0/util/attr.h
1632     %{_includedir}/samba-4.0/util/blocking.h
1633     %{_includedir}/samba-4.0/util/byteorder.h
1634     %{_includedir}/samba-4.0/util/data_blob.h
1635     %{_includedir}/samba-4.0/util/debug.h
1636     %{_includedir}/samba-4.0/util/fault.h
1637 unnilennium 1.3 %{_includedir}/samba-4.0/util/genrand.h
1638 vip-ire 1.1 %{_includedir}/samba-4.0/util/idtree.h
1639     %{_includedir}/samba-4.0/util/idtree_random.h
1640     %{_includedir}/samba-4.0/util/memory.h
1641     %{_includedir}/samba-4.0/util/safe_string.h
1642     %{_includedir}/samba-4.0/util/signal.h
1643     %{_includedir}/samba-4.0/util/string_wrappers.h
1644     %{_includedir}/samba-4.0/util/substitute.h
1645     %{_includedir}/samba-4.0/util/talloc_stack.h
1646     %{_includedir}/samba-4.0/util/tevent_ntstatus.h
1647     %{_includedir}/samba-4.0/util/tevent_unix.h
1648     %{_includedir}/samba-4.0/util/tevent_werror.h
1649     %{_includedir}/samba-4.0/util/time.h
1650     %{_includedir}/samba-4.0/util/xfile.h
1651     %{_includedir}/samba-4.0/util_ldb.h
1652     %{_libdir}/libdcerpc-binding.so
1653     %{_libdir}/libdcerpc-samr.so
1654     %{_libdir}/libdcerpc.so
1655     %{_libdir}/libndr-krb5pac.so
1656     %{_libdir}/libndr-nbt.so
1657     %{_libdir}/libndr-standard.so
1658     %{_libdir}/libndr.so
1659     %{_libdir}/libnetapi.so
1660     %{_libdir}/libsamba-credentials.so
1661 unnilennium 1.3 %{_libdir}/libsamba-errors.so
1662 vip-ire 1.1 %{_libdir}/libsamba-hostconfig.so
1663     %{_libdir}/libsamba-policy.so
1664     %{_libdir}/libsamba-util.so
1665     %{_libdir}/libsamdb.so
1666     %{_libdir}/libsmbconf.so
1667 unnilennium 1.3 %{_libdir}/libtevent-unix-util.so
1668 vip-ire 1.1 %{_libdir}/libtevent-util.so
1669     %{_libdir}/pkgconfig/dcerpc.pc
1670     %{_libdir}/pkgconfig/dcerpc_samr.pc
1671     %{_libdir}/pkgconfig/ndr.pc
1672     %{_libdir}/pkgconfig/ndr_krb5pac.pc
1673     %{_libdir}/pkgconfig/ndr_nbt.pc
1674     %{_libdir}/pkgconfig/ndr_standard.pc
1675     %{_libdir}/pkgconfig/netapi.pc
1676     %{_libdir}/pkgconfig/samba-credentials.pc
1677     %{_libdir}/pkgconfig/samba-hostconfig.pc
1678     %{_libdir}/pkgconfig/samba-policy.pc
1679     %{_libdir}/pkgconfig/samba-util.pc
1680     %{_libdir}/pkgconfig/samdb.pc
1681     %{_libdir}/libsamba-passdb.so
1682     %{_libdir}/libsmbldap.so
1683    
1684     %if %with_dc
1685     %{_includedir}/samba-4.0/dcerpc_server.h
1686     %{_libdir}/libdcerpc-server.so
1687     %{_libdir}/pkgconfig/dcerpc_server.pc
1688     %endif
1689    
1690     %if ! %with_libsmbclient
1691     %{_includedir}/samba-4.0/libsmbclient.h
1692     %endif # ! with_libsmbclient
1693    
1694     %if ! %with_libwbclient
1695     %{_includedir}/samba-4.0/wbclient.h
1696     %endif # ! with_libwbclient
1697    
1698     ### VFS-CEPHFS
1699     %if %{with_vfs_cephfs}
1700     %files vfs-cephfs
1701     %{_libdir}/samba/vfs/ceph.so
1702     %{_mandir}/man8/vfs_ceph.8*
1703     %endif
1704    
1705     ### VFS-GLUSTERFS
1706     %if %{with_vfs_glusterfs}
1707     %files vfs-glusterfs
1708     %{_libdir}/samba/vfs/glusterfs.so
1709     %{_mandir}/man8/vfs_glusterfs.8*
1710     %endif
1711    
1712 unnilennium 1.3 ### KRB5-PRINTING
1713     %files krb5-printing
1714     %defattr(-,root,root)
1715     %attr(0700,root,root) %{_libexecdir}/samba/smbspool_krb5_wrapper
1716     %{_mandir}/man8/smbspool_krb5_wrapper.8*
1717    
1718 vip-ire 1.1 ### LIBS
1719     %files libs
1720     %defattr(-,root,root)
1721     %{_libdir}/libdcerpc-samr.so.*
1722     %{_libdir}/libsamba-policy.so.*
1723    
1724     # libraries needed by the public libraries
1725     %{_libdir}/samba/libMESSAGING-samba4.so
1726     %{_libdir}/samba/libLIBWBCLIENT-OLD-samba4.so
1727     %{_libdir}/samba/libauth4-samba4.so
1728     %{_libdir}/samba/libauth-unix-token-samba4.so
1729     %{_libdir}/samba/libcluster-samba4.so
1730     %{_libdir}/samba/libdcerpc-samba4.so
1731     %{_libdir}/samba/libnon-posix-acls-samba4.so
1732     %{_libdir}/samba/libsamba-net-samba4.so
1733     %{_libdir}/samba/libsamba-python-samba4.so
1734     %{_libdir}/samba/libshares-samba4.so
1735     %{_libdir}/samba/libsmbpasswdparser-samba4.so
1736     %{_libdir}/samba/libxattr-tdb-samba4.so
1737    
1738     %if %with_dc
1739     %{_libdir}/samba/libdb-glue-samba4.so
1740     %{_libdir}/samba/libHDB-SAMBA4-samba4.so
1741     %{_libdir}/samba/libasn1-samba4.so.8
1742     %{_libdir}/samba/libasn1-samba4.so.8.0.0
1743 unnilennium 1.3 %{_libdir}/samba/libcom_err-samba4.so.0
1744     %{_libdir}/samba/libcom_err-samba4.so.0.25
1745 vip-ire 1.1 %{_libdir}/samba/libgssapi-samba4.so.2
1746     %{_libdir}/samba/libgssapi-samba4.so.2.0.0
1747     %{_libdir}/samba/libhcrypto-samba4.so.5
1748     %{_libdir}/samba/libhcrypto-samba4.so.5.0.1
1749     %{_libdir}/samba/libhdb-samba4.so.11
1750     %{_libdir}/samba/libhdb-samba4.so.11.0.2
1751     %{_libdir}/samba/libheimbase-samba4.so.1
1752     %{_libdir}/samba/libheimbase-samba4.so.1.0.0
1753     %{_libdir}/samba/libhx509-samba4.so.5
1754     %{_libdir}/samba/libhx509-samba4.so.5.0.0
1755     %{_libdir}/samba/libkrb5-samba4.so.26
1756     %{_libdir}/samba/libkrb5-samba4.so.26.0.0
1757     %{_libdir}/samba/libroken-samba4.so.19
1758     %{_libdir}/samba/libroken-samba4.so.19.0.1
1759     %{_libdir}/samba/libwind-samba4.so.0
1760     %{_libdir}/samba/libwind-samba4.so.0.0.0
1761     %endif
1762    
1763     ### LIBSMBCLIENT
1764     %if %with_libsmbclient
1765     %files -n libsmbclient
1766     %defattr(-,root,root)
1767     %{_libdir}/libsmbclient.so.*
1768    
1769     ### LIBSMBCLIENT-DEVEL
1770     %files -n libsmbclient-devel
1771     %defattr(-,root,root)
1772     %{_includedir}/samba-4.0/libsmbclient.h
1773     %{_libdir}/libsmbclient.so
1774     %{_libdir}/pkgconfig/smbclient.pc
1775     %{_mandir}/man7/libsmbclient.7*
1776     %endif # with_libsmbclient
1777    
1778     ### LIBWBCLIENT
1779     %if %with_libwbclient
1780     %files -n libwbclient
1781     %defattr(-,root,root)
1782     %{_libdir}/samba/wbclient/libwbclient.so.*
1783     %{_libdir}/samba/libwinbind-client-samba4.so
1784    
1785     ### LIBWBCLIENT-DEVEL
1786     %files -n libwbclient-devel
1787     %defattr(-,root,root)
1788     %{_includedir}/samba-4.0/wbclient.h
1789     %{_libdir}/samba/wbclient/libwbclient.so
1790     %{_libdir}/pkgconfig/wbclient.pc
1791     %endif # with_libwbclient
1792    
1793     ### PIDL
1794     %files pidl
1795     %defattr(-,root,root,-)
1796     %attr(755,root,root) %{_bindir}/pidl
1797     %dir %{perl_vendorlib}/Parse
1798     %{perl_vendorlib}/Parse/Pidl.pm
1799     %dir %{perl_vendorlib}/Parse/Pidl
1800     %{perl_vendorlib}/Parse/Pidl/CUtil.pm
1801     %{perl_vendorlib}/Parse/Pidl/Samba4.pm
1802     %{perl_vendorlib}/Parse/Pidl/Expr.pm
1803     %{perl_vendorlib}/Parse/Pidl/ODL.pm
1804     %{perl_vendorlib}/Parse/Pidl/Typelist.pm
1805     %{perl_vendorlib}/Parse/Pidl/IDL.pm
1806     %{perl_vendorlib}/Parse/Pidl/Compat.pm
1807     %dir %{perl_vendorlib}/Parse/Pidl/Wireshark
1808     %{perl_vendorlib}/Parse/Pidl/Wireshark/Conformance.pm
1809     %{perl_vendorlib}/Parse/Pidl/Wireshark/NDR.pm
1810     %{perl_vendorlib}/Parse/Pidl/Dump.pm
1811     %dir %{perl_vendorlib}/Parse/Pidl/Samba3
1812     %{perl_vendorlib}/Parse/Pidl/Samba3/ServerNDR.pm
1813     %{perl_vendorlib}/Parse/Pidl/Samba3/ClientNDR.pm
1814     %dir %{perl_vendorlib}/Parse/Pidl/Samba4
1815     %{perl_vendorlib}/Parse/Pidl/Samba4/Header.pm
1816     %dir %{perl_vendorlib}/Parse/Pidl/Samba4/COM
1817     %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Header.pm
1818     %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Proxy.pm
1819     %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Stub.pm
1820     %{perl_vendorlib}/Parse/Pidl/Samba4/Python.pm
1821     %{perl_vendorlib}/Parse/Pidl/Samba4/Template.pm
1822     %dir %{perl_vendorlib}/Parse/Pidl/Samba4/NDR
1823     %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Server.pm
1824     %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Client.pm
1825     %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Parser.pm
1826     %{perl_vendorlib}/Parse/Pidl/Samba4/TDR.pm
1827     %{perl_vendorlib}/Parse/Pidl/NDR.pm
1828     %{perl_vendorlib}/Parse/Pidl/Util.pm
1829     %{_mandir}/man1/pidl*
1830     %{_mandir}/man3/Parse::Pidl*
1831    
1832     ### PYTHON
1833     %files python
1834     %defattr(-,root,root,-)
1835     %{python_sitearch}/*
1836    
1837     ### TEST
1838     %files test
1839     %defattr(-,root,root)
1840     %{_bindir}/gentest
1841     %{_bindir}/locktest
1842     %{_bindir}/masktest
1843     %{_bindir}/ndrdump
1844     %{_bindir}/smbtorture
1845     %{_mandir}/man1/gentest.1*
1846     %{_mandir}/man1/locktest.1*
1847     %{_mandir}/man1/masktest.1*
1848     %{_mandir}/man1/ndrdump.1*
1849     %{_mandir}/man1/smbtorture.1*
1850     %{_mandir}/man1/vfstest.1*
1851    
1852     %if %{with testsuite}
1853     # files to ignore in testsuite mode
1854     %{_libdir}/samba/libnss-wrapper.so
1855     %{_libdir}/samba/libsocket-wrapper.so
1856     %{_libdir}/samba/libuid-wrapper.so
1857     %endif
1858    
1859     ### TEST-LIBS
1860     %files test-libs
1861     %defattr(-,root,root)
1862     %if %with_dc
1863     %{_libdir}/samba/libdlz-bind9-for-torture-samba4.so
1864     %else
1865     %{_libdir}/samba/libdsdb-module-samba4.so
1866     %endif
1867    
1868     ### WINBIND
1869     %files winbind
1870     %defattr(-,root,root)
1871     %{_libdir}/samba/idmap
1872     %{_libdir}/samba/nss_info
1873     %{_libdir}/samba/libnss-info-samba4.so
1874     %{_libdir}/samba/libidmap-samba4.so
1875     %{_sbindir}/winbindd
1876     %attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
1877     %{_unitdir}/winbind.service
1878     %{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
1879     %{_mandir}/man8/winbindd.8*
1880     %{_mandir}/man8/idmap_*.8*
1881    
1882     ### WINBIND-CLIENTS
1883     %files winbind-clients
1884     %defattr(-,root,root)
1885     %{_bindir}/ntlm_auth
1886     %{_bindir}/wbinfo
1887     %{_mandir}/man1/ntlm_auth.1.gz
1888     %{_mandir}/man1/wbinfo.1*
1889    
1890     ### WINBIND-KRB5-LOCATOR
1891     %files winbind-krb5-locator
1892     %defattr(-,root,root)
1893     %ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
1894     %{_libdir}/winbind_krb5_locator.so
1895     %{_mandir}/man7/winbind_krb5_locator.7*
1896    
1897     ### WINBIND-MODULES
1898     %files winbind-modules
1899     %defattr(-,root,root)
1900     %{_libdir}/libnss_winbind.so*
1901     %{_libdir}/libnss_wins.so*
1902     %{_libdir}/security/pam_winbind.so
1903     %config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
1904     %{_mandir}/man5/pam_winbind.conf.5*
1905     %{_mandir}/man8/pam_winbind.8*
1906    
1907     %if %with_clustering_support
1908     %files -n ctdb
1909     %defattr(-,root,root)
1910     %doc ctdb/README
1911     %config(noreplace) %{_sysconfdir}/sysconfig/ctdb
1912 unnilennium 1.3 %{_sysconfdir}/ctdb/notify.sh
1913     %{_sysconfdir}/ctdb/debug-hung-script.sh
1914     %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh
1915     %{_sysconfdir}/ctdb/gcore_trace.sh
1916     %{_sysconfdir}/ctdb/functions
1917     %{_sysconfdir}/ctdb/debug_locks.sh
1918 vip-ire 1.1 %dir %{_localstatedir}/lib/ctdb/
1919    
1920     %{_unitdir}/ctdb.service
1921    
1922     %dir %{_sysconfdir}/ctdb
1923     %{_sysconfdir}/ctdb/statd-callout
1924 unnilennium 1.3 # CTDB scripts, no config files
1925     # script with executable bit means activated
1926     %dir %{_sysconfdir}/ctdb/nfs-checks.d
1927     %{_sysconfdir}/ctdb/nfs-checks.d/00.portmapper.check
1928     %{_sysconfdir}/ctdb/nfs-checks.d/10.status.check
1929     %{_sysconfdir}/ctdb/nfs-checks.d/20.nfs.check
1930     %{_sysconfdir}/ctdb/nfs-checks.d/30.nlockmgr.check
1931     %{_sysconfdir}/ctdb/nfs-checks.d/40.mountd.check
1932     %{_sysconfdir}/ctdb/nfs-checks.d/50.rquotad.check
1933     %{_sysconfdir}/ctdb/nfs-checks.d/README
1934     %{_sysconfdir}/ctdb/nfs-linux-kernel-callout
1935     %config %{_sysconfdir}/sudoers.d/ctdb
1936     # CTDB scripts, no config files
1937     # script with executable bit means activated
1938     %dir %{_sysconfdir}/ctdb/events.d
1939     %{_sysconfdir}/ctdb/events.d/00.ctdb
1940     %{_sysconfdir}/ctdb/events.d/01.reclock
1941     %{_sysconfdir}/ctdb/events.d/05.system
1942     %{_sysconfdir}/ctdb/events.d/10.external
1943     %{_sysconfdir}/ctdb/events.d/10.interface
1944     %{_sysconfdir}/ctdb/events.d/11.natgw
1945     %{_sysconfdir}/ctdb/events.d/11.routing
1946     %{_sysconfdir}/ctdb/events.d/13.per_ip_routing
1947     %{_sysconfdir}/ctdb/events.d/20.multipathd
1948     %{_sysconfdir}/ctdb/events.d/31.clamd
1949     %{_sysconfdir}/ctdb/events.d/40.vsftpd
1950     %{_sysconfdir}/ctdb/events.d/41.httpd
1951     %{_sysconfdir}/ctdb/events.d/49.winbind
1952     %{_sysconfdir}/ctdb/events.d/50.samba
1953     %{_sysconfdir}/ctdb/events.d/60.nfs
1954     %{_sysconfdir}/ctdb/events.d/70.iscsi
1955     %{_sysconfdir}/ctdb/events.d/91.lvs
1956     %{_sysconfdir}/ctdb/events.d/99.timeout
1957     %{_sysconfdir}/ctdb/events.d/README
1958 vip-ire 1.1 %dir %{_sysconfdir}/ctdb/notify.d
1959     %{_sysconfdir}/ctdb/notify.d/README
1960 unnilennium 1.3 %{_tmpfilesdir}/ctdb.conf
1961 vip-ire 1.1 %{_sbindir}/ctdbd
1962     %{_sbindir}/ctdbd_wrapper
1963     %{_bindir}/ctdb
1964     %{_bindir}/ping_pong
1965     %{_bindir}/ltdbtool
1966     %{_bindir}/ctdb_diagnostics
1967     %{_bindir}/onnode
1968 unnilennium 1.3 %dir %{_libexecdir}/ctdb
1969     %{_libexecdir}/ctdb/ctdb_natgw
1970     %{_libexecdir}/ctdb/ctdb_recovery_helper
1971     %{_libexecdir}/ctdb/smnotify
1972     %{_libexecdir}/ctdb/ctdb_lock_helper
1973     %{_libexecdir}/ctdb/ctdb_event_helper
1974 vip-ire 1.1
1975     %{_mandir}/man1/ctdb.1.gz
1976     %{_mandir}/man1/ctdbd.1.gz
1977     %{_mandir}/man1/onnode.1.gz
1978     %{_mandir}/man1/ltdbtool.1.gz
1979     %{_mandir}/man1/ping_pong.1.gz
1980     %{_mandir}/man1/ctdbd_wrapper.1.gz
1981     %{_mandir}/man5/ctdbd.conf.5.gz
1982     %{_mandir}/man7/ctdb.7.gz
1983     %{_mandir}/man7/ctdb-tunables.7.gz
1984     %{_mandir}/man7/ctdb-statistics.7.gz
1985    
1986     %files -n ctdb-tests
1987     %defattr(-,root,root)
1988 unnilennium 1.3 %dir %{_libexecdir}/ctdb/tests
1989     %{_libexecdir}/ctdb/tests/comm_client_test
1990     %{_libexecdir}/ctdb/tests/comm_server_test
1991     %{_libexecdir}/ctdb/tests/comm_test
1992     %{_libexecdir}/ctdb/tests/ctdb_bench
1993     %{_libexecdir}/ctdb/tests/ctdb_fetch
1994     %{_libexecdir}/ctdb/tests/ctdb_fetch_one
1995     %{_libexecdir}/ctdb/tests/ctdb_fetch_readonly_loop
1996     %{_libexecdir}/ctdb/tests/ctdb_fetch_readonly_once
1997     %{_libexecdir}/ctdb/tests/ctdb_functest
1998     %{_libexecdir}/ctdb/tests/ctdb_lock_tdb
1999     %{_libexecdir}/ctdb/tests/ctdb_persistent
2000     %{_libexecdir}/ctdb/tests/ctdb_porting_tests
2001     %{_libexecdir}/ctdb/tests/ctdb_randrec
2002     %{_libexecdir}/ctdb/tests/ctdb_store
2003     %{_libexecdir}/ctdb/tests/ctdb_stubtest
2004     %{_libexecdir}/ctdb/tests/ctdb_takeover_tests
2005     %{_libexecdir}/ctdb/tests/ctdb_trackingdb_test
2006     %{_libexecdir}/ctdb/tests/ctdb_transaction
2007     %{_libexecdir}/ctdb/tests/ctdb_traverse
2008     %{_libexecdir}/ctdb/tests/ctdb_update_record
2009     %{_libexecdir}/ctdb/tests/ctdb_update_record_persistent
2010     %{_libexecdir}/ctdb/tests/db_hash_test
2011     %{_libexecdir}/ctdb/tests/pkt_read_test
2012     %{_libexecdir}/ctdb/tests/pkt_write_test
2013     %{_libexecdir}/ctdb/tests/protocol_client_test
2014     %{_libexecdir}/ctdb/tests/protocol_types_test
2015     %{_libexecdir}/ctdb/tests/rb_test
2016     %{_libexecdir}/ctdb/tests/reqid_test
2017     %{_libexecdir}/ctdb/tests/srvid_test
2018 vip-ire 1.1 %{_bindir}/ctdb_run_tests
2019     %{_bindir}/ctdb_run_cluster_tests
2020 unnilennium 1.3 %dir %{_datadir}/ctdb-tests/eventscripts
2021 vip-ire 1.1 %{_datadir}/ctdb-tests/eventscripts/etc-ctdb/events.d
2022     %{_datadir}/ctdb-tests/eventscripts/etc-ctdb/functions
2023 unnilennium 1.3 %{_datadir}/ctdb-tests/eventscripts/etc-ctdb/nfs-checks.d
2024     %{_datadir}/ctdb-tests/eventscripts/etc-ctdb/nfs-linux-kernel-callout
2025 vip-ire 1.1 %{_datadir}/ctdb-tests/eventscripts/etc-ctdb/statd-callout
2026 unnilennium 1.3 %dir %{_datadir}/ctdb-tests/onnode
2027     %{_datadir}/ctdb-tests/onnode/functions
2028     %dir %{_datadir}/ctdb-tests/scripts
2029 vip-ire 1.1 %{_datadir}/ctdb-tests/scripts/common.sh
2030     %{_datadir}/ctdb-tests/scripts/integration.bash
2031     %{_datadir}/ctdb-tests/scripts/test_wrap
2032     %{_datadir}/ctdb-tests/scripts/unit.sh
2033 unnilennium 1.3 %dir %{_datadir}/ctdb-tests/simple
2034     %{_datadir}/ctdb-tests/simple/functions
2035     %{_datadir}/ctdb-tests/simple/nodes
2036 vip-ire 1.1 %doc ctdb/tests/README
2037     %endif # with_clustering_support
2038    
2039     %changelog
2040 unnilennium 1.7 * Fri May 26 2017 Jean-Philipe Pialasse <tests@pialasse.com> 4.4.4-14.6.sme
2041     - import to SME the two last upstream releases [SME: 10326]
2042     - resolves: #1450784 - Security fix for CVE-2017-7494
2043     - resolves: #1437816 - Fix krb5 memory cache in libads sasl code
2044     - resolves: #1437741 - Fix CVE-2016-2125, CVE-2016-2126 and CVE-2017-2619
2045    
2046     * Thu May 18 2017 Guenther Deschner <gdeschner@redhat.com> - 4.4.4-14
2047     - resolves: #1450784 - Security fix for CVE-2017-7494
2048    
2049     * Wed Apr 05 2017 Andreas Schneider <asn@redhat.com> - 4.4.4-13
2050     - resolves: #1437816 - Fix krb5 memory cache in libads sasl code
2051     - resolves: #1437741 - Fix CVE-2016-2125, CVE-2016-2126 and CVE-2017-2619
2052    
2053 unnilennium 1.6 * Thu Mar 02 2017 Jean-Philipe Pialasse <tests@pialasse.com> 4.4.4-12.6.sme
2054 unnilennium 1.4 - added DC support thanks to Greg Zartman work [SME: 9817]
2055 unnilennium 1.6 - added Buildrequires gnutls-devel
2056 unnilennium 1.4
2057 unnilennium 1.5 * Tue Nov 15 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-12
2058 unnilennium 1.3 - related: #1393051 - Fix return code if ip not defined in gethostbyname
2059 vip-ire 1.2
2060 unnilennium 1.3 * Wed Nov 09 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-11
2061     - related: #1393048 - Add missing patch to patchset
2062 vip-ire 1.1
2063 unnilennium 1.3 * Tue Nov 08 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-10
2064     - resolves: #1393050 - Fix linking nss_wins with libreplace
2065     - resolves: #1393051 - Fix nss_wins function definitions for gethostbyname*
2066     - resolves: #1393048 - Fix %G substitution in AD case
2067     - resolves: #1393052 - Fix regression of smbclient unable to connect to
2068     Apple and Azure
2069    
2070     * Wed Aug 31 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-9
2071     - related: #1365479 - Fix idmap range check
2072    
2073     * Fri Aug 26 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-8
2074     - related: #1193493 - Fix smbget url credentials parsing
2075    
2076     * Tue Aug 23 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-7
2077     - resolves: #1365479 - Fix idmap range checks for ad and hash backend
2078    
2079     * Tue Aug 16 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-6
2080     - resolves: #1367316 - Increase required Kerbersion version number
2081     - resolves: #1366477 - Fix using the right krb5 ccache in libads
2082     - resolves: #1356501 - Fix high CPU usage with smbclient connection to
2083     non-reachable IP
2084    
2085     * Wed Aug 03 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-5
2086     - resolves: #1359091 - Package /usr/lib/samba/ldb in the common-libs package
2087     - resolves: #1360788 - Fix multilib issue with ctdb-tests package
2088     - resolves: #1362385 - Fix Samba ignoring supplementary groups
2089     - resolves: #1364051 - Fix smbd panic with stale ctdb entries
2090    
2091     * Mon Jul 04 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-4
2092     - resolves: #1351655 - Fix winbind meomory leak with each cached credentials
2093     login
2094     - resolves: #1351961 - Fix CVE-2016-2119
2095    
2096     * Thu Jun 23 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-3
2097     - related: #1260214 - Correctly warn about missing realm for ad domains
2098     with 'security=domain'
2099    
2100     * Tue Jun 21 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-2
2101     - resolves: #1348223 - Fix sasl wrapped ldap connections
2102    
2103     * Wed Jun 08 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-1
2104     - resolves: #1303076 - Rebase Samba to version 4.4.4
2105     - resolves: #1314673 - Fix CVE-2015-7560
2106     - resolves: #1263322 - Add '--no-dns-updates' option to 'net ads join'
2107     - resolves: #1264433 - Fix segfault in pam_winbind.so with invalid config
2108     options
2109     - resolves: #1193504 - Fix smbget to retrieve files recursively
2110     - resolves: #1193502 - Fix smbget to use command line credentials
2111     - resolves: #1193493 - Fix smbget url credentials parsing
2112     - resolves: #1273999 - Support printing with Kerberos credentials on newer
2113     CUPS versions
2114     - resolves: #1296821 - Define /etc/pam.d/samba as a non replaceable config
2115     - resolves: #1261107 - Fix memory leak because of missing talloc stackframe
2116     - resolves: #1333562 - Fix memory leak after smbc_free_context()
2117     - resolves: #1315422 - Fix regression from CVE-2015-5252
2118     - resolves: #1316899 - Fixed idmap_hash module issues when used with others
2119     - resolves: #1322691 - Fix badlock related bugs
2120     - Fix CVE-2015-5370
2121     - Fix CVE-2016-2110
2122     - Fix CVE-2016-2111
2123     - Fix CVE-2016-2112
2124     - Fix CVE-2016-2113
2125     - Fix CVE-2016-2114
2126     - Fix CVE-2016-2115
2127     - Fix CVE-2016-2118
2128     - resolves: #1327951 - Fix regression with anonymous connections from OS X
2129     - resolves: #1327845 - Fix pcap_cache_reload() with spoolssd
2130     - resolves: #1289640 - Fix ctdb selinux issue with read only tracking dbs
2131     - resolves: #1341208 - Fix enumerating groups over NSS with idmap_ad
2132     - resolves: #1345827 - Fix resolving trusted domain users on domain member
2133     - resolves: #1346334 - Fix typo in smb.conf.example
2134     - resolves: #1335292 - Fix site-aware 'net ads join -k'
2135     - resolves: #1260214 - Accept empty realm for ad domains with 'security=domain'
2136    
2137     * Tue May 24 2016 Guenther Deschner <gdeschner@redhat.com> - 4.2.10-8
2138     - Fix krb5 encryption type setup during join (as admin and non-admin user)
2139     - resolves: #1312109
2140    
2141     * Mon May 02 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-7
2142     - Fix regressions introduced with security tightening as part of Badlock release
2143     - resolves: #1330199
2144 vip-ire 1.2
2145     * Tue Apr 12 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-6
2146     - Fix domain member winbind not being able to talk to trusted domains' DCs
2147 unnilennium 1.3 - relates: #1322691
2148 vip-ire 1.2
2149     * Mon Apr 11 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-5
2150     - Fix crash in smb.conf processing
2151 unnilennium 1.3 - relates: #1322691
2152 vip-ire 1.2
2153     * Fri Apr 08 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-4
2154     - Fix LDAP SASL bind with arcfour-hmac-md5
2155 unnilennium 1.3 - resolves: #1322691
2156 vip-ire 1.2
2157     * Thu Apr 07 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-3
2158     - Make sure the package owns /var/lib/samba and uses it for cache purposes
2159 unnilennium 1.3 - resolves: #1322691
2160 vip-ire 1.2
2161     * Wed Apr 06 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-2
2162     - Remove ldb modules and internal libraries for DC when not packaging DC build
2163 unnilennium 1.3 - resolves: #1322691
2164 vip-ire 1.2
2165     * Mon Apr 04 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-1
2166 unnilennium 1.3 - resolves: #1322691
2167 vip-ire 1.2
2168     * Fri Mar 04 2016 Andreas Schneider <asn@redhat.com> - 4.2.3-12
2169 unnilennium 1.3 - resolves: #1314673 - Fix CVE-2015-7560
2170 vip-ire 1.2
2171     * Fri Dec 11 2015 Guenther Deschner <gdeschner@redhat.com> - 4.2.3-11
2172 unnilennium 1.3 - resolves: #1290711
2173 vip-ire 1.2 - CVE-2015-3223 Remote DoS in Samba (AD) LDAP server
2174     - CVE-2015-5299 Missing access control check in shadow copy code
2175     - CVE-2015-5252 Insufficient symlink verification in smbd
2176     - CVE-2015-5296 Samba client requesting encryption vulnerable to
2177     downgrade attack
2178 vip-ire 1.1
2179     * Tue Oct 27 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-10
2180     - related: #1273393 - Fix use after free with nss_wins module loaded
2181    
2182     * Thu Oct 22 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-9
2183     - resolves: #1273912 - Fix dependencies to samba-common
2184     - resolves: #1273393 - Fix user after free in smb name resolution
2185    
2186     * Wed Oct 21 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-8
2187     - resolves: #1271608 - Fix upgrade path from previous rhel version
2188    
2189     * Tue Sep 01 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-7
2190     - resolves: #1258293 - Fix quota on XFS filesystems
2191    
2192     * Mon Aug 24 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-6
2193     - resolves: #1255322 - Fix 'map to guest = Bad uid' option
2194     - resolves: #1255326 - Fix segfault with 'mangling method = hash'
2195    
2196     * Wed Aug 19 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-5
2197     - resolves: #1253193 - Fix 'force group'
2198    
2199     * Wed Jul 29 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-4
2200     - resolves: #1246166 - Fix a 'net ads keytab' segfault
2201    
2202     * Tue Jul 21 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-3
2203     - resolves: #1225719 - Fix possible segfault if we can't connect to the DC
2204    
2205     * Mon Jul 20 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-2
2206     - resolves: #1238194 - Fix the 'dfree command'
2207     - resolves: #1216062 - Document netbios name length limitation
2208    
2209     * Tue Jul 14 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-1
2210     - related: #1196140 - Rebase to version 4.2.3
2211     - resolves: #1237036 - Fix DCERPC PDU calculation
2212     - resolves: #1237039 - Fix winbind request cancellation
2213     - resolves: #1223981 - Fix possible segfault with smbX protocol setting
2214    
2215     * Mon Jun 22 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-3
2216     - resolves: #1228809 - Allow reauthentication without signing
2217    
2218     * Thu Jun 18 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-2
2219     - related: #1196140 - Add missing build dependency for libarchive
2220     - related: #1196140 - Make sure we do a hardened build
2221    
2222     * Wed Jun 17 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-1
2223     - resolves: #1196140 - Rebase Samba to version 4.2.2
2224     - resolves: #1186403 - Split patches to fix multiarch conflicts
2225     - resolves: #1167325 - Retrieve printer GUID from AD if it is not in the
2226     registry
2227     - resolves: #1220174 - Fix issues with winbind library dependencies
2228     - resolves: #1211658 - Fix stale cache entries on printer rename
2229     - resolves: #1228809 - Fix reconnect on session exparation
2230    
2231     * Tue May 12 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-22
2232     - resolves: #1202347 - Fix NETLOGON authentication without winbindd.
2233    
2234     * Thu Apr 09 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-21
2235     - related: #1205703 - Rebuild Samba with new binutils package.
2236    
2237     * Thu Apr 02 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-20
2238     - resolves: #1205703 - Fix build with RELRO support.
2239    
2240     * Mon Feb 16 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-19
2241     - related: #1191341 - Update patchset for CVE-2015-0240.
2242    
2243     * Thu Feb 12 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-18
2244     - resolves: #1191341 - CVE-2015-0240: RCE in netlogon server.
2245    
2246     * Fri Jan 09 2015 - Andreas Schneider <asn@redhat.com> - 4.1.12-17
2247     - related: #1177768 - Add missing requires to libwbclient.
2248    
2249     * Thu Jan 08 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-16
2250     - related: #1177768 - Add missing requires to libwbclient.
2251    
2252     * Thu Jan 08 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-15
2253     - resolves: #1177768 - Fix possible segfault with 'net ads kerberos pac dump'.
2254    
2255     * Tue Dec 16 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-14
2256     - resolves: #1171689 - Fix smbstatus if executed as user to print error message.
2257    
2258     * Fri Dec 12 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-13
2259     - resolves: #1172089 - Fix 'net rpc join' with schannel changes.
2260     - resolves: #1170883 - Fix 'net time system' segfault.
2261    
2262     * Tue Nov 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-12
2263     - related: #1162526 - Fix multilib with using alternatives for libwbclient.
2264    
2265     * Tue Nov 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-11
2266     - resolves: #1163748 - Fix smbclient -L fails against new Windows versions
2267     over TCP.
2268     - resolves: #1167849 - Fix smbstatus --profile always returning EXIT_FAILURE.
2269    
2270     * Thu Nov 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-10
2271     - related: #1162526 - Fix multilib with using alternatives for libwbclient.
2272    
2273     * Thu Nov 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-9
2274     - resolves: #1162552 - Fix net ads join segfault on big endian systems.
2275     - resolves: #1164203 - Fix net ads join segfault with existing keytab.
2276    
2277     * Thu Nov 13 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-8
2278     - related: #1162526 - Fix multilib issues when using alternatives for libwbclient.
2279    
2280     * Wed Nov 12 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-7
2281     - resolves: #1162526 - Use alternatives for libwbclient.
2282    
2283     * Mon Nov 03 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-6
2284     - related: #1156391 - Fix netbios name truncation during registration.
2285    
2286     * Wed Oct 29 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-5
2287     - resolves: #1156391 - Fix netbios name truncation during registration.
2288    
2289     * Thu Oct 09 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-4
2290     - related: #1117770 - Fix empty full_name field with samlogon.
2291    
2292     * Fri Sep 26 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-3
2293     - resolves: #878351 - Fix usage of AES keys by default.
2294     - resolves: #861366 - Fix KRB5 locator to use same KDC for joining and DNS update.
2295    
2296     * Tue Sep 16 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-2
2297     - resolves: #1138554 - Fix consuming a lot of CPU when re-reading printcap info.
2298     - resolves: #1134323 - Fix running Samba on little endian Power8 (ppc64le).
2299     - resolves: #1113064 - Fix case sensitivity options with SMB2 protocols.
2300     - resolves: #1088924 - Fix applying ACL masks when setting ACLs.
2301     - resolves: #1135723 - Fix 'force user' regression.
2302     - resolves: #1117770 - Fix empty full_name field with samlogon.
2303     - resolves: #1101210 - Fix telling systemd that nmbd is waiting for interfaces.
2304     - resolves: #1127931 - Fix getgroups() with idmap_ad returning non-mapped groups.
2305     - resolves: #1144963 - Fix idmap_ad with SFU against trusted domains.
2306     - resolves: #1140568 - Fix a segfault in the smbclient echo command.
2307     - resolves: #1089940 - Improve service principal guessing in 'net ads'.
2308     - resolves: #955561 - Fix overwriting of SPNs in AD during 'net ads join'.
2309     - resolves: #955562 - Add precreated SPNS from AD during keytab initialization.
2310    
2311     * Mon Sep 08 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-1
2312     - related: #1110820 - Rebase Samba to latest release.
2313    
2314     * Tue Aug 26 2014 - Andreas Schneider <asn@redhat.com> - 4.1.11-1
2315     - resolves: #1110820 - Rebase Samba to latest release.
2316    
2317     * Mon Aug 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-37
2318     - resolves: #1072352 - Make pidl a noarch subpackage.
2319     - resolves: #1133516 - Create a samba-test-libs package.
2320     - resolves: #1132873 - Add support to rebuild without clustering.
2321    
2322     * Fri Aug 01 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-36
2323     - resolves: #1126014 - CVE-2014-3560: remote code execution in nmbd.
2324    
2325     * Wed Jul 02 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-35
2326     - resolves: #1115060 - Fix potential Samba file corruption.
2327    
2328     * Wed Jun 11 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-34
2329     - resolves: #1105505 - CVE-2014-0244: DoS in nmbd.
2330     - resolves: #1108845 - CVE-2014-3493: DoS in smbd with unicode path names.
2331     - resolves: #1105574 - CVE-2014-0178: Uninitialized memory exposure.
2332    
2333     * Mon May 05 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-33
2334     - related: #717484 - Add missing configure line to enable profiling data support.
2335    
2336     * Tue Apr 22 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-32
2337     - related: #1082653 - Reuse IPv6 address during the AD domain join.
2338    
2339     * Thu Apr 03 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-31
2340     - resolves: #1082653 - Add IPv6 workaround for MIT kerberos.
2341    
2342     * Thu Apr 03 2014 - Alexander Bokovoy <abokovoy@redhat.com> - 4.1.1-30
2343     - resolves: #1083859 - Force KRB5CCNAME in Samba systemd units.
2344     - related: #1082598 - Fully enables systemd integration.
2345    
2346     * Tue Apr 01 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-29
2347     - resolves: #1082598 - Add missing BuildRequires for systemd-devel.
2348    
2349     * Wed Mar 26 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-28
2350     - resolves: #1077918 - Make daemons systemd aware.
2351    
2352     * Mon Mar 24 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-27
2353     - resolves: #1077857 - Fix internal error received while adding trust.
2354    
2355     * Fri Mar 21 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-26
2356     - resolves: #1079008 - Fix fragmented rpc handling.
2357    
2358     * Tue Mar 18 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-25
2359     - resolves: #1077651 - Fix 'force user' option for shares.
2360    
2361     * Wed Mar 12 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-24
2362     - resolves: #1053748 - Enhance "net ads kerberos pac" tool.
2363    
2364     * Mon Mar 10 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-23
2365     - resolves: #1072804 - Fix CVE-2013-4496.
2366     - resolves: #1072804 - Fix CVE-2013-6442.
2367    
2368     * Fri Mar 07 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-22
2369     - resolves: #1024788 - Fix joining over IPv6.
2370    
2371     * Tue Mar 04 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-21
2372     - resolves: #1066536 - Fix NBT queries with more than 9 or more components.
2373    
2374     * Thu Feb 27 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-20
2375     - resolves: #1070692 - Don't package perl(Parse::Yapp::Driver)
2376    
2377     * Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-19
2378     - related: #1067606 - Add missing directories.
2379    
2380     * Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-18
2381     - related: #1067606 - Fix installation of pidl files.
2382    
2383     * Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-17
2384     - resolves: #1067606 - Fix wbinfo with one-way trust.
2385     - resolves: #1069569 - Fix memory leak reading the printer list.
2386    
2387     * Thu Feb 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-16
2388     - resolves: #1063186 - Fix force_user with security=ads.
2389    
2390     * Wed Feb 05 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-15
2391     - resolves: #1029001 - Fix force_user with security=ads.
2392    
2393     * Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 4.1.1-14
2394     - Mass rebuild 2014-01-24
2395    
2396     * Mon Jan 13 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-13
2397     - resolves: #1051582 - Fix warnings an resource leaks reported by rpmdiff.
2398    
2399     * Fri Jan 10 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-12
2400     - resolves: #1050886 - Fix full CPU utilization in winbindd.
2401     - resolves: #1051400 - Fix segfault in smbd.
2402     - resolves: #1051402 - Fix SMB2 server panic when a smb2 brlock times out.
2403    
2404     * Thu Jan 09 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-11
2405     - resolves: #1042845 - Do not build with libbsd.
2406    
2407     * Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.1.1-10
2408     - Mass rebuild 2013-12-27
2409    
2410     * Wed Dec 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-9
2411     - resolves: #1033122 - Fix dropbox regression.
2412     - resolves: #1040464 - Fix %G substituion for config parameters.
2413    
2414     * Wed Dec 11 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-8
2415     - resolves: #1040052 - Fix winbind debug message NULL pointer derreference.
2416    
2417     * Mon Dec 09 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-7
2418     - resolves: #1039499 - Fix CVE-2012-6150.
2419    
2420     * Fri Nov 29 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-6
2421     - resolves: #1033109 - Fix winbind cache keysize limitations.
2422    
2423     * Wed Nov 27 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-5
2424     - resolves: #1034160 - Make sure we don't build the fam notify module.
2425    
2426     * Mon Nov 25 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-4
2427     - resolves: #1034048 - Fix group name substitution in template homedir.
2428     - resolves: #1018041 - Fix CVE-2013-4408.
2429     - related: #884169 - Fix several covscan warnings.
2430    
2431     * Mon Nov 18 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-3
2432     - resolves: #948509 - Fix manpage correctness.
2433    
2434     * Fri Nov 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-2
2435     - related: #884169 - Fix strict aliasing warnings.
2436    
2437     * Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-1
2438     - resolves: #1024543 - Fix CVE-2013-4475.
2439     - Update to Samba 4.1.1.
2440    
2441     * Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-5
2442     - related: #884169 - Fix the upgrade path.
2443    
2444     * Wed Oct 30 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-4
2445     - related: #884169 - Add direct dependency to samba-libs in the
2446     glusterfs package.
2447     - resolves: #996567 - Fix userPrincipalName composition.
2448     - related: #884169 - Fix memset call with zero length in in ntdb.
2449    
2450     * Fri Oct 18 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-3
2451     - resolves: #1019384 - Build glusterfs VFS plguin.
2452    
2453     * Tue Oct 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-2
2454     - related: #1014656 - Fix dependency of samba-winbind-modules package.
2455    
2456     * Fri Oct 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-1
2457     - related: #985609 - Update to Samba 4.1.0.
2458    
2459     * Tue Oct 01 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.8
2460     - related: #985609 - Update to Samba 4.1.0rc4.
2461     - resolves: #1014656 - Split out a samba-winbind-modules package.
2462    
2463     * Wed Sep 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.7
2464     - related: #985609 - Update to Samba 4.1.0rc3.
2465     - resolves: #1005422 - Add support for KEYRING ccache type in pam_winbindd.
2466    
2467     * Wed Sep 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.6
2468     - resolves: #717484 - Enable profiling data support.
2469    
2470     * Thu Aug 22 2013 - Guenther Deschner <gdeschner@redhat.com> - 2:4.1.0-0.5
2471     - resolves: #996160 - Fix winbind with trusted domains.
2472    
2473     * Wed Aug 14 2013 - Andreas Schneider <asn@redhat.com> 2:4.1.0-0.4
2474     - resolves: #996160 - Fix winbind nbt name lookup segfault.
2475    
2476     * Mon Aug 12 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.3
2477     - related: #985609 - Update to Samba 4.1.0rc2.
2478    
2479     * Wed Jul 24 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.2
2480     - resolves: #985985 - Fix file conflict between samba and wine.
2481     - resolves: #985107 - Add support for new default location for Kerberos
2482     credential caches.
2483    
2484     * Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 2:4.1.0-0.1.rc1.1
2485     - Perl 5.18 rebuild
2486    
2487     * Wed Jul 17 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.1
2488     - Update to Samba 4.1.0rc1.
2489     - resolves: #985609
2490    
2491     * Mon Jul 15 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-2
2492     - resolves: #972692 - Build with PIE and full RELRO.
2493     - resolves: #884169 - Add explicit dependencies suggested by rpmdiff.
2494     - resolves: #981033 - Local user's krb5cc deleted by winbind.
2495     - resolves: #984331 - Fix samba-common tmpfiles configuration file in wrong
2496     directory.
2497    
2498     * Wed Jul 03 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-1
2499     - Update to Samba 4.0.7.
2500    
2501     * Fri Jun 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-3
2502     - Add UPN enumeration to passdb internal API (bso #9779).
2503    
2504     * Wed May 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-2
2505     - resolves: #966130 - Fix build with MIT Kerberos.
2506     - List vfs modules in spec file.
2507    
2508     * Tue May 21 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-1
2509     - Update to Samba 4.0.6.
2510     - Remove SWAT.
2511    
2512     * Wed Apr 10 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.5-1
2513     - Update to Samba 4.0.5.
2514     - Add UPN enumeration to passdb internal API (bso #9779).
2515     - resolves: #928947 - samba-doc is obsolete now.
2516     - resolves: #948606 - LogRotate should be optional, and not a hard "Requires".
2517    
2518     * Fri Mar 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-3
2519     - resolves: #919405 - Fix and improve large_readx handling for broken clients.
2520     - resolves: #924525 - Don't use waf caching.
2521    
2522     * Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-2
2523     - resolves: #923765 - Improve packaging of README files.
2524    
2525     * Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-1
2526     - Update to Samba 4.0.4.
2527    
2528     * Mon Mar 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-4
2529     - resolves: #919333 - Create /run/samba too.
2530    
2531     * Mon Mar 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-3
2532     - Fix the cache dir to be /var/lib/samba to support upgrades.
2533    
2534     * Thu Feb 14 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-2
2535     - resolves: #907915 - libreplace.so => not found
2536    
2537     * Thu Feb 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-1
2538     - Update to Samba 4.0.3.
2539     - resolves: #907544 - Add unowned directory /usr/lib64/samba.
2540     - resolves: #906517 - Fix pidl code generation with gcc 4.8.
2541     - resolves: #908353 - Fix passdb backend ldapsam as module.
2542    
2543     * Wed Jan 30 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.2-1
2544     - Update to Samba 4.0.2.
2545     - Fixes CVE-2013-0213.
2546     - Fixes CVE-2013-0214.
2547     - resolves: #906002
2548     - resolves: #905700
2549     - resolves: #905704
2550     - Fix conn->share_access which is reset between user switches.
2551     - resolves: #903806
2552     - Add missing example and make sure we don't introduce perl dependencies.
2553     - resolves: #639470
2554    
2555     * Wed Jan 16 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.1-1
2556     - Update to Samba 4.0.1.
2557     - Fixes CVE-2013-0172.
2558    
2559     * Mon Dec 17 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-174
2560     - Fix typo in winbind-krb-locator post uninstall script.
2561    
2562     * Tue Dec 11 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-173
2563     - Update to Samba 4.0.0.
2564    
2565     * Thu Dec 06 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-171.rc6
2566     - Fix typo in winbind-krb-locator post uninstall script.
2567    
2568     * Tue Dec 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-170.rc6
2569     - Update to Samba 4.0.0rc6.
2570     - Add /etc/pam.d/samba for swat to work correctly.
2571     - resolves #882700
2572    
2573     * Fri Nov 23 2012 Guenther Deschner <gdeschner@redhat.com> - 2:4.0.0-169.rc5
2574     - Make sure ncacn_ip_tcp client code looks for NBT_NAME_SERVER name types.
2575    
2576     * Thu Nov 15 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-168.rc5
2577     - Reduce dependencies of samba-devel and create samba-test-devel package.
2578    
2579     * Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-167.rc5
2580     - Use workaround for winbind default domain only when set.
2581     - Build with old ctdb support.
2582    
2583     * Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-166.rc5
2584     - Update to Samba 4.0.0rc5.
2585    
2586     * Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-165.rc4
2587     - Fix library dependencies of libnetapi.
2588    
2589     * Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-164.rc4
2590     - resolves: #872818 - Fix perl dependencies.
2591    
2592     * Tue Oct 30 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-163.rc4
2593     - Update to Samba 4.0.0rc4.
2594    
2595     * Mon Oct 29 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-162.rc3
2596     - resolves: #870630 - Fix scriptlets interpeting a comment as argument.
2597    
2598     * Fri Oct 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-161.rc3
2599     - Add missing Requries for python modules.
2600     - Add NetworkManager dispatcher script for winbind.
2601    
2602     * Fri Oct 19 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-160.rc3
2603     - resolves: #867893 - Move /var/log/samba to samba-common package for
2604     winbind which requires it.
2605    
2606     * Thu Oct 18 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-159.rc3
2607     - Compile default auth methods into smbd.
2608    
2609     * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-158.rc3
2610     - Move pam_winbind.conf and the manpages to the right package.
2611    
2612     * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-157.rc3
2613     * resolves: #866959 - Build auth_builtin as static module.
2614    
2615     * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-156.rc3
2616     - Update systemd Requires to reflect latest packaging guidelines.
2617    
2618     * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-155.rc3
2619     - Add back the AES patches which didn't make it in rc3.
2620    
2621     * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-154.rc3
2622     - Update to 4.0.0rc3.
2623     - resolves: #805562 - Unable to share print queues.
2624     - resolves: #863388 - Unable to reload smbd configuration with systemctl.
2625    
2626     * Wed Oct 10 2012 - Alexander Bokovoy <abokovoy@redhat.com> - 2:4.0.0-153.rc2
2627     - Use alternatives to configure winbind_krb5_locator.so
2628     - Fix Requires for winbind.
2629    
2630     * Thu Oct 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-152.rc2
2631     - Add kerberos AES support.
2632     - Fix printing initialization.
2633    
2634     * Tue Oct 02 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-151.rc2
2635     - Update to 4.0.0rc2.
2636    
2637     * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-150.rc1
2638     - Fix Obsoletes/Provides for update from samba4.
2639     - Bump release number to be bigger than samba4.
2640    
2641     * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-96.rc1
2642     - Package smbprint again.
2643    
2644     * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-95.rc1
2645     - Update to 4.0.0rc1.
2646    
2647     * Mon Aug 20 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.7-94.2
2648     - Update to 3.6.7
2649    
2650     * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.6.6-93.2
2651     - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2652    
2653     * Thu Jul 19 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-93
2654     - Fix printing tdb upgrade for 3.6.6
2655     - resolves: #841609
2656    
2657     * Sun Jul 15 2012 Ville Skyttä <ville.skytta@iki.fi> - 2:3.6.6-92
2658     - Call ldconfig at libwbclient and -winbind-clients post(un)install time.
2659     - Fix empty localization files, use %%find_lang to find and %%lang-mark them.
2660     - Escape macros in %%changelog.
2661     - Fix source tarball URL.
2662    
2663     * Tue Jun 26 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-91
2664     - Update to 3.6.6
2665    
2666     * Thu Jun 21 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-90
2667     - Fix ldonfig.
2668     - Require systemd for samba-common package.
2669     - resolves: #829197
2670    
2671     * Mon Jun 18 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-89
2672     - Fix usrmove paths.
2673     - resolves: #829197
2674    
2675     * Tue May 15 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-88
2676     - Move tmpfiles.d config to common package as it is needed for smbd and
2677     winbind.
2678     - Make sure tmpfiles get created after installation.
2679    
2680     * Wed May 09 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.5-87
2681     - Correctly use system iniparser library
2682    
2683     * Fri May 04 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-86
2684     - Bump Epoch to fix a problem with a Samba4 update in testing.
2685    
2686     * Mon Apr 30 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.5-85
2687     - Security Release, fixes CVE-2012-2111
2688     - resolves: #817551
2689    
2690     * Mon Apr 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.4-84
2691     - Fix creation of /var/run/samba.
2692     - resolves: #751625
2693    
2694     * Fri Apr 20 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.4-83
2695     - Avoid private krb5_locate_kdc usage
2696     - resolves: #754783
2697    
2698     * Thu Apr 12 2012 Jon Ciesla <limburgher@gmail.com> - 1:3.6.4-82
2699     - Update to 3.6.4
2700     - Fixes CVE-2012-1182
2701    
2702     * Mon Mar 19 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-81
2703     - Fix provides for of libwclient-devel for samba-winbind-devel.
2704    
2705     * Thu Feb 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-80
2706     - Add commented out 'max protocol' to the default config.
2707    
2708     * Mon Feb 13 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-79
2709     - Create a libwbclient package.
2710     - Replace winbind-devel with libwbclient-devel package.
2711    
2712     * Mon Jan 30 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-78
2713     - Update to 3.6.3
2714     - Fixes CVE-2012-0817
2715    
2716     * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.1-77.1
2717     - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2718    
2719     * Mon Dec 05 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-77
2720     - Fix winbind cache upgrade.
2721     - resolves: #760137
2722    
2723     * Fri Nov 18 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-76
2724     - Fix piddir to match with systemd files.
2725     - Fix crash bug in the debug system.
2726     - resolves: #754525
2727    
2728     * Fri Nov 04 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-75
2729     - Fix systemd dependencies
2730     - resolves: #751397
2731    
2732     * Wed Oct 26 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-74
2733     - Update to 3.6.1
2734    
2735     * Tue Oct 04 2011 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.0-73
2736     - Fix nmbd startup
2737     - resolves: #741630
2738    
2739     * Tue Sep 20 2011 Tom Callaway <spot@fedoraproject.org> - 1:3.6.0-72
2740     - convert to systemd
2741     - restore epoch from f15
2742    
2743     * Sat Aug 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0-71
2744     - Update to 3.6.0 final
2745    
2746     * Sun Jul 31 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc3-70
2747     - Update to 3.6.0rc3
2748    
2749     * Tue Jun 07 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc2-69
2750     - Update to 3.6.0rc2
2751    
2752     * Tue May 17 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc1-68
2753     - Update to 3.6.0rc1
2754    
2755     * Wed Apr 27 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre3-67
2756     - Update to 3.6.0pre3
2757    
2758     * Wed Apr 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre2-66
2759     - Update to 3.6.0pre2
2760    
2761     * Fri Mar 11 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-65
2762     - Enable quota support
2763    
2764     * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.6.0-64pre1.1
2765     - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2766    
2767     * Wed Nov 24 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-64
2768     - Add %%ghost entry for /var/run using tmpfs
2769     - resolves: #656685
2770    
2771     * Thu Aug 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-63
2772     - Put winbind krb5 locator plugin into a separate rpm
2773     - resolves: #627181
2774    
2775     * Tue Aug 03 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-62
2776     - Update to 3.6.0pre1
2777    
2778     * Wed Jun 23 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.4-61
2779     - Update to 3.5.4
2780    
2781     * Wed May 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.3-60
2782     - Update to 3.5.3
2783     - Make sure nmb and smb initscripts return LSB compliant return codes
2784     - Fix winbind over ipv6
2785    
2786     * Wed Apr 07 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.2-59
2787     - Update to 3.5.2
2788    
2789     * Mon Mar 08 2010 Simo Sorce <ssorce@redhat.com> - 3.5.1-58
2790     - Security update to 3.5.1
2791     - Fixes CVE-2010-0728
2792    
2793     * Mon Mar 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-57
2794     - Remove cifs.upcall and mount.cifs entirely
2795    
2796     * Mon Mar 01 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-56
2797     - Update to 3.5.0
2798    
2799     * Fri Feb 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc3-55
2800     - Update to 3.5.0rc3
2801    
2802     * Tue Jan 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc2-54
2803     - Update to 3.5.0rc2
2804    
2805     * Fri Jan 15 2010 Jeff Layton <jlayton@redhat.com> - 3.5.0rc1-53
2806     - separate out CIFS tools into cifs-utils package
2807    
2808     * Fri Jan 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc1-52
2809     - Update to 3.5.0rc1
2810    
2811     * Tue Dec 15 2009 Guenther Deschner <gdeschner@redhat.com> - 3.5.0pre2-51
2812     - Update to 3.5.0pre2
2813     - Remove umount.cifs
2814    
2815     * Wed Nov 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-49
2816     - Various updates to inline documentation in default smb.conf file
2817     - resolves: #483703
2818    
2819     * Thu Oct 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-48
2820     - Update to 3.4.3
2821    
2822     * Fri Oct 09 2009 Simo Sorce <ssorce@redhat.com> - 3.4.2-47
2823     - Spec file cleanup
2824     - Fix sources upstream location
2825     - Remove conditionals to build talloc and tdb, now they are completely indepent
2826     packages in Fedora
2827     - Add defattr() where missing
2828     - Turn all tabs into 4 spaces
2829     - Remove unused migration script
2830     - Split winbind-clients out of main winbind package to avoid multilib to include
2831     huge packages for no good reason
2832    
2833     * Thu Oct 01 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.2-0.46
2834     - Update to 3.4.2
2835     - Security Release, fixes CVE-2009-2813, CVE-2009-2948 and CVE-2009-2906
2836    
2837     * Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 3.4.1-0.45
2838     - Use password-auth common PAM configuration instead of system-auth
2839    
2840     * Wed Sep 09 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.1-0.44
2841     - Update to 3.4.1
2842    
2843     * Thu Aug 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.43
2844     - Fix cli_read()
2845     - resolves: #516165
2846    
2847     * Thu Aug 06 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.42
2848     - Fix required talloc version number
2849     - resolves: #516086
2850    
2851     * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.4.0-0.41.1
2852     - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2853    
2854     * Fri Jul 17 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.41
2855     - Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX)
2856     - Specify required talloc and tdb version for BuildRequires
2857    
2858     * Fri Jul 03 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.40
2859     - Update to 3.4.0
2860    
2861     * Fri Jun 19 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0rc1-0.39
2862     - Update to 3.4.0rc1
2863    
2864     * Mon Jun 08 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre2-0.38
2865     - Update to 3.4.0pre2
2866    
2867     * Thu Apr 30 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre1-0.37
2868     - Update to 3.4.0pre1
2869    
2870     * Wed Apr 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.4-0.36
2871     - Update to 3.3.4
2872    
2873     * Mon Apr 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.35
2874     - Enable build of idmap_tdb2 for clustered setups
2875    
2876     * Wed Apr 1 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.34
2877     - Update to 3.3.3
2878    
2879     * Thu Mar 26 2009 Simo Sorce <ssorce@redhat.com> - 3.3.2-0.33
2880     - Fix nmbd init script nmbd reload was causing smbd not nmbd to reload the
2881     configuration
2882     - Fix upstream bug 6224, nmbd was waiting 5+ minutes before running elections on
2883     startup, causing your own machine not to show up in the network for 5 minutes
2884     if it was the only client in that workgroup (fix committed upstream)
2885    
2886     * Thu Mar 12 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.2-0.31
2887     - Update to 3.3.2
2888     - resolves: #489547
2889    
2890     * Thu Mar 5 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.30
2891     - Add libcap-devel to requires list (resolves: #488559)
2892    
2893     * Tue Mar 3 2009 Simo Sorce <ssorce@redhat.com> - 3.3.1-0.29
2894     - Make the talloc and ldb packages optionsl and disable their build within
2895     the samba3 package, they are now built as part of the samba4 package
2896     until they will both be released as independent packages.
2897    
2898     * Wed Feb 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.28
2899     - Enable cluster support
2900    
2901     * Tue Feb 24 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.27
2902     - Update to 3.3.1
2903    
2904     * Sat Feb 21 2009 Simo Sorce <ssorce@redhat.com> - 3.3.0-0.26
2905     - Rename ldb* tools to ldb3* to avoid conflicts with newer ldb releases
2906    
2907     * Tue Feb 3 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0.25
2908     - Update to 3.3.0 final
2909     - Add upstream fix for ldap connections to AD (Bug #6073)
2910     - Remove bogus perl dependencies (resolves: #473051)
2911    
2912     * Fri Nov 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0rc1.24
2913     - Update to 3.3.0rc1
2914    
2915     * Thu Nov 27 2008 Simo Sorce <ssorce@redhat.com> - 3.2.5-0.23
2916     - Security Release, fixes CVE-2008-4314
2917    
2918     * Thu Sep 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.4-0.22
2919     - Update to 3.2.4
2920     - resolves: #456889
2921     - move cifs.upcall to /usr/sbin
2922    
2923     * Wed Aug 27 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.3-0.21
2924     - Security fix for CVE-2008-3789
2925    
2926     * Mon Aug 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.2-0.20
2927     - Update to 3.2.2
2928    
2929     * Mon Aug 11 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.19
2930     - Add fix for CUPS problem, fixes bug #453951
2931    
2932     * Wed Aug 6 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.18
2933     - Update to 3.2.1
2934    
2935     * Tue Jul 1 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-2.17
2936     - Update to 3.2.0 final
2937     - resolves: #452622
2938    
2939     * Tue Jun 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc2.16
2940     - Update to 3.2.0rc2
2941     - resolves: #449522
2942     - resolves: #448107
2943    
2944     * Fri May 30 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.15
2945     - Fix security=server
2946     - resolves: #449038, #449039
2947    
2948     * Wed May 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.14
2949     - Add fix for CVE-2008-1105
2950     - resolves: #446724
2951    
2952     * Fri May 23 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.13
2953     - Update to 3.2.0rc1
2954    
2955     * Wed May 21 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-1.pre3.12
2956     - make it possible to print against Vista and XP SP3 as servers
2957     - resolves: #439154
2958    
2959     * Thu May 15 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.11
2960     - Add "net ads join createcomputer=ou1/ou2/ou3" fix (BZO #5465)
2961    
2962     * Fri May 09 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.10
2963     - Add smbclient fix (BZO #5452)
2964    
2965     * Fri Apr 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.9
2966     - Update to 3.2.0pre3
2967    
2968     * Tue Mar 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.8
2969     - Add fixes for libsmbclient and support for r/o relocations
2970    
2971     * Mon Mar 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.7
2972     - Fix libnetconf, libnetapi and msrpc DSSETUP call
2973    
2974     * Thu Mar 06 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.6
2975     - Create separate packages for samba-winbind and samba-winbind-devel
2976     - Add cifs.spnego helper
2977    
2978     * Wed Mar 05 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.3
2979     - Update to 3.2.0pre2
2980     - Add talloc and tdb lib and devel packages
2981     - Add domainjoin-gui package
2982    
2983     * Fri Feb 22 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-0.pre1.3
2984     - Try to fix GCC 4.3 build
2985     - Add --with-dnsupdate flag and also make sure other flags are required just to
2986     be sure the features are included without relying on autodetection to be
2987     successful
2988    
2989     * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:3.2.0-1.pre1.2
2990     - Autorebuild for GCC 4.3
2991    
2992     * Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 3.2.0-0.pre1.2
2993     - Rebuild for openldap bump
2994    
2995     * Thu Oct 18 2007 Guenther Deschner <gdeschner@redhat.com> 3.2.0-0.pre1.1.fc9
2996     - 32/64bit padding fix (affects multilib installations)
2997    
2998     * Mon Oct 8 2007 Simo Sorce <ssorce@redhat.com> 3.2.0-0.pre1.fc9
2999     - New major relase, minor switched from 0 to 2
3000     - License change, the code is now GPLv3+
3001     - Numerous improvements and bugfixes included
3002     - package libsmbsharemodes too
3003     - remove smbldap-tools as they are already packaged separately in Fedora
3004     - Fix bug 245506
3005    
3006     * Tue Oct 2 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-1.fc8
3007     - rebuild with AD DNS Update support
3008    
3009     * Tue Sep 11 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-0.fc8
3010     - upgrade to the latest upstream realease
3011     - includes security fixes released today in 3.0.26
3012    
3013     * Fri Aug 24 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-4.fc8
3014     - add fix reported upstream for heavy idmap_ldap memleak
3015    
3016     * Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-3.fc8
3017     - fix a few places were "open" is used an interfere with the new glibc
3018    
3019     * Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-2.fc8
3020     - remove old source
3021     - add patch to fix samba bugzilla 4772
3022    
3023     * Tue Aug 21 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.25c-0.fc8
3024     - update to 3.0.25c
3025    
3026     * Fri Jun 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-3.fc8
3027     - handle cases defined in #243766
3028    
3029     * Tue Jun 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-2.fc8
3030     - update to 3.0.25b
3031     - better error codes for init scripts: #244823
3032    
3033     * Tue May 29 2007 Günther Deschner <gdeschner@redhat.com>
3034     - fix pam_smbpass patch.
3035    
3036     * Fri May 25 2007 Simo Sorce <ssorce@redhat.com>
3037     - update to 3.0.25a as it contains many fixes
3038     - add a fix for pam_smbpass made by Günther but committed upstream after 3.0.25a was cut.
3039    
3040     * Mon May 14 2007 Simo Sorce <ssorce@redhat.com>
3041     - final 3.0.25
3042     - includes security fixes for CVE-2007-2444,CVE-2007-2446,CVE-2007-2447
3043    
3044     * Mon Apr 30 2007 Günther Deschner <gdeschner@redhat.com>
3045     - move to 3.0.25rc3
3046    
3047     * Thu Apr 19 2007 Simo Sorce <ssorce@redhat.com>
3048     - fixes in the spec file
3049     - moved to 3.0.25rc1
3050     - addedd patches (merged upstream so they will be removed in 3.0.25rc2)
3051    
3052     * Wed Apr 4 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-12.fc7
3053     - fixes in smb.conf
3054     - advice in smb.conf to put scripts in /var/lib/samba/scripts
3055     - create /var/lib/samba/scripts so that selinux can be happy
3056     - fix Vista problems with msdfs errors
3057    
3058     * Tue Apr 03 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-11.fc7
3059     - enable PAM and NSS dlopen checks during build
3060     - fix unresolved symbols in libnss_wins.so (bug #198230)
3061    
3062     * Fri Mar 30 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-10.fc7
3063     - set passdb backend = tdbsam as default in smb.conf
3064     - remove samba-docs dependency from swat, that was a mistake
3065     - put back COPYING and other files in samba-common
3066     - put examples in samba not in samba-docs
3067     - leave only stuff under docs/ in samba-doc
3068    
3069     * Thu Mar 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-9.fc7
3070     - integrate most of merge review proposed changes (bug #226387)
3071     - remove libsmbclient-devel-static and simply stop shipping the
3072     static version of smbclient as it seem this is deprecated and
3073     actively discouraged
3074    
3075     * Wed Mar 28 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-8.fc7
3076     - fix for bug #176649
3077    
3078     * Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com>
3079     - remove patch for bug 106483 as it introduces a new bug that prevents
3080     the use of a credentials file with the smbclient tar command
3081     - move the samba private dir from being the same as the config dir
3082     (/etc/samba) to /var/lib/samba/private
3083    
3084     * Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-7.fc7
3085     - make winbindd start earlier in the init process, at the same time
3086     ypbind is usually started as well
3087     - add a sepoarate init script for nmbd called nmb, we need to be able
3088     to restart nmbd without dropping al smbd connections unnecessarily
3089    
3090     * Fri Mar 23 2007 Simo Sorce <ssorce@redhat.com>
3091     - add samba.schema to /etc/openldap/schema
3092    
3093     * Thu Mar 22 2007 Florian La Roche <laroche@redhat.com>
3094     - adjust the Requires: for the scripts, add "chkconfig --add smb"
3095    
3096     * Tue Mar 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-6.fc7
3097     - do not put comments inline on smb.conf options, they may be read
3098     as part of the value (for example log files names)
3099    
3100     * Mon Mar 19 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-5.fc7
3101     - actually use the correct samba.pamd file not the old samba.pamd.stack file
3102     - fix logifles and use upstream convention of log.* instead of our old *.log
3103     Winbindd creates its own log.* files anyway so we will be more consistent
3104     - install our own (enhanced) default smb.conf file
3105     - Fix pam_winbind acct_mgmt PAM result code (prevented local users from
3106     logging in). Fixed by Guenther.
3107     - move some files from samba to samba-common as they are used with winbindd
3108     as well
3109    
3110     * Fri Mar 16 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-4.fc7
3111     - fix arch macro which reported Vista to Samba clients.
3112    
3113     * Thu Mar 15 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-3.fc7
3114     - Directories reorg, tdb files must go to /var/lib, not
3115     to /var/cache, add migration script in %%post common
3116     - Split out libsmbclient, devel and doc packages
3117     - Remove libmsrpc.[h|so] for now as they are not really usable
3118     - Remove kill -HUP from rotate, samba use -HUP for other things
3119     noit to reopen logs
3120    
3121     * Tue Feb 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-2.fc7
3122     - New upstream release
3123     - Fix packaging issue wrt idmap modules used only by smbd
3124     - Addedd Vista Patchset for compatibility with Windows Vista
3125     - Change default of "msdfs root", it seem to cause problems with
3126     some applications and it has been proposed to change it for
3127     3.0.25 upstream
3128    
3129     * Fri Sep 1 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23c-2
3130     - New upstream release.
3131    
3132     * Tue Aug 8 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23b-2
3133     - New upstream release.
3134    
3135     * Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-3
3136     - Fix the -logfiles patch to close
3137     bz#199607 Samba compiled with wrong log path.
3138     bz#199206 smb.conf has incorrect log file path
3139    
3140     * Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-2
3141     - Upgrade to new upstream 3.0.23a
3142     - include upstream samr_alias patch
3143    
3144     * Tue Jul 11 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-2
3145     - New upstream release.
3146     - Use modified filter-requires-samba.sh from packaging/RHEL/setup/
3147     to get rid of bogus dependency on perl(Unicode::MapUTF8)
3148     - Update the -logfiles and -smb.conf patches to work with 3.0.23
3149    
3150     * Thu Jul 6 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-0.RC3
3151     - New upstream RC release.
3152     - Update the -logfiles, and -passwd patches for
3153     3.0.23rc3
3154     - Include the change to smb.init from Bastien Nocera <bnocera@redhat.com>)
3155     to close
3156     bz#182560 Wrong retval for initscript when smbd is dead
3157     - Update this spec file to build with 3.0.23rc3
3158     - Remove the -install.mount.smbfs patch, since we don't install
3159     mount.smbfs any more.
3160    
3161     * Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 2.0.21c-3
3162     - rebuilt with new gnutls
3163    
3164     * Fri Mar 17 2006 Jay Fenlason <fenlason@redhat.com> 2.0.21c-2
3165     - New upstream version.
3166    
3167     * Mon Feb 13 2006 Jay Fenlason <fenlason@redhat.com> 3.0.21b-2
3168     - New upstream version.
3169     - Since the rawhide kernel has dropped support for smbfs, remove smbmount
3170     and smbumount. Users should use mount.cifs instead.
3171     - Upgrade to 3.0.21b
3172    
3173     * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:3.0.20b-2.1.1
3174     - bump again for double-long bug on ppc(64)
3175    
3176     * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3177     - rebuilt
3178    
3179     * Sun Nov 13 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20b-2
3180     - turn on -DLDAP_DEPRECATED to allow access to ldap functions that have
3181     been depricated in 2.3.11, but which don't have well-documented
3182     replacements (ldap_simple_bind_s(), for example).
3183     - Upgrade to 3.0.20b, which includes all the previous upstream patches.
3184     - Updated the -warnings patch for 3.0.20a.
3185     - Include --with-shared-modules=idmap_ad,idmap_rid to close
3186     bz#156810 --with-shared-modules=idmap_ad,idmap_rid
3187     - Include the new samba.pamd from Tomas Mraz (tmraz@redhat.com) to close
3188     bz#170259 pam_stack is deprecated
3189    
3190     * Sun Nov 13 2005 Warren Togami <wtogami@redhat.com> 3.0.20-3
3191     - epochs from deps, req exact release
3192     - rebuild against new openssl
3193    
3194     * Mon Aug 22 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20-2
3195     - New upstream release
3196     Includes five upstream patches -bug3010_v1, -groupname_enumeration_v3,
3197     -regcreatekey_winxp_v1, -usrmgr_groups_v1, and -winbindd_v1
3198     This obsoletes the -pie and -delim patches
3199     the -warning and -gcc4 patches are obsolete too
3200     The -man, -passwd, and -smbspool patches were updated to match 3.0.20pre1
3201     Also, the -quoting patch was implemented differently upstream
3202     There is now a umount.cifs executable and manpage
3203     We run autogen.sh as part of the build phase
3204     The testprns command is now gone
3205     libsmbclient now has a man page
3206     - Include -bug106483 patch to close
3207     bz#106483 smbclient: -N negates the provided password, despite documentation
3208     - Added the -warnings patch to quiet some compiler warnings.
3209     - Removed many obsolete patches from CVS.
3210    
3211     * Mon May 2 2005 Jay Fenlason <fenlason@redhat.com> 3.0.14a-2
3212     - New upstream release.
3213     - the -64bit-timestamps, -clitar, -establish_trust, user_rights_v1,
3214     winbind_find_dc_v2 patches are now obsolete.
3215    
3216     * Thu Apr 7 2005 Jay Fenlason <fenlason@redhat.com> 3.0.13-2
3217     - New upstream release
3218     - add my -quoting patch, to fix swat with strings that contain
3219     html meta-characters, and to use correct quote characters in
3220     lists, closing bz#134310
3221     - include the upstream winbindd_2k3sp1 patch
3222     - include the -smbclient patch.
3223     - include the -hang patch from upstream.
3224    
3225     * Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
3226     - add a "exit 0" to the postun of the main samba package
3227    
3228     * Wed Mar 2 2005 Tomas Mraz <tmraz@redhat.com> 3.0.11-5
3229     - rebuild with openssl-0.9.7e
3230    
3231     * Thu Feb 24 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-4
3232     - Use the updated filter-requires-samba.sh file, so we don't accidentally
3233     pick up a dependency on perl(Crypt::SmbHash)
3234    
3235     * Fri Feb 18 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-3
3236     - add -gcc4 patch to compile with gcc 4.
3237     - remove the now obsolete -smbclient-kerberos.patch
3238     - Include four upstream patches from
3239     http://samba.org/~jerry/patches/post-3.0.11/
3240     (Slightly modified the winbind_find_dc_v2 patch to apply easily with
3241     rpmbuild).
3242    
3243     * Fri Feb 4 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-2
3244     - include -smbspool patch to close bz#104136
3245    
3246     * Wed Jan 12 2005 Jay Fenlason <fenlason@redhat.com> 3.0.10-4
3247     - Update the -man patch to fix ntlm_auth.1 too.
3248     - Move pam_smbpass.so to the -common package, so both the 32
3249     and 64-bit versions will be installed on multiarch platforms.
3250     This closes bz#143617
3251     - Added new -delim patch to fix mount.cifs so it can accept
3252     passwords with commas in them (via environment or credentials
3253     file) to close bz#144198
3254    
3255     * Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 3.0.10-3
3256     - Rebuilt for new readline.
3257    
3258     * Fri Dec 17 2004 Jay Fenlason <fenlason@redhat.com> 3.0.10-2
3259     - New upstream release that closes CAN-2004-1154 bz#142544
3260     - Include the -64bit patch from Nalin. This closes bz#142873
3261     - Update the -logfiles patch to work with 3.0.10
3262     - Create /var/run/winbindd and make it part of the -common rpm to close
3263     bz#142242
3264    
3265     * Mon Nov 22 2004 Jay Fenlason <fenlason@redhat.com> 3.0.9-2
3266     - New upstream release. This obsoletes the -secret patch.
3267     Include my changetrustpw patch to make "net ads changetrustpw" stop
3268     aborting. This closes #134694
3269     - Remove obsolete triggers for ancient samba versions.
3270     - Move /var/log/samba to the -common rpm. This closes #76628
3271     - Remove the hack needed to get around the bad docs files in the
3272     3.0.8 tarball.
3273     - Change the comment in winbind.init to point at the correct pidfile.
3274     This closes #76641
3275    
3276     * Mon Nov 22 2004 Than Ngo <than@redhat.com> 3.0.8-4
3277     - fix unresolved symbols in libsmbclient which caused applications
3278     such as KDE's konqueror to fail when accessing smb:// URLs. #139894
3279    
3280     * Thu Nov 11 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3.1
3281     - Rescue the install.mount.smbfs patch from Juanjo Villaplana
3282     (villapla@si.uji.es) to prevent building the srpm from trashing your
3283     installed /usr/bin/smbmount
3284    
3285     * Tue Nov 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3
3286     - Include the corrected docs tarball, and use it instead of the
3287     obsolete docs from the upstream 3.0.8 tarball.
3288     - Update the logfiles patch to work with the updated docs.
3289    
3290     * Mon Nov 8 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-2
3291     - New upstream version fixes CAN-2004-0930. This obsoletes the
3292     disable-sendfile, salt, signing-shortkey and fqdn patches.
3293     - Add my <fenlason@redhat.com> ugly non-ascii-domain patch.
3294     - Updated the pie patch for 3.0.8.
3295     - Updated the logfiles patch for 3.0.8.
3296    
3297     * Tue Oct 26 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre2
3298     - New upstream version
3299     - Add Nalin's signing-shortkey patch.
3300    
3301     * Tue Oct 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.3
3302     - disable the -salt patch, because it causes undefined references in
3303     libsmbclient that prevent gnome-vfs from building.
3304    
3305     * Fri Oct 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.2
3306     - Re-enable the x_fclose patch that was accidentally disabled
3307     in 3.0.8-0.pre1.1. This closes #135832
3308     - include Nalin's -fqdn and -salt patches.
3309    
3310     * Wed Oct 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.1
3311     - Include disable-sendfile patch to default "use sendfile" to "no".
3312     This closes #132779
3313    
3314     * Wed Oct 6 2004 Jay Fenlason <fenlason@redhat.com>
3315     - Include patch from Steven Lawrance (slawrance@yahoo.com) that modifies
3316     smbmnt to work with 32-bit uids.
3317    
3318     * Mon Sep 27 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1
3319     - new upstream release. This obsoletes the ldapsam_compat patches.
3320    
3321     * Wed Sep 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-4
3322     - Update docs section to not carryover the docs/manpages directory
3323     This moved many files from /usr/share/doc/samba-3.0.7/docs/* to
3324     /usr/share/doc/samba-3.0.7/*
3325     - Modify spec file as suggested by Rex Dieter (rdieter@math.unl.edu)
3326     to correctly create libsmbclient.so.0 and to use %%_initrddir instead
3327     of rolling our own. This closes #132642
3328     - Add patch to default "use sendfile" to no, since sendfile appears to
3329     be broken
3330     - Add patch from Volker Lendecke <vl@samba.org> to help make
3331     ldapsam_compat work again.
3332     - Add patch from "Vince Brimhall" <vbrimhall@novell.com> for ldapsam_compat
3333     These two patches close bugzilla #132169
3334    
3335     * Mon Sep 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-3
3336     - Upgrade to 3.0.7, which fixes CAN-2004-0807 CAN-2004-0808
3337     This obsoletes the 3.0.6-schema patch.
3338     - Update BuildRequires line to include openldap-devel openssl-devel
3339     and cups-devel
3340    
3341     * Mon Aug 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.6-3
3342     - New upstream version.
3343     - Include post 3.0.6 patch from "Gerald (Jerry) Carter" <jerry@samba.org>
3344     to fix a duplicate in the LDAP schema.
3345     - Include 64-bit timestamp patch from Ravikumar (rkumar@hp.com)
3346     to allow correct timestamp handling on 64-bit platforms and fix #126109.
3347     - reenable the -pie patch. Samba is too widely used, and too vulnerable
3348     to potential security holes to disable an important security feature
3349     like -pie. The correct fix is to have the toolchain not create broken
3350     executables when programs compiled -pie are stripped.
3351     - Remove obsolete patches.
3352     - Modify this spec file to put libsmbclient.{a,so} in the right place on
3353     x86_64 machines.
3354    
3355     * Thu Aug 5 2004 Jason Vas Dias <jvdias@redhat.com> 3.0.5-3
3356     - Removed '-pie' patch - 3.0.5 uses -fPIC/-PIC, and the combination
3357     - resulted in executables getting corrupt stacks, causing smbmnt to
3358     - get a SIGBUS in the mount() call (bug 127420).
3359    
3360     * Fri Jul 30 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-2
3361     - Upgrade to 3.0.5, which is a regression from 3.0.5pre1 for a
3362     security fix.
3363     - Include the 3.0.4-backport patch from the 3E branch. This restores
3364     some of the 3.0.5pre1 and 3.0.5rc1 functionality.
3365    
3366     * Tue Jul 20 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-0.pre1.1
3367     - Backport base64_decode patche to close CAN-2004-0500
3368     - Backport hash patch to close CAN-2004-0686
3369     - use_authtok patch from Nalin Dahyabhai <nalin@redhat.com>
3370     - smbclient-kerberos patch from Alexander Larsson <alexl@redhat.com>
3371     - passwd patch uses "*" instead of "x" for "hashed" passwords for
3372     accounts created by winbind. "x" means "password is in /etc/shadow" to
3373     brain-damaged pam_unix module.
3374    
3375     * Fri Jul 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5.0pre1.0
3376     - New upstream version
3377     - use %% { SOURCE1 } instead of a hardcoded path
3378     - include -winbind patch from Gerald (Jerry) Carter (jerry@samba.org)
3379     https://bugzilla.samba.org/show_bug.cgi?id=1315
3380     to make winbindd work against Windows versions that do not have
3381     128 bit encryption enabled.
3382     - Moved %%{_bindir}/net to the -common package, so that folks who just
3383     want to use winbind, etc don't have to install -client in order to
3384     "net join" their domain.
3385     - New upstream version obsoletes the patches added in 3.0.3-5
3386     - Remove smbgetrc.5 man page, since we don't ship smbget.
3387    
3388     * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3389     - rebuilt
3390    
3391     * Tue May 4 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-5
3392     - Patch to allow password changes from machines patched with
3393     Microsoft hotfix MS04-011.
3394     - Include patches for https://bugzilla.samba.org/show_bug.cgi?id=1302
3395     and https://bugzilla.samba.org/show_bug.cgi?id=1309
3396    
3397     * Thu Apr 29 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-4
3398     - Samba 3.0.3 released.
3399    
3400     * Wed Apr 21 2004 jay Fenlason <fenlason@redhat.com> 3.0.3-3.rc1
3401     - New upstream version
3402     - updated spec file to make libsmbclient.so executable. This closes
3403     bugzilla #121356
3404    
3405     * Mon Apr 5 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-2.pre2
3406     - New upstream version
3407     - Updated configure line to remove --with-fhs and to explicitly set all
3408     the directories that --with-fhs was setting. We were overriding most of
3409     them anyway. This closes #118598
3410    
3411     * Mon Mar 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-1.pre1
3412     - New upstream version.
3413     - Updated -pie and -logfiles patches for 3.0.3pre1
3414     - add krb5-devel to buildrequires, fixes #116560
3415     - Add patch from Miloslav Trmac (mitr@volny.cz) to allow non-root to run
3416     "service smb status". This fixes #116559
3417    
3418     * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
3419     - rebuilt
3420    
3421     * Mon Feb 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2a-1
3422     - Upgrade to 3.0.2a
3423    
3424     * Mon Feb 16 2004 Karsten Hopp <karsten@redhat.de> 3.0.2-7
3425     - fix ownership in -common package
3426    
3427     * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3428     - rebuilt
3429    
3430     * Fri Feb 13 2004 Jay Fenlason <fenlason@redhat.com>
3431     - Change all requires lines to list an explicit epoch. Closes #102715
3432     - Add an explicit Epoch so that %%{epoch} is defined.
3433    
3434     * Mon Feb 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-5
3435     - New upstream version: 3.0.2 final includes security fix for #114995
3436     (CAN-2004-0082)
3437     - Edit postun script for the -common package to restart winbind when
3438     appropriate. Fixes bugzilla #114051.
3439    
3440     * Mon Feb 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-3rc2
3441     - add %%dir entries for %%{_libdir}/samba and %%{_libdir}/samba/charset
3442     - Upgrade to new upstream version
3443     - build mount.cifs for the new cifs filesystem in the 2.6 kernel.
3444    
3445     * Mon Jan 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-1rc1
3446     - Upgrade to new upstream version
3447    
3448     * Wed Dec 17 2003 Felipe Alfaro Solana <felipe_alfaro@linuxmail.org> 3.0.1-1
3449     - Update to 3.0.1
3450     - Removed testparm patch as it's already merged
3451     - Removed Samba.7* man pages
3452     - Fixed .buildroot patch
3453     - Fixed .pie patch
3454     - Added new /usr/bin/tdbdump file
3455    
3456     * Thu Sep 25 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-15
3457     - New 3.0.0 final release
3458     - merge nmbd-netbiosname and testparm patches from 3E branch
3459     - updated the -logfiles patch to work against 3.0.0
3460     - updated the pie patch
3461     - update the VERSION file during build
3462     - use make -j if avaliable
3463     - merge the winbindd_privileged change from 3E
3464     - merge the "rm /usr/lib" patch that allows Samba to build on 64-bit
3465     platforms despite the broken Makefile
3466    
3467     * Mon Aug 18 2003 Jay Fenlason <fenlason@redhat.com>
3468     - Merge from samba-3E-branch after samba-3.0.0rc1 was released
3469    
3470     * Wed Jul 23 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-3beta3
3471     - Merge from 3.0.0-2beta3.3E
3472     - (Correct log file names (#100981).)
3473     - (Fix pidfile directory in samab.log)
3474     - (Remove obsolete samba-3.0.0beta2.tar.bz2.md5 file)
3475     - (Move libsmbclient to the -common package (#99449))
3476    
3477     * Sun Jun 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.8a-4
3478     - rebuild
3479    
3480     * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
3481     - rebuilt
3482    
3483     * Wed May 28 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-2
3484     - add libsmbclient.so for gnome-vfs-extras
3485     - Edit specfile to specify /var/run for pid files
3486     - Move /tmp/.winbindd/socket to /var/run/winbindd/socket
3487    
3488     * Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de>
3489     - add proper ldconfig calls
3490    
3491     * Thu Apr 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-1
3492     - upgrade to 2.2.8a
3493     - remove old .md5 files
3494     - add "pid directory = /var/run" to the smb.conf file. Fixes #88495
3495     - Patch from jra@dp.samba.org to fix a delete-on-close regression
3496    
3497     * Mon Mar 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8-0
3498     - Upgrade to 2.2.8
3499     - removed commented out patches.
3500     - removed old patches and .md5 files from the repository.
3501     - remove duplicate /sbin/chkconfig --del winbind which causes
3502     warnings when removing samba.
3503     - Fixed minor bug in smbprint that causes it to fail when called with
3504     more than 10 parameters: the accounting file (and spool directory
3505     derived from it) were being set wrong due to missing {}. This closes
3506     bug #86473.
3507     - updated smb.conf patch, includes new defaults to close bug #84822.
3508    
3509     * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
3510     - rebuilt
3511    
3512     * Thu Feb 20 2003 Jonathan Blandford <jrb@redhat.com> 2.2.7a-5
3513     - remove swat.desktop file
3514    
3515     * Thu Feb 20 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.7a-4
3516     - relink libnss_wins.so with SHLD="%%{__cc} -lnsl" to force libnss_wins.so to
3517     link with libnsl, avoiding unresolved symbol errors on functions in libnsl
3518    
3519     * Mon Feb 10 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-3
3520     - edited spec file to put .so files in the correct directories
3521     on 64-bit platforms that have 32-bit compatability issues
3522     (sparc64, x86_64, etc). This fixes bugzilla #83782.
3523     - Added samba-2.2.7a-error.patch from twaugh. This fixes
3524     bugzilla #82454.
3525    
3526     * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
3527     - rebuilt
3528    
3529     * Thu Jan 9 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-1
3530     - Update to 2.2.7a
3531     - Change default printing system to CUPS
3532     - Turn on pam_smbpass
3533     - Turn on msdfs
3534    
3535     * Sat Jan 4 2003 Jeff Johnson <jbj@redhat.com> 2.2.7-5
3536     - use internal dep generator.
3537    
3538     * Sat Dec 14 2002 Tim Powers <timp@redhat.com> 2.2.7-4
3539     - don't use rpms internal dep generator
3540    
3541     * Mon Dec 02 2002 Elliot Lee <sopwith@redhat.com> 2.2.7-3
3542     - Fix missing doc files.
3543     - Fix multilib issues
3544    
3545     * Wed Nov 20 2002 Bill Nottingham <notting@redhat.com> 2.2.7-2
3546     - update to 2.2.7
3547     - add patch for LFS in smbclient (<tcallawa@redhat.com>)
3548    
3549     * Wed Aug 28 2002 Trond Eivind Glomsød <teg@redhat.com> 2.2.5-10
3550     - logrotate fixes (#65007)
3551    
3552     * Mon Aug 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-9
3553     - /usr/lib was used in place of %%{_libdir} in three locations (#72554)
3554    
3555     * Mon Aug 5 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-8
3556     - Initscript fix (#70720)
3557    
3558     * Fri Jul 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-7
3559     - Enable VFS support and compile the "recycling" module (#69796)
3560     - more selective includes of the examples dir
3561    
3562     * Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-6
3563     - Fix the lpq parser for better handling of LPRng systems (#69352)
3564    
3565     * Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-5
3566     - desktop file fixes (#69505)
3567    
3568     * Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-4
3569     - Enable ACLs
3570    
3571     * Tue Jun 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-3
3572     - Make it not depend on Net::LDAP - those are doc files and examples
3573    
3574     * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
3575     - automated rebuild
3576    
3577     * Thu Jun 20 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-1
3578     - 2.2.5
3579    
3580     * Fri Jun 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-5
3581     - Move the post/preun of winbind into the -common subpackage,
3582     where the script is (#66128)
3583    
3584     * Tue Jun 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-4
3585     - Fix pidfile locations so it runs properly again (2.2.4
3586     added a new directtive - #65007)
3587    
3588     * Thu May 23 2002 Tim Powers <timp@redhat.com>
3589     - automated rebuild
3590    
3591     * Tue May 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-2
3592     - Fix #64804
3593    
3594     * Thu May 9 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-1
3595     - 2.2.4
3596     - Removed some zero-length and CVS internal files
3597     - Make it build
3598    
3599     * Wed Apr 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-6
3600     - Don't use /etc/samba.d in smbadduser, it should be /etc/samba
3601    
3602     * Thu Apr 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-5
3603     - Add libsmbclient.a w/headerfile for KDE (#62202)
3604    
3605     * Tue Mar 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-4
3606     - Make the logrotate script look the correct place for the pid files
3607    
3608     * Thu Mar 14 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2.3a-3
3609     - include interfaces.o in pam_smbpass.so, which needs symbols from interfaces.o
3610     (patch posted to samba-list by Ilia Chipitsine)
3611    
3612     * Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-2
3613     - Rebuild
3614    
3615     * Thu Feb 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-1
3616     - 2.2.3a
3617    
3618     * Mon Feb 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3-1
3619     - 2.2.3
3620    
3621     * Thu Nov 29 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-8
3622     - New pam configuration file for samba
3623    
3624     * Tue Nov 27 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-7
3625     - Enable PAM session controll and password sync
3626    
3627     * Tue Nov 13 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-6
3628     - Move winbind files to samba-common. Add separate initscript for
3629     winbind
3630     - Fixes for winbind - protect global variables with mutex, use
3631     more secure getenv
3632    
3633     * Thu Nov 8 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-5
3634     - Teach smbadduser about "getent passwd"
3635     - Fix more pid-file references
3636     - Add (conditional) winbindd startup to the initscript, configured in
3637     /etc/sysconfig/samba
3638    
3639     * Wed Nov 7 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-4
3640     - Fix pid-file reference in logrotate script
3641     - include pam and nss modules for winbind
3642    
3643     * Mon Nov 5 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-3
3644     - Add "--with-utmp" to configure options (#55372)
3645     - Include winbind, pam_smbpass.so, rpcclient and smbcacls
3646     - start using /var/cache/samba, we need to keep state and there is
3647     more than just locks involved
3648    
3649     * Sat Nov 03 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.2.2-2
3650     - add "reload" to the usage string in the startup script
3651    
3652     * Mon Oct 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-1
3653     - 2.2.2
3654    
3655     * Tue Sep 18 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1a-5
3656     - Add patch from Jeremy Allison to fix IA64 alignment problems (#51497)
3657    
3658     * Mon Aug 13 2001 Trond Eivind Glomsrød <teg@redhat.com>
3659     - Don't include smbpasswd in samba, it's in samba-common (#51598)
3660     - Add a disabled "obey pam restrictions" statement - it's not
3661     active, as we use encrypted passwords, but if the admin turns
3662     encrypted passwords off the choice is available. (#31351)
3663    
3664     * Wed Aug 8 2001 Trond Eivind Glomsrød <teg@redhat.com>
3665     - Use /var/cache/samba instead of /var/lock/samba
3666     - Remove "domain controller" keyword from smb.conf, it's
3667     deprecated (from #13704)
3668     - Sync some examples with smb.conf.default
3669     - Fix password synchronization (#16987)
3670    
3671     * Fri Jul 20 2001 Trond Eivind Glomsrød <teg@redhat.com>
3672     - Tweaks of BuildRequires (#49581)
3673    
3674     * Wed Jul 11 2001 Trond Eivind Glomsrød <teg@redhat.com>
3675     - 2.2.1a bugfix release
3676    
3677     * Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com>
3678     - 2.2.1, which should work better for XP
3679    
3680     * Sat Jun 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
3681     - 2.2.0a security fix
3682     - Mark lograte and pam configuration files as noreplace
3683    
3684     * Fri Jun 22 2001 Trond Eivind Glomsrød <teg@redhat.com>
3685     - Add the /etc/samba directory to samba-common
3686    
3687     * Thu Jun 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
3688     - Add improvements to the smb.conf as suggested in #16931
3689    
3690     * Tue Jun 19 2001 Trond Eivind Glomsrød <teg@redhat.com>
3691     - (these changes are from the non-head version)
3692     - Don't include /usr/sbin/samba, it's the same as the initscript
3693     - unset TMPDIR, as samba can't write into a TMPDIR owned
3694     by root (#41193)
3695     - Add pidfile: lines for smbd and nmbd and a config: line
3696     in the initscript (#15343)
3697     - don't use make -j
3698     - explicitly include /usr/share/samba, not just the files in it
3699    
3700     * Tue Jun 19 2001 Bill Nottingham <notting@redhat.com>
3701     - mount.smb/mount.smbfs go in /sbin, *not* %%{_sbindir}
3702    
3703     * Fri Jun 8 2001 Preston Brown <pbrown@redhat.com>
3704     - enable encypted passwords by default
3705    
3706     * Thu Jun 7 2001 Helge Deller <hdeller@redhat.de>
3707     - build as 2.2.0-1 release
3708     - skip the documentation-directories docbook, manpages and yodldocs
3709     - don't include *.sgml documentation in package
3710     - moved codepage-directory to /usr/share/samba/codepages
3711     - make it compile with glibc-2.2.3-10 and kernel-headers-2.4.2-2
3712    
3713     * Mon May 21 2001 Helge Deller <hdeller@redhat.de>
3714     - updated to samba 2.2.0
3715     - moved codepages to %%{_datadir}/samba/codepages
3716     - use all available CPUs for building rpm packages
3717     - use %%{_xxx} defines at most places in spec-file
3718     - "License:" replaces "Copyright:"
3719     - dropped excludearch sparc
3720     - de-activated japanese patches 100 and 200 for now
3721     (they need to be fixed and tested wth 2.2.0)
3722     - separated swat.desktop file from spec-file and added
3723     german translations
3724     - moved /etc/sysconfig/samba to a separate source-file
3725     - use htmlview instead of direct call to netscape in
3726     swat.desktop-file
3727    
3728     * Mon May 7 2001 Bill Nottingham <notting@redhat.com>
3729     - device-remove security fix again (<tridge@samba.org>)
3730    
3731     * Fri Apr 20 2001 Bill Nottingham <notting@redhat.com>
3732     - fix tempfile security problems, officially (<tridge@samba.org>)
3733     - update to 2.0.8
3734    
3735     * Sun Apr 8 2001 Bill Nottingham <notting@redhat.com>
3736     - turn of SSL, kerberos
3737    
3738     * Thu Apr 5 2001 Bill Nottingham <notting@redhat.com>
3739     - fix tempfile security problems (patch from <Marcus.Meissner@caldera.de>)
3740    
3741     * Thu Mar 29 2001 Bill Nottingham <notting@redhat.com>
3742     - fix quota support, and quotas with the 2.4 kernel (#31362, #33915)
3743    
3744     * Mon Mar 26 2001 Nalin Dahyabhai <nalin@redhat.com>
3745     - tweak the PAM code some more to try to do a setcred() after initgroups()
3746     - pull in all of the optflags on i386 and sparc
3747     - don't explicitly enable Kerberos support -- it's only used for password
3748     checking, and if PAM is enabled it's a no-op anyway
3749    
3750     * Mon Mar 5 2001 Tim Waugh <twaugh@redhat.com>
3751     - exit successfully from preun script (bug #30644).
3752    
3753     * Fri Mar 2 2001 Nalin Dahyabhai <nalin@redhat.com>
3754     - rebuild in new environment
3755    
3756     * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
3757     - updated japanese stuff (#27683)
3758    
3759     * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
3760     - fix trigger (#26859)
3761    
3762     * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
3763     - add i18n support, japanese patch (#26253)
3764    
3765     * Wed Feb 7 2001 Trond Eivind Glomsrød <teg@redhat.com>
3766     - i18n improvements in initscript (#26537)
3767    
3768     * Wed Jan 31 2001 Bill Nottingham <notting@redhat.com>
3769     - put smbpasswd in samba-common (#25429)
3770    
3771     * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
3772     - new i18n stuff
3773    
3774     * Sun Jan 21 2001 Bill Nottingham <notting@redhat.com>
3775     - rebuild
3776    
3777     * Thu Jan 18 2001 Bill Nottingham <notting@redhat.com>
3778     - i18n-ize initscript
3779     - add a sysconfig file for daemon options (#23550)
3780     - clarify smbpasswd man page (#23370)
3781     - build with LFS support (#22388)
3782     - avoid extraneous pam error messages (#10666)
3783     - add Urban Widmark's bug fixes for smbmount (#19623)
3784     - fix setgid directory modes (#11911)
3785     - split swat into subpackage (#19706)
3786    
3787     * Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com>
3788     - set a default CA certificate path in smb.conf (#19010)
3789     - require openssl >= 0.9.5a-20 to make sure we have a ca-bundle.crt file
3790    
3791     * Mon Oct 16 2000 Bill Nottingham <notting@redhat.com>
3792     - fix swat only_from line (#18726, others)
3793     - fix attempt to write outside buildroot on install (#17943)
3794    
3795     * Mon Aug 14 2000 Bill Nottingham <notting@redhat.com>
3796     - add smbspool back in (#15827)
3797     - fix absolute symlinks (#16125)
3798    
3799     * Sun Aug 6 2000 Philipp Knirsch <pknirsch@redhat.com>
3800     - bugfix for smbadduser script (#15148)
3801    
3802     * Mon Jul 31 2000 Matt Wilson <msw@redhat.com>
3803     - patch configure.ing (patch11) to disable cups test
3804     - turn off swat by default
3805    
3806     * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com>
3807     - fix condrestart stuff
3808    
3809     * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
3810     - add copytruncate to logrotate file (#14360)
3811     - fix init script (#13708)
3812    
3813     * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
3814     - move initscript back
3815     - remove 'Using Samba' book from %%doc
3816     - move stuff to /etc/samba (#13708)
3817     - default configuration tweaks (#13704)
3818     - some logrotate tweaks
3819    
3820     * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
3821     - automatic rebuild
3822    
3823     * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
3824     - fix logrotate script (#13698)
3825    
3826     * Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
3827     - fix initscripts req (prereq /etc/init.d)
3828    
3829     * Wed Jul 5 2000 Than Ngo <than@redhat.de>
3830     - add initdir macro to handle the initscript directory
3831     - add a new macro to handle /etc/pam.d/system-auth
3832    
3833     * Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
3834     - enable Kerberos 5 and SSL support
3835     - patch for duplicate profile.h headers
3836    
3837     * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com>
3838     - fix init script
3839    
3840     * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com>
3841     - rename samba logs (#11606)
3842    
3843     * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
3844     - initscript munging
3845    
3846     * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com>
3847     - configure the swat stuff usefully
3848     - re-integrate some specfile tweaks that got lost somewhere
3849    
3850     * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
3851     - rebuild to get rid of cups dependency
3852    
3853     * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
3854     - tweak logrotate configurations to use the PID file in /var/lock/samba
3855    
3856     * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com>
3857     - rebuild in new environment
3858    
3859     * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
3860     - change PAM setup to use system-auth
3861    
3862     * Mon May 8 2000 Bill Nottingham <notting@redhat.com>
3863     - fixes for ia64
3864    
3865     * Sat May 6 2000 Bill Nottingham <notting@redhat.com>
3866     - switch to %%configure
3867    
3868     * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de>
3869     - version 2.0.7
3870    
3871     * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
3872     - simplify preun
3873    
3874     * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com>
3875     - fix yp_get_default_domain in autoconf
3876     - only link against readline for smbclient
3877     - fix log rotation (#9909)
3878    
3879     * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
3880     - fix trigger, again.
3881    
3882     * Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
3883     - fix trigger.
3884    
3885     * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
3886     - turn on quota support
3887    
3888     * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
3889     - rebuild to fox dependencies
3890     - man pages are compressed
3891    
3892     * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
3893     - munge post scripts slightly
3894    
3895     * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
3896     - turn on mmap again. Wheee.
3897     - ship smbmount on alpha
3898    
3899     * Mon Dec 6 1999 Bill Nottingham <notting@redhat.com>
3900     - turn off mmap. ;)
3901    
3902     * Wed Dec 1 1999 Bill Nottingham <notting@redhat.com>
3903     - change /var/log/samba to 0700
3904     - turn on mmap support
3905    
3906     * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com>
3907     - update to 2.0.6
3908    
3909     * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com>
3910     - add a %%defattr for -common
3911    
3912     * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
3913     - shift some files into -client
3914     - remove /home/samba from package.
3915    
3916     * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
3917     - initscript oopsie. killproc <name> -HUP, not other way around.
3918    
3919     * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com>
3920     - script cleanups. Again.
3921    
3922     * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
3923     - add a patch to fix dropped reconnection attempts
3924    
3925     * Mon Sep 6 1999 Jeff Johnson <jbj@redhat.com>
3926     - use cp rather than mv to preserve /etc/services perms (#4938 et al).
3927     - use mktemp to generate /etc/tmp.XXXXXX file name.
3928     - add prereqs on sed/mktemp/killall (need to move killall to /bin).
3929     - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7")
3930    
3931     * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
3932     - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd
3933    
3934     * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
3935     - fix typo in mount.smb
3936    
3937     * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
3938     - add a %%trigger to work around (sort of) broken scripts in
3939     previous releases
3940    
3941     * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
3942     - initscript munging
3943    
3944     * Mon Aug 9 1999 Bill Nottingham <notting@redhat.com>
3945     - add domain parsing to mount.smb
3946    
3947     * Fri Aug 6 1999 Bill Nottingham <notting@redhat.com>
3948     - add a -common package, shuffle files around.
3949    
3950     * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com>
3951     - add a chmod in %%postun so /etc/services & inetd.conf don't become unreadable
3952    
3953     * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com>
3954     - update to 2.0.5
3955     - fix mount.smb - smbmount options changed again.........
3956     - fix postun. oops.
3957     - update some stuff from the samba team's spec file.
3958    
3959     * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
3960     - split off clients into separate package
3961     - don't run samba by default
3962    
3963     * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
3964     - fix one problem with mount.smb script
3965     - fix smbpasswd on sparc with a really ugly kludge
3966    
3967     * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com>
3968     - fixed logrotate script
3969    
3970     * Tue May 25 1999 Bill Nottingham <notting@redhat.com>
3971     - turn of 64-bit locking on 32-bit platforms
3972    
3973     * Thu May 20 1999 Bill Nottingham <notting@redhat.com>
3974     - so many releases, so little time
3975     - explicitly uncomment 'printing = bsd' in sample config
3976    
3977     * Tue May 18 1999 Bill Nottingham <notting@redhat.com>
3978     - update to 2.0.4a
3979     - fix mount.smb arg ordering
3980    
3981     * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com>
3982     - go back to stop/start for restart (-HUP didn't work in testing)
3983    
3984     * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
3985     - add a mount.smb to make smb mounting a little easier.
3986     - smb filesystems apparently don't work on alpha. Oops.
3987    
3988     * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
3989     - always create codepages
3990    
3991     * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
3992     - logrotate changes
3993    
3994     * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
3995     - auto rebuild in the new build environment (release 3)
3996    
3997     * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
3998     - updated init script to use graceful restart (not stop/start)
3999    
4000     * Tue Mar 9 1999 Bill Nottingham <notting@redhat.com>
4001     - update to 2.0.3
4002    
4003     * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
4004     - update to 2.0.2
4005    
4006     * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com>
4007     - swat swat
4008    
4009     * Tue Feb 9 1999 Bill Nottingham <notting@redhat.com>
4010     - fix bash2 breakage in post script
4011    
4012     * Fri Feb 5 1999 Bill Nottingham <notting@redhat.com>
4013     - update to 2.0.0
4014    
4015     * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
4016     - make sure all binaries are stripped
4017    
4018     * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com>
4019     - update to 1.9.18p10.
4020     - fix %%triggerpostun.
4021    
4022     * Tue Jul 07 1998 Erik Troan <ewt@redhat.com>
4023     - updated postun triggerscript to check $0
4024     - clear /etc/codepages from %%preun instead of %%postun
4025    
4026     * Mon Jun 08 1998 Erik Troan <ewt@redhat.com>
4027     - made the %%postun script a tad less agressive; no reason to remove
4028     the logs or lock file (after all, if the lock file is still there,
4029     samba is still running)
4030     - the %%postun and %%preun should only exectute if this is the final
4031     removal
4032     - migrated %%triggerpostun from Red Hat's samba package to work around
4033     packaging problems in some Red Hat samba releases
4034    
4035     * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au>
4036     - minor tidy up in preparation for release of 1.9.18p5
4037     - added findsmb utility from SGI package
4038    
4039     * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au>
4040     - Updated version and codepage info.
4041     - Release to test name resolve order
4042    
4043     * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au>
4044     - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com>
4045     - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb
4046     - Compounded make line
4047     - Updated smb.init restart mechanism
4048     - Use compound mkdir -p line instead of individual calls to mkdir
4049     - Fixed smb.conf file path for log files
4050     - Fixed smb.conf file path for incoming smb print spool directory
4051     - Added a number of options to smb.conf file
4052     - Added smbadduser command (missed from all previous RPMs) - Doooh!
4053     - Added smbuser file and smb.conf file updates for username map
4054    

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed