/[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.6 - (hide annotations) (download)
Thu Mar 2 16:33:57 2017 UTC (7 years, 3 months ago) by unnilennium
Branch: MAIN
CVS Tags: samba-4_4_4-12_6_el7_sme
Changes since 1.5: +4 -3 lines
* Thu Mar 02 2017 Jean-Philipe Pialasse <tests@pialasse.com> 4.4.4-12.6.sme
- added DC support thanks to Greg Zartman work [SME: 9817]
- added Buildrequires gnutls-devel

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

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