/[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.3 - (hide annotations) (download)
Thu Mar 2 16:04:48 2017 UTC (7 years, 3 months ago) by unnilennium
Branch: MAIN
CVS Tags: samba-4_4_4-12_el7_3
Changes since 1.2: +403 -325 lines
update to samba-4.4.4-12 upstream version

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

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