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

Contents of /rpms/samba/sme10/samba.spec

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


Revision 1.4 - (show annotations) (download)
Thu Mar 2 16:11:29 2017 UTC (7 years, 3 months ago) by unnilennium
Branch: MAIN
Changes since 1.3: +15 -7 lines
* Thu Mar 02 2017 Jean-Philipe Pialasse <tests@pialasse.com> 4.4.4-12.5.sme
- added DC support thanks to Greg Zartman work [SME: 9817]

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

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