Fix winbind debug message NULL pointer derreference.
[ira/fedora-git] / samba.spec
1 # Set --with testsuite or %bcond_without to run the Samba torture testsuite.
2 %bcond_with testsuite
3
4 %define main_release 2
5
6 %define samba_version 4.1.3
7 %define talloc_version 2.0.8
8 %define ntdb_version 0.9
9 %define tdb_version 1.2.12
10 %define tevent_version 0.9.18
11 %define ldb_version 1.1.16
12 # This should be rc1 or nil
13 %define pre_release %nil
14
15 %if "x%{?pre_release}" != "x"
16 %define samba_release 0.%{main_release}.%{pre_release}%{?dist}
17 %else
18 %define samba_release %{main_release}%{?dist}
19 %endif
20
21 %global with_libsmbclient 1
22 %global with_libwbclient 1
23
24 %global with_pam_smbpass 0
25 %global with_internal_talloc 0
26 %global with_internal_tevent 0
27 %global with_internal_tdb 0
28 %global with_internal_ntdb 1
29 %global with_internal_ldb 0
30
31 %global with_profiling 1
32 %global with_vfs_glusterfs 1
33 %if 0%{?rhel}
34 %global with_vfs_glusterfs 0
35 # Only enable on x86_64
36 %ifarch x86_64
37 %global with_vfs_glusterfs 1
38 %endif
39 %endif
40
41 %global with_mitkrb5 1
42 %global with_dc 0
43
44 %if %{with testsuite}
45 # The testsuite only works with a full build right now.
46 %global with_mitkrb5 0
47 %global with_dc 1
48 %endif
49
50 %global with_clustering_support 1
51
52 %{!?python_libdir: %define python_libdir %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1,1)")}
53 %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
54
55 Name:           samba
56 Version:        %{samba_version}
57 Release:        %{samba_release}
58
59 %if 0%{?rhel}
60 Epoch:          0
61 %else
62 Epoch:          2
63 %endif
64
65 %if 0%{?epoch} > 0
66 %define samba_depver %{epoch}:%{version}-%{release}
67 %else
68 %define samba_depver %{version}-%{release}
69 %endif
70
71 Summary:        Server and Client software to interoperate with Windows machines
72 License:        GPLv3+ and LGPLv3+
73 Group:          System Environment/Daemons
74 URL:            http://www.samba.org/
75
76 Source0:        samba-%{version}%{pre_release}.tar.xz
77
78 # Red Hat specific replacement-files
79 Source1: samba.log
80 Source2: samba.xinetd
81 Source4: smb.conf.default
82 Source5: pam_winbind.conf
83 Source6: samba.pamd
84
85 Source200: README.dc
86 Source201: README.downgrade
87
88 Patch0: samba-4.1.0-upn.patch
89 Patch1: samba-4.1.2-doc.patch
90 Patch2: samba-4.1.3-winbind_debug.patch
91
92 BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
93
94 Requires(pre): /usr/sbin/groupadd
95 Requires(post): systemd
96 Requires(preun): systemd
97 Requires(postun): systemd
98
99 Requires(pre): %{name}-common = %{samba_depver}
100 Requires: %{name}-libs = %{samba_depver}
101 %if %with_libwbclient
102 Requires: libwbclient = %{samba_depver}
103 %endif
104
105 Provides: samba4 = %{samba_depver}
106 Obsoletes: samba4 < %{samba_depver}
107
108 # We don't build it outdated docs anymore
109 Obsoletes: samba-doc
110 # Is not supported yet
111 Obsoletes: samba-domainjoin-gui
112 # SWAT been deprecated and removed from samba
113 Obsoletes: samba-swat
114 Obsoletes: samba4-swat
115
116 %if %with_clustering_support
117 BuildRequires: ctdb-devel
118 %endif
119 BuildRequires: cups-devel
120 BuildRequires: docbook-style-xsl
121 BuildRequires: e2fsprogs-devel
122 BuildRequires: gawk
123 BuildRequires: iniparser-devel
124 BuildRequires: krb5-devel >= 1.10
125 BuildRequires: libacl-devel
126 BuildRequires: libaio-devel
127 BuildRequires: libattr-devel
128 BuildRequires: libcap-devel
129 BuildRequires: libuuid-devel
130 BuildRequires: libxslt
131 BuildRequires: ncurses-devel
132 BuildRequires: openldap-devel
133 BuildRequires: pam-devel
134 BuildRequires: perl(ExtUtils::MakeMaker)
135 BuildRequires: perl(Parse::Yapp)
136 BuildRequires: popt-devel
137 BuildRequires: python-devel
138 BuildRequires: python-tevent
139 BuildRequires: quota-devel
140 BuildRequires: readline-devel
141 BuildRequires: sed
142 BuildRequires: zlib-devel >= 1.2.3
143 BuildRequires: libbsd-devel
144 %if %{with_vfs_glusterfs}
145 BuildRequires: glusterfs-api-devel >= 3.4.0.16
146 BuildRequires: glusterfs-devel >= 3.4.0.16
147 %endif
148
149 %if ! %with_internal_talloc
150 %global libtalloc_version 2.0.7
151
152 BuildRequires: libtalloc-devel >= %{libtalloc_version}
153 BuildRequires: pytalloc-devel >= %{libtalloc_version}
154 %endif
155
156 %if ! %with_internal_tevent
157 %global libtevent_version 0.9.17
158
159 BuildRequires: libtevent-devel >= %{libtevent_version}
160 BuildRequires: python-tevent >= %{libtevent_version}
161 %endif
162
163 %if ! %with_internal_ldb
164 %global libldb_version 1.1.11
165
166 BuildRequires: libldb-devel >= %{libldb_version}
167 BuildRequires: pyldb-devel >= %{libldb_version}
168 %endif
169
170 %if ! %with_internal_tdb
171 %global libtdb_version 1.2.10
172
173 BuildRequires: libtdb-devel >= %{libtdb_version}
174 BuildRequires: python-tdb >= %{libtdb_version}
175 %endif
176
177 %if %{with testsuite}
178 BuildRequires: ldb-tools
179 %endif
180
181 # filter out perl requirements pulled in from examples in the docdir.
182 %{?filter_setup:
183 %filter_provides_in %{_docdir}
184 %filter_requires_in %{_docdir}
185 %filter_setup
186 }
187
188 ### SAMBA
189 %description
190 Samba is the standard Windows interoperability suite of programs for Linux and Unix.
191
192 ### CLIENT
193 %package client
194 Summary: Samba client programs
195 Group: Applications/System
196 Requires: %{name}-common = %{samba_depver}
197 Requires: %{name}-libs = %{samba_depver}
198 %if %with_libsmbclient
199 Requires: libsmbclient = %{samba_depver}
200 %endif
201
202 Provides: samba4-client = %{samba_depver}
203 Obsoletes: samba4-client < %{samba_depver}
204
205 %description client
206 The samba4-client package provides some SMB/CIFS clients to complement
207 the built-in SMB/CIFS filesystem in Linux. These clients allow access
208 of SMB/CIFS shares and printing to SMB/CIFS printers.
209
210 ### COMMON
211 %package common
212 Summary: Files used by both Samba servers and clients
213 Group: Applications/System
214 Requires: %{name}-libs = %{samba_depver}
215 %if %with_libwbclient
216 Requires: libwbclient = %{samba_depver}
217 %endif
218 Requires(post): systemd
219
220 Provides: samba4-common = %{samba_depver}
221 Obsoletes: samba4-common < %{samba_depver}
222
223 # This is for upgrading from F17 to F18
224 Obsoletes: samba-doc
225 Obsoletes: samba-domainjoin-gui
226 Obsoletes: samba-swat
227
228 %description common
229 samba4-common provides files necessary for both the server and client
230 packages of Samba.
231
232 ### DC
233 %package dc
234 Summary: Samba AD Domain Controller
235 Group: Applications/System
236 Requires: %{name}-libs = %{samba_depver}
237 Requires: %{name}-dc-libs = %{samba_depver}
238 Requires: %{name}-python = %{samba_depver}
239
240 Provides: samba4-dc = %{samba_depver}
241 Obsoletes: samba4-dc < %{samba_depver}
242
243 %description dc
244 The samba-dc package provides AD Domain Controller functionality
245
246 ### DC-LIBS
247 %package dc-libs
248 Summary: Samba AD Domain Controller Libraries
249 Group: Applications/System
250 Requires: %{name}-common = %{samba_depver}
251 Requires: %{name}-libs = %{samba_depver}
252
253 Provides: samba4-dc-libs = %{samba_depver}
254 Obsoletes: samba4-dc-libs < %{samba_depver}
255
256 %description dc-libs
257 The samba4-dc-libs package contains the libraries needed by the DC to
258 link against the SMB, RPC and other protocols.
259
260 ### DEVEL
261 %package devel
262 Summary: Developer tools for Samba libraries
263 Group: Development/Libraries
264 Requires: %{name}-libs = %{samba_depver}
265
266 Provides: samba4-devel = %{samba_depver}
267 Obsoletes: samba4-devel < %{samba_depver}
268
269 %description devel
270 The samba4-devel package contains the header files for the libraries
271 needed to develop programs that link against the SMB, RPC and other
272 libraries in the Samba suite.
273
274 ### GLUSTER
275 %if %{with_vfs_glusterfs}
276 %package vfs-glusterfs
277 Summary: Samba VFS module for GlusterFS
278 Group: Applications/System
279 Requires: glusterfs-api >= 3.4.0.16
280 Requires: glusterfs >= 3.4.0.16
281 Requires: %{name} = %{epoch}:%{samba_version}-%{release}
282 Requires: %{name}-libs = %{epoch}:%{samba_version}-%{release}
283
284 Obsoletes: samba-glusterfs
285 Provides: samba-glusterfs
286
287 %description vfs-glusterfs
288 Samba VFS module for GlusterFS integration.
289 %endif
290
291 ### LIBS
292 %package libs
293 Summary: Samba libraries
294 Group: Applications/System
295 Requires: krb5-libs >= 1.10
296 %if %with_libwbclient
297 Requires: libwbclient = %{samba_depver}
298 %endif
299
300 Provides: samba4-libs = %{samba_depver}
301 Obsoletes: samba4-libs < %{samba_depver}
302
303 %description libs
304 The samba4-libs package contains the libraries needed by programs that
305 link against the SMB, RPC and other protocols provided by the Samba suite.
306
307 ### LIBSMBCLIENT
308 %if %with_libsmbclient
309 %package -n libsmbclient
310 Summary: The SMB client library
311 Group: Applications/System
312 Requires: %{name}-common = %{samba_depver}
313 Requires: %{name}-libs = %{samba_depver}
314
315 %description -n libsmbclient
316 The libsmbclient contains the SMB client library from the Samba suite.
317
318 %package -n libsmbclient-devel
319 Summary: Developer tools for the SMB client library
320 Group: Development/Libraries
321 Requires: libsmbclient = %{samba_depver}
322
323 %description -n libsmbclient-devel
324 The libsmbclient-devel package contains the header files and libraries needed to
325 develop programs that link against the SMB client library in the Samba suite.
326 %endif # with_libsmbclient
327
328 ### LIBWBCLIENT
329 %if %with_libwbclient
330 %package -n libwbclient
331 Summary: The winbind client library
332 Group: Applications/System
333
334 %description -n libwbclient
335 The libwbclient package contains the winbind client library from the Samba suite.
336
337 %package -n libwbclient-devel
338 Summary: Developer tools for the winbind library
339 Group: Development/Libraries
340 Requires: libwbclient = %{samba_depver}
341 Obsoletes: samba-winbind-devel
342 Provides: samba-winbind-devel
343
344 %description -n libwbclient-devel
345 The libwbclient-devel package provides developer tools for the wbclient library.
346 %endif # with_libwbclient
347
348 ### PYTHON
349 %package python
350 Summary: Samba Python libraries
351 Group: Applications/System
352 Requires: %{name} = %{samba_depver}
353 Requires: %{name}-libs = %{samba_depver}
354 Requires: python-tevent
355 Requires: python-tdb
356 Requires: pyldb
357 Requires: pytalloc
358
359 Provides: samba4-python = %{samba_depver}
360 Obsoletes: samba4-python < %{samba_depver}
361
362 %description python
363 The samba4-python package contains the Python libraries needed by programs
364 that use SMB, RPC and other Samba provided protocols in Python programs.
365
366 ### PIDL
367 %package pidl
368 Summary: Perl IDL compiler
369 Group: Development/Tools
370 Requires: perl(Parse::Yapp)
371 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
372
373 Provides: samba4-pidl = %{samba_depver}
374 Obsoletes: samba4-pidl < %{samba_depver}
375
376 %description pidl
377 The samba4-pidl package contains the Perl IDL compiler used by Samba
378 and Wireshark to parse IDL and similar protocols
379
380 ### TEST
381 %package test
382 Summary: Testing tools for Samba servers and clients
383 Group: Applications/System
384 Requires: %{name} = %{samba_depver}
385 Requires: %{name}-common = %{samba_depver}
386 %if %with_dc
387 Requires: %{name}-dc-libs = %{samba_depver}
388 %endif
389 Requires: %{name}-libs = %{samba_depver}
390 Requires: %{name}-winbind = %{samba_depver}
391 %if %with_libsmbclient
392 Requires: libsmbclient = %{samba_depver}
393 %endif
394 %if %with_libwbclient
395 Requires: libwbclient = %{samba_depver}
396 %endif
397
398 Provides: samba4-test = %{samba_depver}
399 Obsoletes: samba4-test < %{samba_depver}
400
401 %description test
402 samba4-test provides testing tools for both the server and client
403 packages of Samba.
404
405 ### TEST-DEVEL
406 %package test-devel
407 Summary: Testing devel files for Samba servers and clients
408 Group: Applications/System
409 Requires: %{name}-test = %{samba_depver}
410
411 %description test-devel
412 samba-test-devel provides testing devel files for both the server and client
413 packages of Samba.
414
415 ### WINBIND
416 %package winbind
417 Summary: Samba winbind
418 Group: Applications/System
419 Requires: %{name}-common = %{samba_depver}
420 Requires: %{name}-libs = %{samba_depver}
421 Requires: %{name}-winbind-modules = %{samba_depver}
422
423 Provides: samba4-winbind = %{samba_depver}
424 Obsoletes: samba4-winbind < %{samba_depver}
425
426 %description winbind
427 The samba-winbind package provides the winbind NSS library, and some
428 client tools.  Winbind enables Linux to be a full member in Windows
429 domains and to use Windows user and group accounts on Linux.
430
431 ### WINBIND-CLIENTS
432 %package winbind-clients
433 Summary: Samba winbind clients
434 Group: Applications/System
435 Requires: %{name}-common = %{samba_depver}
436 Requires: %{name}-libs = %{samba_depver}
437 Requires: %{name}-winbind = %{samba_depver}
438 %if %with_libwbclient
439 Requires: libwbclient = %{samba_depver}
440 %endif
441
442 Provides: samba4-winbind-clients = %{samba_depver}
443 Obsoletes: samba4-winbind-clients < %{samba_depver}
444
445 %description winbind-clients
446 The samba-winbind-clients package provides the wbinfo and ntlm_auth
447 tool.
448
449 ### WINBIND-KRB5-LOCATOR
450 %package winbind-krb5-locator
451 Summary: Samba winbind krb5 locator
452 Group: Applications/System
453 %if %with_libwbclient
454 Requires: libwbclient = %{samba_depver}
455 Requires: %{name}-winbind = %{samba_depver}
456 %else
457 Requires: %{name}-libs = %{samba_depver}
458 %endif
459
460 Provides: samba4-winbind-krb5-locator = %{samba_depver}
461 Obsoletes: samba4-winbind-krb5-locator < %{samba_depver}
462
463 # Handle winbind_krb5_locator.so as alternatives to allow
464 # IPA AD trusts case where it should not be used by libkrb5
465 # The plugin will be diverted to /dev/null by the FreeIPA
466 # freeipa-server-trust-ad subpackage due to higher priority
467 # and restored to the proper one on uninstall
468 Requires(post): %{_sbindir}/update-alternatives
469 Requires(postun): %{_sbindir}/update-alternatives
470 Requires(preun): %{_sbindir}/update-alternatives
471
472 %description winbind-krb5-locator
473 The winbind krb5 locator is a plugin for the system kerberos library to allow
474 the local kerberos library to use the same KDC as samba and winbind use
475
476 ### WINBIND-MODULES
477 %package winbind-modules
478 Summary: Samba winbind modules
479 Group: Applications/System
480 Requires: %{name}-libs = %{samba_depver}
481 %if %with_libwbclient
482 Requires: libwbclient = %{samba_depver}
483 %endif
484 Requires: pam
485
486 %description winbind-modules
487 The samba-winbind-modules package provides the NSS library and a PAM
488 module necessary to communicate to the Winbind Daemon
489
490 %prep
491 %setup -q -n samba-%{version}%{pre_release}
492
493 %patch0 -p1 -b .samba-4.1.0-upn.patch
494 %patch1 -p1 -b .samba-4.1.2-doc.patch
495 %patch2 -p1 -b .samba-4.1.3-winbind_debug.patch
496
497 %build
498 %global _talloc_lib ,talloc,pytalloc,pytalloc-util
499 %global _tevent_lib ,tevent,pytevent
500 %global _tdb_lib ,tdb,pytdb
501 %global _ldb_lib ,ldb,pyldb
502
503 %if ! %{with_internal_talloc}
504 %global _talloc_lib ,!talloc,!pytalloc,!pytalloc-util
505 %endif
506
507 %if ! %{with_internal_tevent}
508 %global _tevent_lib ,!tevent,!pytevent
509 %endif
510
511 %if ! %{with_internal_tdb}
512 %global _tdb_lib ,!tdb,!pytdb
513 %endif
514
515 %if ! %{with_internal_ldb}
516 %global _ldb_lib ,!ldb,!pyldb
517 %endif
518
519 %global _samba4_libraries heimdal,!zlib,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib}
520
521 %global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
522 %global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
523 %global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
524
525 %global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules}
526
527 %global _libsmbclient %nil
528 %global _libwbclient %nil
529
530 %if ! %with_libsmbclient
531 %global _libsmbclient smbclient,smbsharemodes,
532 %endif
533
534 %if ! %with_libwbclient
535 %global _libwbclient wbclient,
536 %endif
537
538 %global _samba4_private_libraries %{_libsmbclient}%{_libwbclient}
539
540 LDFLAGS="-Wl,-z,relro,-z,now" \
541 %configure \
542         --enable-fhs \
543         --with-piddir=/run \
544         --with-sockets-dir=/run/samba \
545         --with-modulesdir=%{_libdir}/samba \
546         --with-pammodulesdir=%{_libdir}/security \
547         --with-lockdir=/var/lib/samba \
548         --with-cachedir=/var/lib/samba \
549         --disable-gnutls \
550         --disable-rpath-install \
551         --with-shared-modules=%{_samba4_modules} \
552         --bundled-libraries=%{_samba4_libraries} \
553         --with-pam \
554         --without-fam \
555 %if (! %with_libsmbclient) || (! %with_libwbclient)
556         --private-libraries=%{_samba4_private_libraries} \
557 %endif
558 %if %with_mitkrb5
559         --with-system-mitkrb5 \
560 %endif
561 %if ! %with_dc
562         --without-ad-dc \
563 %endif
564 %if ! %with_vfs_glusterfs
565         --disable-glusterfs \
566 %endif
567 %if %with_clustering_support
568         --with-cluster-support \
569         --enable-old-ctdb \
570 %endif
571 %if %with_profiling
572         --with-profiling-data \
573 %endif
574 %if %{with testsuite}
575         --enable-selftest \
576 %endif
577 %if ! %with_pam_smbpass
578         --without-pam_smbpass
579 %endif
580
581 make %{?_smp_mflags}
582
583 # Build PIDL for installation into vendor directories before
584 # 'make proto' gets to it.
585 (cd pidl && %{__perl} Makefile.PL INSTALLDIRS=vendor )
586
587 %install
588 rm -rf %{buildroot}
589 make install DESTDIR=%{buildroot}
590
591 install -d -m 0755 %{buildroot}/usr/{sbin,bin}
592 install -d -m 0755 %{buildroot}%{_libdir}/security
593 install -d -m 0755 %{buildroot}/var/lib/samba
594 install -d -m 0755 %{buildroot}/var/lib/samba/private
595 install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
596 install -d -m 0755 %{buildroot}/var/lib/samba/scripts
597 install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
598 install -d -m 0755 %{buildroot}/var/log/samba/old
599 install -d -m 0755 %{buildroot}/var/spool/samba
600 install -d -m 0755 %{buildroot}/var/run/samba
601 install -d -m 0755 %{buildroot}/var/run/winbindd
602 install -d -m 0755 %{buildroot}/%{_libdir}/samba
603 install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
604
605 # Undo the PIDL install, we want to try again with the right options.
606 rm -rf %{buildroot}/%{_libdir}/perl5
607 rm -rf %{buildroot}/%{_datadir}/perl5
608
609 # Install PIDL.
610 ( cd pidl && make install PERL_INSTALL_ROOT=%{buildroot} )
611
612 # Install other stuff
613 install -d -m 0755 %{buildroot}%{_sysconfdir}/logrotate.d
614 install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/samba
615
616 install -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/samba/smb.conf
617
618 install -d -m 0755 %{buildroot}%{_sysconfdir}/security
619 install -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
620
621 echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
622
623 # openLDAP database schema
624 install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
625 install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
626
627 install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint
628
629 install -d -m 0755 %{buildroot}%{_prefix}/lib/tmpfiles.d/
630 install -m644 packaging/systemd/samba.conf.tmp %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
631 # create /run/samba too.
632 echo "d /run/samba  755 root root" >> %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
633
634 install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
635 install -m 0644 packaging/systemd/samba.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/samba
636
637 install -m 0644 %{SOURCE201} packaging/README.downgrade
638
639 %if ! %with_dc
640 install -m 0644 %{SOURCE200} packaging/README.dc
641 install -m 0644 %{SOURCE200} packaging/README.dc-libs
642 %endif
643
644 install -d -m 0755 %{buildroot}%{_unitdir}
645 for i in nmb smb winbind ; do
646     cat packaging/systemd/$i.service | sed -e 's@Type=forking@Type=forking\nEnvironment=KRB5CCNAME=/run/samba/krb5cc_samba@g' >tmp$i.service
647     install -m 0644 tmp$i.service %{buildroot}%{_unitdir}/$i.service
648 done
649
650 # NetworkManager online/offline script
651 install -d -m 0755 %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/
652 install -m 0755 packaging/NetworkManager/30-winbind-systemd \
653             %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
654
655 # winbind krb5 locator
656 install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
657 touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
658
659 # Clean out crap left behind by the PIDL install.
660 find %{buildroot} -type f -name .packlist -exec rm -f {} \;
661 rm -f %{buildroot}%{perl_vendorlib}/wscript_build
662 rm -rf %{buildroot}%{perl_vendorlib}/Parse/Yapp
663
664 # This makes the right links, as rpmlint requires that
665 # the ldconfig-created links be recorded in the RPM.
666 /sbin/ldconfig -N -n %{buildroot}%{_libdir}
667
668 # Fix up permission on perl install.
669 %{_fixperms} %{buildroot}%{perl_vendorlib}
670
671 %if %{with testsuite}
672 %check
673 TDB_NO_FSYNC=1 make %{?_smp_mflags} test
674 %endif
675
676 %post
677 %systemd_post smb.service
678 %systemd_post nmb.service
679
680 %preun
681 %systemd_preun smb.service
682 %systemd_preun nmb.service
683
684 %postun
685 %systemd_postun_with_restart smb.service
686 %systemd_postun_with_restart nmb.service
687
688 %post common
689 /sbin/ldconfig
690 /usr/bin/systemd-tmpfiles --create %{_prefix}/lib/tmpfiles.d/samba.conf
691 if [ -d /var/cache/samba ]; then
692     mv /var/cache/samba/netsamlogon_cache.tdb /var/lib/samba/ 2>/dev/null
693     mv /var/cache/samba/winbindd_cache.tdb /var/lib/samba/ 2>/dev/null
694     rm -rf /var/cache/samba/
695     ln -sf /var/cache/samba /var/lib/samba/
696 fi
697
698 %postun common -p /sbin/ldconfig
699
700 %if %with_dc
701 %post dc-libs -p /sbin/ldconfig
702
703 %postun dc-libs -p /sbin/ldconfig
704 %endif # with_dc
705
706 %post libs -p /sbin/ldconfig
707
708 %postun libs -p /sbin/ldconfig
709
710 %if %with_libsmbclient
711 %post -n libsmbclient -p /sbin/ldconfig
712
713 %postun -n libsmbclient -p /sbin/ldconfig
714 %endif # with_libsmbclient
715
716 %if %with_libwbclient
717 %post -n libwbclient -p /sbin/ldconfig
718
719 %postun -n libwbclient -p /sbin/ldconfig
720 %endif # with_libwbclient
721
722 %post test -p /sbin/ldconfig
723
724 %postun test -p /sbin/ldconfig
725
726 %pre winbind
727 /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
728
729 %post winbind
730 %systemd_post winbind.service
731
732 %preun winbind
733 %systemd_preun winbind.service
734
735 %postun winbind
736 %systemd_postun_with_restart smb.service
737 %systemd_postun_with_restart nmb.service
738
739 %postun winbind-krb5-locator
740 if [ "$1" -ge "1" ]; then
741         if [ "`readlink %{_sysconfdir}/alternatives/winbind_krb5_locator.so`" == "%{_libdir}/winbind_krb5_locator.so" ]; then
742                 %{_sbindir}/update-alternatives --set winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so
743         fi
744 fi
745
746 %post winbind-krb5-locator
747 %{_sbindir}/update-alternatives --install %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so \
748                                 winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so 10
749
750 %preun winbind-krb5-locator
751 if [ $1 -eq 0 ]; then
752         %{_sbindir}/update-alternatives --remove winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so
753 fi
754
755 %post winbind-modules -p /sbin/ldconfig
756
757 %postun winbind-modules -p /sbin/ldconfig
758
759 %clean
760 rm -rf %{buildroot}
761
762 ### SAMBA
763 %files
764 %defattr(-,root,root,-)
765 %doc COPYING README WHATSNEW.txt
766 %doc examples/autofs examples/LDAP examples/misc
767 %doc examples/printer-accounting examples/printing
768 %doc packaging/README.downgrade
769 %{_bindir}/smbstatus
770 %{_bindir}/eventlogadm
771 %{_sbindir}/nmbd
772 %{_sbindir}/smbd
773 %dir %{_libdir}/samba/auth
774 %{_libdir}/samba/auth/script.so
775 %{_libdir}/samba/auth/unix.so
776 %{_libdir}/samba/auth/wbc.so
777 %dir %{_libdir}/samba/vfs
778 %{_libdir}/samba/vfs/acl_tdb.so
779 %{_libdir}/samba/vfs/acl_xattr.so
780 %{_libdir}/samba/vfs/aio_fork.so
781 %{_libdir}/samba/vfs/aio_linux.so
782 %{_libdir}/samba/vfs/aio_posix.so
783 %{_libdir}/samba/vfs/aio_pthread.so
784 %{_libdir}/samba/vfs/audit.so
785 %{_libdir}/samba/vfs/btrfs.so
786 %{_libdir}/samba/vfs/cap.so
787 %{_libdir}/samba/vfs/catia.so
788 %{_libdir}/samba/vfs/commit.so
789 %{_libdir}/samba/vfs/crossrename.so
790 %{_libdir}/samba/vfs/default_quota.so
791 %{_libdir}/samba/vfs/dirsort.so
792 %{_libdir}/samba/vfs/expand_msdfs.so
793 %{_libdir}/samba/vfs/extd_audit.so
794 %{_libdir}/samba/vfs/fake_perms.so
795 %{_libdir}/samba/vfs/fileid.so
796 %{_libdir}/samba/vfs/full_audit.so
797 %{_libdir}/samba/vfs/linux_xfs_sgid.so
798 %{_libdir}/samba/vfs/media_harmony.so
799 %{_libdir}/samba/vfs/netatalk.so
800 %{_libdir}/samba/vfs/preopen.so
801 %{_libdir}/samba/vfs/readahead.so
802 %{_libdir}/samba/vfs/readonly.so
803 %{_libdir}/samba/vfs/recycle.so
804 %{_libdir}/samba/vfs/scannedonly.so
805 %{_libdir}/samba/vfs/shadow_copy.so
806 %{_libdir}/samba/vfs/shadow_copy2.so
807 %{_libdir}/samba/vfs/smb_traffic_analyzer.so
808 %{_libdir}/samba/vfs/streams_depot.so
809 %{_libdir}/samba/vfs/streams_xattr.so
810 %{_libdir}/samba/vfs/syncops.so
811 %{_libdir}/samba/vfs/time_audit.so
812 %{_libdir}/samba/vfs/xattr_tdb.so
813
814 %{_unitdir}/nmb.service
815 %{_unitdir}/smb.service
816 %attr(1777,root,root) %dir /var/spool/samba
817 %dir %{_sysconfdir}/openldap/schema
818 %{_sysconfdir}/openldap/schema/samba.schema
819 %{_mandir}/man1/smbstatus.1*
820 %{_mandir}/man8/eventlogadm.8*
821 %{_mandir}/man8/smbd.8*
822 %{_mandir}/man8/nmbd.8*
823 #%{_mandir}/man8/vfs_*.8*
824 %{_mandir}/man8/vfs_acl_tdb.8*
825 %{_mandir}/man8/vfs_acl_xattr.8*
826 %{_mandir}/man8/vfs_aio_fork.8*
827 %{_mandir}/man8/vfs_aio_linux.8*
828 %{_mandir}/man8/vfs_aio_pthread.8*
829 %{_mandir}/man8/vfs_audit.8*
830 %{_mandir}/man8/vfs_btrfs.8*
831 %{_mandir}/man8/vfs_cacheprime.8*
832 %{_mandir}/man8/vfs_cap.8*
833 %{_mandir}/man8/vfs_catia.8*
834 %{_mandir}/man8/vfs_commit.8*
835 %{_mandir}/man8/vfs_crossrename.8*
836 %{_mandir}/man8/vfs_default_quota.8*
837 %{_mandir}/man8/vfs_dirsort.8*
838 %{_mandir}/man8/vfs_extd_audit.8*
839 %{_mandir}/man8/vfs_fake_perms.8*
840 %{_mandir}/man8/vfs_fileid.8*
841 %{_mandir}/man8/vfs_full_audit.8*
842 %{_mandir}/man8/vfs_gpfs.8*
843 %{_mandir}/man8/vfs_linux_xfs_sgid.8*
844 %{_mandir}/man8/vfs_media_harmony.8*
845 %{_mandir}/man8/vfs_netatalk.8*
846 %{_mandir}/man8/vfs_notify_fam.8*
847 %{_mandir}/man8/vfs_prealloc.8*
848 %{_mandir}/man8/vfs_preopen.8*
849 %{_mandir}/man8/vfs_readahead.8*
850 %{_mandir}/man8/vfs_readonly.8*
851 %{_mandir}/man8/vfs_recycle.8*
852 %{_mandir}/man8/vfs_scannedonly.8*
853 %{_mandir}/man8/vfs_shadow_copy.8*
854 %{_mandir}/man8/vfs_shadow_copy2.8*
855 %{_mandir}/man8/vfs_smb_traffic_analyzer.8*
856 %{_mandir}/man8/vfs_streams_depot.8*
857 %{_mandir}/man8/vfs_streams_xattr.8*
858 %{_mandir}/man8/vfs_syncops.8*
859 %{_mandir}/man8/vfs_time_audit.8*
860 %{_mandir}/man8/vfs_tsmsm.8*
861 %{_mandir}/man8/vfs_xattr_tdb.8*
862
863 ### CLIENT
864 %files client
865 %defattr(-,root,root)
866 %{_bindir}/cifsdd
867 %{_bindir}/dbwrap_tool
868 %{_bindir}/nmblookup
869 %{_bindir}/nmblookup4
870 %{_bindir}/oLschema2ldif
871 %{_bindir}/regdiff
872 %{_bindir}/regpatch
873 %{_bindir}/regshell
874 %{_bindir}/regtree
875 %{_bindir}/rpcclient
876 %{_bindir}/samba-regedit
877 %{_bindir}/sharesec
878 %{_bindir}/smbcacls
879 %{_bindir}/smbclient
880 %{_bindir}/smbclient4
881 %{_bindir}/smbcquotas
882 %{_bindir}/smbget
883 #%{_bindir}/smbiconv
884 %{_bindir}/smbpasswd
885 %{_bindir}/smbprint
886 %{_bindir}/smbspool
887 %{_bindir}/smbta-util
888 %{_bindir}/smbtar
889 %{_bindir}/smbtree
890 %{_libdir}/samba/libldb-cmdline.so
891 %{_mandir}/man1/dbwrap_tool.1*
892 %{_mandir}/man1/nmblookup.1*
893 %{_mandir}/man1/oLschema2ldif.1*
894 %{_mandir}/man1/regdiff.1*
895 %{_mandir}/man1/regpatch.1*
896 %{_mandir}/man1/regshell.1*
897 %{_mandir}/man1/regtree.1*
898 %exclude %{_mandir}/man1/findsmb.1*
899 %{_mandir}/man1/log2pcap.1*
900 %{_mandir}/man1/nmblookup4.1*
901 %{_mandir}/man1/rpcclient.1*
902 %{_mandir}/man1/sharesec.1*
903 %{_mandir}/man1/smbcacls.1*
904 %{_mandir}/man1/smbclient.1*
905 %{_mandir}/man1/smbcquotas.1*
906 %{_mandir}/man1/smbget.1*
907 %{_mandir}/man3/ntdb.3*
908 %{_mandir}/man5/smbgetrc.5*
909 %{_mandir}/man1/smbtar.1*
910 %{_mandir}/man1/smbtree.1*
911 %{_mandir}/man8/ntdbbackup.8*
912 %{_mandir}/man8/ntdbdump.8*
913 %{_mandir}/man8/ntdbrestore.8*
914 %{_mandir}/man8/ntdbtool.8*
915 %{_mandir}/man8/samba-regedit.8*
916 %{_mandir}/man8/smbpasswd.8*
917 %{_mandir}/man8/smbspool.8*
918 %{_mandir}/man8/smbta-util.8*
919
920 ## we don't build it for now
921 %if %{with_internal_ntdb}
922 %{_bindir}/ntdbbackup
923 %{_bindir}/ntdbdump
924 %{_bindir}/ntdbrestore
925 %{_bindir}/ntdbtool
926 %endif
927
928 %if %{with_internal_tdb}
929 %{_bindir}/tdbbackup
930 %{_bindir}/tdbdump
931 %{_bindir}/tdbrestore
932 %{_bindir}/tdbtool
933 %{_mandir}/man8/tdbbackup.8*
934 %{_mandir}/man8/tdbdump.8*
935 %{_mandir}/man8/tdbrestore.8*
936 %{_mandir}/man8/tdbtool.8*
937 %endif
938
939 %if %with_internal_ldb
940 %{_bindir}/ldbadd
941 %{_bindir}/ldbdel
942 %{_bindir}/ldbedit
943 %{_bindir}/ldbmodify
944 %{_bindir}/ldbrename
945 %{_bindir}/ldbsearch
946 %{_libdir}/samba/ldb/
947 %{_mandir}/man1/ldbadd.1.gz
948 %{_mandir}/man1/ldbdel.1.gz
949 %{_mandir}/man1/ldbedit.1.gz
950 %{_mandir}/man1/ldbmodify.1.gz
951 %{_mandir}/man1/ldbrename.1.gz
952 %{_mandir}/man1/ldbsearch.1.gz
953 %endif
954
955 ### COMMON
956 %files common
957 %defattr(-,root,root)
958 #%{_libdir}/samba/charset ???
959 %{_prefix}/lib/tmpfiles.d/samba.conf
960 %{_bindir}/net
961 %{_bindir}/pdbedit
962 %{_bindir}/profiles
963 %{_bindir}/smbcontrol
964 %{_bindir}/testparm
965 %{_datadir}/samba/codepages
966 %dir %{_sysconfdir}/logrotate.d/
967 %config(noreplace) %{_sysconfdir}/logrotate.d/samba
968 %attr(0700,root,root) %dir /var/log/samba
969 %attr(0700,root,root) %dir /var/log/samba/old
970 %ghost %dir /var/run/samba
971 %ghost %dir /var/run/winbindd
972 %attr(700,root,root) %dir /var/lib/samba/private
973 %attr(755,root,root) %dir %{_sysconfdir}/samba
974 %config(noreplace) %{_sysconfdir}/samba/smb.conf
975 %config(noreplace) %{_sysconfdir}/samba/lmhosts
976 %config(noreplace) %{_sysconfdir}/sysconfig/samba
977 %{_mandir}/man1/profiles.1*
978 %{_mandir}/man1/smbcontrol.1*
979 %{_mandir}/man1/testparm.1*
980 %{_mandir}/man5/lmhosts.5*
981 %{_mandir}/man5/smb.conf.5*
982 %{_mandir}/man5/smbpasswd.5*
983 %{_mandir}/man7/samba.7*
984 %{_mandir}/man8/net.8*
985 %{_mandir}/man8/pdbedit.8*
986
987 # common libraries
988 %{_libdir}/samba/libpopt_samba3.so
989
990 %dir %{_libdir}/samba/pdb
991 %{_libdir}/samba/pdb/ldapsam.so
992 %{_libdir}/samba/pdb/smbpasswd.so
993 %{_libdir}/samba/pdb/tdbsam.so
994 %{_libdir}/samba/pdb/wbc_sam.so
995
996 %if %with_pam_smbpass
997 %{_libdir}/security/pam_smbpass.so
998 %endif
999
1000 ### DC
1001 %files dc
1002 %defattr(-,root,root)
1003
1004 %if %with_dc
1005 %{_bindir}/samba-tool
1006 %{_sbindir}/samba
1007 %{_sbindir}/samba_kcc
1008 %{_sbindir}/samba_dnsupdate
1009 %{_sbindir}/samba_spnupdate
1010 %{_sbindir}/samba_upgradedns
1011 %{_libdir}/mit_samba.so
1012 %{_libdir}/samba/auth/samba4.so
1013 %{_libdir}/samba/bind9/dlz_bind9.so
1014 %{_libdir}/samba/libheimntlm-samba4.so.1
1015 %{_libdir}/samba/libheimntlm-samba4.so.1.0.1
1016 %{_libdir}/samba/libkdc-samba4.so.2
1017 %{_libdir}/samba/libkdc-samba4.so.2.0.0
1018 %{_libdir}/samba/libpac.so
1019 %{_libdir}/samba/gensec
1020 %{_libdir}/samba/ldb/acl.so
1021 %{_libdir}/samba/ldb/aclread.so
1022 %{_libdir}/samba/ldb/anr.so
1023 %{_libdir}/samba/ldb/descriptor.so
1024 %{_libdir}/samba/ldb/dirsync.so
1025 %{_libdir}/samba/ldb/extended_dn_in.so
1026 %{_libdir}/samba/ldb/extended_dn_out.so
1027 %{_libdir}/samba/ldb/extended_dn_store.so
1028 %{_libdir}/samba/ldb/ildap.so
1029 %{_libdir}/samba/ldb/instancetype.so
1030 %{_libdir}/samba/ldb/lazy_commit.so
1031 %{_libdir}/samba/ldb/ldbsamba_extensions.so
1032 %{_libdir}/samba/ldb/linked_attributes.so
1033 %{_libdir}/samba/ldb/local_password.so
1034 %{_libdir}/samba/ldb/new_partition.so
1035 %{_libdir}/samba/ldb/objectclass.so
1036 %{_libdir}/samba/ldb/objectclass_attrs.so
1037 %{_libdir}/samba/ldb/objectguid.so
1038 %{_libdir}/samba/ldb/operational.so
1039 %{_libdir}/samba/ldb/partition.so
1040 %{_libdir}/samba/ldb/password_hash.so
1041 %{_libdir}/samba/ldb/ranged_results.so
1042 %{_libdir}/samba/ldb/repl_meta_data.so
1043 %{_libdir}/samba/ldb/resolve_oids.so
1044 %{_libdir}/samba/ldb/rootdse.so
1045 %{_libdir}/samba/ldb/samba3sam.so
1046 %{_libdir}/samba/ldb/samba3sid.so
1047 %{_libdir}/samba/ldb/samba_dsdb.so
1048 %{_libdir}/samba/ldb/samba_secrets.so
1049 %{_libdir}/samba/ldb/samldb.so
1050 %{_libdir}/samba/ldb/schema_data.so
1051 %{_libdir}/samba/ldb/schema_load.so
1052 %{_libdir}/samba/ldb/secrets_tdb_sync.so
1053 %{_libdir}/samba/ldb/show_deleted.so
1054 %{_libdir}/samba/ldb/simple_dn.so
1055 %{_libdir}/samba/ldb/simple_ldap_map.so
1056 %{_libdir}/samba/ldb/subtree_delete.so
1057 %{_libdir}/samba/ldb/subtree_rename.so
1058 %{_libdir}/samba/ldb/update_keytab.so
1059 %{_libdir}/samba/ldb/wins_ldb.so
1060 %{_libdir}/samba/vfs/posix_eadb.so
1061 %dir /var/lib/samba/sysvol
1062 %{_datadir}/samba/setup
1063 %{_mandir}/man8/samba.8*
1064 %{_mandir}/man8/samba-tool.8*
1065 %else # with_dc
1066 %doc packaging/README.dc
1067 %exclude %{_mandir}/man8/samba.8*
1068 %exclude %{_mandir}/man8/samba-tool.8*
1069 %exclude %{_libdir}/samba/ldb/ildap.so
1070 %exclude %{_libdir}/samba/ldb/ldbsamba_extensions.so
1071
1072 %endif # with_dc
1073
1074 ### DC-LIBS
1075 %files dc-libs
1076 %defattr(-,root,root)
1077 %if %with_dc
1078 %{_libdir}/samba/libprocess_model.so
1079 %{_libdir}/samba/libservice.so
1080 %{_libdir}/samba/process_model
1081 %{_libdir}/samba/service
1082 %{_libdir}/libdcerpc-server.so.*
1083 %{_libdir}/samba/libdfs_server_ad.so
1084 %{_libdir}/samba/libdsdb-module.so
1085 %{_libdir}/samba/libntvfs.so
1086 %{_libdir}/samba/libposix_eadb.so
1087 %{_libdir}/samba/bind9/dlz_bind9_9.so
1088 %else
1089 %doc packaging/README.dc-libs
1090 %exclude %{_libdir}/samba/libdfs_server_ad.so
1091 %endif # with_dc
1092
1093 ### DEVEL
1094 %files devel
1095 %defattr(-,root,root)
1096 %{_includedir}/samba-4.0/charset.h
1097 %{_includedir}/samba-4.0/core/doserr.h
1098 %{_includedir}/samba-4.0/core/error.h
1099 %{_includedir}/samba-4.0/core/ntstatus.h
1100 %{_includedir}/samba-4.0/core/werror.h
1101 %{_includedir}/samba-4.0/credentials.h
1102 %{_includedir}/samba-4.0/dcerpc.h
1103 %{_includedir}/samba-4.0/dlinklist.h
1104 %{_includedir}/samba-4.0/domain_credentials.h
1105 %{_includedir}/samba-4.0/gen_ndr/atsvc.h
1106 %{_includedir}/samba-4.0/gen_ndr/auth.h
1107 %{_includedir}/samba-4.0/gen_ndr/dcerpc.h
1108 %{_includedir}/samba-4.0/gen_ndr/epmapper.h
1109 %{_includedir}/samba-4.0/gen_ndr/krb5pac.h
1110 %{_includedir}/samba-4.0/gen_ndr/lsa.h
1111 %{_includedir}/samba-4.0/gen_ndr/mgmt.h
1112 %{_includedir}/samba-4.0/gen_ndr/misc.h
1113 %{_includedir}/samba-4.0/gen_ndr/nbt.h
1114 %{_includedir}/samba-4.0/gen_ndr/drsblobs.h
1115 %{_includedir}/samba-4.0/gen_ndr/drsuapi.h
1116 %{_includedir}/samba-4.0/gen_ndr/ndr_drsblobs.h
1117 %{_includedir}/samba-4.0/gen_ndr/ndr_drsuapi.h
1118 %{_includedir}/samba-4.0/gen_ndr/ndr_atsvc.h
1119 %{_includedir}/samba-4.0/gen_ndr/ndr_atsvc_c.h
1120 %{_includedir}/samba-4.0/gen_ndr/ndr_dcerpc.h
1121 %{_includedir}/samba-4.0/gen_ndr/ndr_epmapper.h
1122 %{_includedir}/samba-4.0/gen_ndr/ndr_epmapper_c.h
1123 %{_includedir}/samba-4.0/gen_ndr/ndr_krb5pac.h
1124 %{_includedir}/samba-4.0/gen_ndr/ndr_mgmt.h
1125 %{_includedir}/samba-4.0/gen_ndr/ndr_mgmt_c.h
1126 %{_includedir}/samba-4.0/gen_ndr/ndr_misc.h
1127 %{_includedir}/samba-4.0/gen_ndr/ndr_nbt.h
1128 %{_includedir}/samba-4.0/gen_ndr/ndr_samr.h
1129 %{_includedir}/samba-4.0/gen_ndr/ndr_samr_c.h
1130 %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl.h
1131 %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl_c.h
1132 %{_includedir}/samba-4.0/gen_ndr/netlogon.h
1133 %{_includedir}/samba-4.0/gen_ndr/samr.h
1134 %{_includedir}/samba-4.0/gen_ndr/security.h
1135 %{_includedir}/samba-4.0/gen_ndr/server_id.h
1136 %{_includedir}/samba-4.0/gen_ndr/svcctl.h
1137 %{_includedir}/samba-4.0/gensec.h
1138 %{_includedir}/samba-4.0/ldap-util.h
1139 %{_includedir}/samba-4.0/ldap_errors.h
1140 %{_includedir}/samba-4.0/ldap_message.h
1141 %{_includedir}/samba-4.0/ldap_ndr.h
1142 %{_includedir}/samba-4.0/ldb_wrap.h
1143 %{_includedir}/samba-4.0/lookup_sid.h
1144 %{_includedir}/samba-4.0/machine_sid.h
1145 %{_includedir}/samba-4.0/ndr.h
1146 %{_includedir}/samba-4.0/ndr/ndr_drsblobs.h
1147 %{_includedir}/samba-4.0/ndr/ndr_drsuapi.h
1148 %{_includedir}/samba-4.0/ndr/ndr_svcctl.h
1149 %{_includedir}/samba-4.0/ndr/ndr_nbt.h
1150 %{_includedir}/samba-4.0/netapi.h
1151 %{_includedir}/samba-4.0/param.h
1152 %{_includedir}/samba-4.0/passdb.h
1153 %{_includedir}/samba-4.0/policy.h
1154 %{_includedir}/samba-4.0/read_smb.h
1155 %{_includedir}/samba-4.0/registry.h
1156 %{_includedir}/samba-4.0/roles.h
1157 %{_includedir}/samba-4.0/rpc_common.h
1158 %{_includedir}/samba-4.0/samba/session.h
1159 %{_includedir}/samba-4.0/samba/version.h
1160 %{_includedir}/samba-4.0/share.h
1161 %{_includedir}/samba-4.0/smb2.h
1162 %{_includedir}/samba-4.0/smb2_constants.h
1163 %{_includedir}/samba-4.0/smb2_create_blob.h
1164 %{_includedir}/samba-4.0/smb2_lease.h
1165 %{_includedir}/samba-4.0/smb2_signing.h
1166 %{_includedir}/samba-4.0/smb_cli.h
1167 %{_includedir}/samba-4.0/smb_cliraw.h
1168 %{_includedir}/samba-4.0/smb_common.h
1169 %{_includedir}/samba-4.0/smb_composite.h
1170 %{_includedir}/samba-4.0/smbconf.h
1171 %{_includedir}/samba-4.0/smb_constants.h
1172 %{_includedir}/samba-4.0/smb_ldap.h
1173 %{_includedir}/samba-4.0/smbldap.h
1174 %{_includedir}/samba-4.0/smb_raw.h
1175 %{_includedir}/samba-4.0/smb_raw_interfaces.h
1176 %{_includedir}/samba-4.0/smb_raw_signing.h
1177 %{_includedir}/samba-4.0/smb_raw_trans2.h
1178 %{_includedir}/samba-4.0/smb_request.h
1179 %{_includedir}/samba-4.0/smb_seal.h
1180 %{_includedir}/samba-4.0/smb_signing.h
1181 %{_includedir}/samba-4.0/smb_unix_ext.h
1182 %{_includedir}/samba-4.0/smb_util.h
1183 %{_includedir}/samba-4.0/tdr.h
1184 %{_includedir}/samba-4.0/tsocket.h
1185 %{_includedir}/samba-4.0/tsocket_internal.h
1186 %{_includedir}/samba-4.0/samba_util.h
1187 %{_includedir}/samba-4.0/util/attr.h
1188 %{_includedir}/samba-4.0/util/byteorder.h
1189 %{_includedir}/samba-4.0/util/data_blob.h
1190 %{_includedir}/samba-4.0/util/debug.h
1191 %{_includedir}/samba-4.0/util/memory.h
1192 %{_includedir}/samba-4.0/util/safe_string.h
1193 %{_includedir}/samba-4.0/util/string_wrappers.h
1194 %{_includedir}/samba-4.0/util/talloc_stack.h
1195 %{_includedir}/samba-4.0/util/tevent_ntstatus.h
1196 %{_includedir}/samba-4.0/util/tevent_unix.h
1197 %{_includedir}/samba-4.0/util/tevent_werror.h
1198 %{_includedir}/samba-4.0/util/time.h
1199 %{_includedir}/samba-4.0/util/xfile.h
1200 %{_includedir}/samba-4.0/util_ldb.h
1201 %{_libdir}/libdcerpc-atsvc.so
1202 %{_libdir}/libdcerpc-binding.so
1203 %{_libdir}/libdcerpc-samr.so
1204 %{_libdir}/libdcerpc.so
1205 %{_libdir}/libgensec.so
1206 %{_libdir}/libndr-krb5pac.so
1207 %{_libdir}/libndr-nbt.so
1208 %{_libdir}/libndr-standard.so
1209 %{_libdir}/libndr.so
1210 %{_libdir}/libnetapi.so
1211 %{_libdir}/libregistry.so
1212 %{_libdir}/libsamba-credentials.so
1213 %{_libdir}/libsamba-hostconfig.so
1214 %{_libdir}/libsamba-policy.so
1215 %{_libdir}/libsamba-util.so
1216 %{_libdir}/libsamdb.so
1217 %{_libdir}/libsmbclient-raw.so
1218 %{_libdir}/libsmbconf.so
1219 %{_libdir}/libtevent-util.so
1220 %{_libdir}/pkgconfig/dcerpc.pc
1221 %{_libdir}/pkgconfig/dcerpc_atsvc.pc
1222 %{_libdir}/pkgconfig/dcerpc_samr.pc
1223 %{_libdir}/pkgconfig/gensec.pc
1224 %{_libdir}/pkgconfig/ndr.pc
1225 %{_libdir}/pkgconfig/ndr_krb5pac.pc
1226 %{_libdir}/pkgconfig/ndr_nbt.pc
1227 %{_libdir}/pkgconfig/ndr_standard.pc
1228 %{_libdir}/pkgconfig/netapi.pc
1229 %{_libdir}/pkgconfig/registry.pc
1230 %{_libdir}/pkgconfig/samba-credentials.pc
1231 %{_libdir}/pkgconfig/samba-hostconfig.pc
1232 %{_libdir}/pkgconfig/samba-policy.pc
1233 %{_libdir}/pkgconfig/samba-util.pc
1234 %{_libdir}/pkgconfig/samdb.pc
1235 %{_libdir}/pkgconfig/smbclient-raw.pc
1236 %{_libdir}/libpdb.so
1237 %{_libdir}/libsmbldap.so
1238
1239 %if %with_dc
1240 %{_includedir}/samba-4.0/dcerpc_server.h
1241 %{_libdir}/libdcerpc-server.so
1242 %{_libdir}/pkgconfig/dcerpc_server.pc
1243 %endif
1244
1245 %if %with_internal_talloc
1246 %{_includedir}/samba-4.0/pytalloc.h
1247 %endif
1248
1249 %if ! %with_libsmbclient
1250 %{_includedir}/samba-4.0/libsmbclient.h
1251 %{_includedir}/samba-4.0/smb_share_modes.h
1252 %endif # ! with_libsmbclient
1253
1254 %if ! %with_libwbclient
1255 %{_includedir}/samba-4.0/wbclient.h
1256 %endif # ! with_libwbclient
1257
1258 ### VFS-GLUSTERFS
1259 %if %{with_vfs_glusterfs}
1260 %files vfs-glusterfs
1261 %{_libdir}/samba/vfs/glusterfs.so
1262 %endif
1263
1264 ### LIBS
1265 %files libs
1266 %defattr(-,root,root)
1267 %{_libdir}/libdcerpc-atsvc.so.*
1268 %{_libdir}/libdcerpc-binding.so.*
1269 %{_libdir}/libdcerpc-samr.so.*
1270 %{_libdir}/libdcerpc.so.*
1271 %{_libdir}/libgensec.so.*
1272 %{_libdir}/libndr-krb5pac.so.*
1273 %{_libdir}/libndr-nbt.so.*
1274 %{_libdir}/libndr-standard.so.*
1275 %{_libdir}/libndr.so.*
1276 %{_libdir}/libnetapi.so.*
1277 %{_libdir}/libregistry.so.*
1278 %{_libdir}/libsamba-credentials.so.*
1279 %{_libdir}/libsamba-hostconfig.so.*
1280 %{_libdir}/libsamba-policy.so.*
1281 %{_libdir}/libsamba-util.so.*
1282 %{_libdir}/libsamdb.so.*
1283 %{_libdir}/libsmbclient-raw.so.*
1284 %{_libdir}/libsmbconf.so.*
1285 %{_libdir}/libtevent-util.so.*
1286 %{_libdir}/libpdb.so.*
1287 %{_libdir}/libsmbldap.so.*
1288
1289 # libraries needed by the public libraries
1290 %dir %{_libdir}/samba
1291 %{_libdir}/samba/libCHARSET3.so
1292 %{_libdir}/samba/libMESSAGING.so
1293 %{_libdir}/samba/libLIBWBCLIENT_OLD.so
1294 %{_libdir}/samba/libaddns.so
1295 %{_libdir}/samba/libads.so
1296 %{_libdir}/samba/libasn1util.so
1297 %{_libdir}/samba/libauth.so
1298 %{_libdir}/samba/libauth4.so
1299 %{_libdir}/samba/libauth_sam_reply.so
1300 %{_libdir}/samba/libauth_unix_token.so
1301 %{_libdir}/samba/libauthkrb5.so
1302 %{_libdir}/samba/libccan.so
1303 %{_libdir}/samba/libcli-ldap-common.so
1304 %{_libdir}/samba/libcli-ldap.so
1305 %{_libdir}/samba/libcli-nbt.so
1306 %{_libdir}/samba/libcli_cldap.so
1307 %{_libdir}/samba/libcli_smb_common.so
1308 %{_libdir}/samba/libcli_spoolss.so
1309 %{_libdir}/samba/libcliauth.so
1310 #%{_libdir}/samba/libclidns.so
1311 %{_libdir}/samba/libcluster.so
1312 %{_libdir}/samba/libcmdline-credentials.so
1313 %{_libdir}/samba/libdbwrap.so
1314 %{_libdir}/samba/libdcerpc-samba.so
1315 %{_libdir}/samba/libdcerpc-samba4.so
1316 %{_libdir}/samba/liberrors.so
1317 %{_libdir}/samba/libevents.so
1318 %{_libdir}/samba/libflag_mapping.so
1319 %{_libdir}/samba/libgpo.so
1320 %{_libdir}/samba/libgse.so
1321 %{_libdir}/samba/libinterfaces.so
1322 %{_libdir}/samba/libkrb5samba.so
1323 %{_libdir}/samba/libldbsamba.so
1324 %{_libdir}/samba/liblibcli_lsa3.so
1325 %{_libdir}/samba/liblibcli_netlogon3.so
1326 %{_libdir}/samba/liblibsmb.so
1327 %{_libdir}/samba/libsmb_transport.so
1328 %{_libdir}/samba/libmsrpc3.so
1329 %{_libdir}/samba/libndr-samba.so
1330 %{_libdir}/samba/libndr-samba4.so
1331 %{_libdir}/samba/libnet_keytab.so
1332 %{_libdir}/samba/libnetif.so
1333 %{_libdir}/samba/libnon_posix_acls.so
1334 %{_libdir}/samba/libnpa_tstream.so
1335 %{_libdir}/samba/libprinting_migrate.so
1336 %{_libdir}/samba/libreplace.so
1337 %{_libdir}/samba/libsamba-modules.so
1338 %{_libdir}/samba/libsamba-net.so
1339 %{_libdir}/samba/libsamba-security.so
1340 %{_libdir}/samba/libsamba-sockets.so
1341 %{_libdir}/samba/libsamba_python.so
1342 %{_libdir}/samba/libsamdb-common.so
1343 %{_libdir}/samba/libsecrets3.so
1344 %{_libdir}/samba/libserver-role.so
1345 %{_libdir}/samba/libshares.so
1346 %{_libdir}/samba/libsamba3-util.so
1347 %{_libdir}/samba/libsmbd_base.so
1348 %{_libdir}/samba/libsmbd_conn.so
1349 %{_libdir}/samba/libsmbd_shim.so
1350 %{_libdir}/samba/libsmbldaphelper.so
1351 %{_libdir}/samba/libsmbpasswdparser.so
1352 %{_libdir}/samba/libsmbregistry.so
1353 %{_libdir}/samba/libtdb-wrap.so
1354 %{_libdir}/samba/libtdb_compat.so
1355 %{_libdir}/samba/libtrusts_util.so
1356 %{_libdir}/samba/libutil_cmdline.so
1357 %{_libdir}/samba/libutil_ntdb.so
1358 %{_libdir}/samba/libutil_reg.so
1359 %{_libdir}/samba/libutil_setid.so
1360 %{_libdir}/samba/libutil_tdb.so
1361 %{_libdir}/samba/libxattr_tdb.so
1362
1363 %if %with_dc
1364 %{_libdir}/samba/libdb-glue.so
1365 %{_libdir}/samba/libHDB_SAMBA4.so
1366 %{_libdir}/samba/libasn1-samba4.so.8
1367 %{_libdir}/samba/libasn1-samba4.so.8.0.0
1368 %{_libdir}/samba/libgssapi-samba4.so.2
1369 %{_libdir}/samba/libgssapi-samba4.so.2.0.0
1370 %{_libdir}/samba/libhcrypto-samba4.so.5
1371 %{_libdir}/samba/libhcrypto-samba4.so.5.0.1
1372 %{_libdir}/samba/libhdb-samba4.so.11
1373 %{_libdir}/samba/libhdb-samba4.so.11.0.2
1374 %{_libdir}/samba/libheimbase-samba4.so.1
1375 %{_libdir}/samba/libheimbase-samba4.so.1.0.0
1376 %{_libdir}/samba/libhx509-samba4.so.5
1377 %{_libdir}/samba/libhx509-samba4.so.5.0.0
1378 %{_libdir}/samba/libkrb5-samba4.so.26
1379 %{_libdir}/samba/libkrb5-samba4.so.26.0.0
1380 %{_libdir}/samba/libroken-samba4.so.19
1381 %{_libdir}/samba/libroken-samba4.so.19.0.1
1382 %{_libdir}/samba/libwind-samba4.so.0
1383 %{_libdir}/samba/libwind-samba4.so.0.0.0
1384 %endif
1385
1386 %if %{with_internal_ldb}
1387 %{_libdir}/samba/libldb.so.1
1388 %{_libdir}/samba/libldb.so.%{ldb_version}
1389 %{_libdir}/samba/libpyldb-util.so.1
1390 %{_libdir}/samba/libpyldb-util.so.%{ldb_version}
1391 %{_mandir}/man3/ldb.3.gz
1392 %endif
1393 %if %{with_internal_talloc}
1394 %{_libdir}/samba/libtalloc.so.2
1395 %{_libdir}/samba/libtalloc.so.%{talloc_version}
1396 %{_libdir}/samba/libpytalloc-util.so.2
1397 %{_libdir}/samba/libpytalloc-util.so.%{talloc_version}
1398 %{_mandir}/man3/talloc.3.gz
1399 %endif
1400 %if %{with_internal_tevent}
1401 %{_libdir}/samba/libtevent.so.0
1402 %{_libdir}/samba/libtevent.so.%{tevent_version}
1403 %endif
1404 %if %{with_internal_tdb}
1405 %{_libdir}/samba/libtdb.so.1
1406 %{_libdir}/samba/libtdb.so.%{tdb_version}
1407 %endif
1408 %if %{with_internal_ntdb}
1409 %{_libdir}/samba/libntdb.so.0
1410 %{_libdir}/samba/libntdb.so.%{ntdb_version}
1411 %endif
1412
1413 %if ! %with_libsmbclient
1414 %{_libdir}/samba/libsmbclient.so.*
1415 %{_libdir}/samba/libsmbsharemodes.so.*
1416 %{_mandir}/man7/libsmbclient.7*
1417 %endif # ! with_libsmbclient
1418
1419 %if ! %with_libwbclient
1420 %{_libdir}/samba/libwbclient.so.*
1421 %{_libdir}/samba/libwinbind-client.so
1422 %endif # ! with_libwbclient
1423
1424 ### LIBSMBCLIENT
1425 %if %with_libsmbclient
1426 %files -n libsmbclient
1427 %defattr(-,root,root)
1428 %{_libdir}/libsmbclient.so.*
1429 %{_libdir}/libsmbsharemodes.so.*
1430
1431 ### LIBSMBCLIENT-DEVEL
1432 %files -n libsmbclient-devel
1433 %defattr(-,root,root)
1434 %{_includedir}/samba-4.0/libsmbclient.h
1435 %{_includedir}/samba-4.0/smb_share_modes.h
1436 %{_libdir}/libsmbclient.so
1437 %{_libdir}/libsmbsharemodes.so
1438 %{_libdir}/pkgconfig/smbclient.pc
1439 %{_libdir}/pkgconfig/smbsharemodes.pc
1440 %{_mandir}/man7/libsmbclient.7*
1441 %endif # with_libsmbclient
1442
1443 ### LIBWBCLIENT
1444 %if %with_libwbclient
1445 %files -n libwbclient
1446 %defattr(-,root,root)
1447 %{_libdir}/libwbclient.so.*
1448 %{_libdir}/samba/libwinbind-client.so
1449
1450 ### LIBWBCLIENT-DEVEL
1451 %files -n libwbclient-devel
1452 %defattr(-,root,root)
1453 %{_includedir}/samba-4.0/wbclient.h
1454 %{_libdir}/libwbclient.so
1455 %{_libdir}/pkgconfig/wbclient.pc
1456 %endif # with_libwbclient
1457
1458 ### PIDL
1459 %files pidl
1460 %defattr(-,root,root,-)
1461 %{perl_vendorlib}/Parse/Pidl*
1462 %{_mandir}/man1/pidl*
1463 %{_mandir}/man3/Parse::Pidl*
1464 %attr(755,root,root) %{_bindir}/pidl
1465
1466 ### PYTHON
1467 %files python
1468 %defattr(-,root,root,-)
1469 %{python_sitearch}/*
1470
1471 ### TEST
1472 %files test
1473 %defattr(-,root,root)
1474 %{_bindir}/gentest
1475 %{_bindir}/locktest
1476 %{_bindir}/masktest
1477 %{_bindir}/ndrdump
1478 %{_bindir}/smbtorture
1479 %{_libdir}/libtorture.so.*
1480 %{_libdir}/samba/libsubunit.so
1481 %if %with_dc
1482 %{_libdir}/samba/libdlz_bind9_for_torture.so
1483 %else
1484 %{_libdir}/samba/libdsdb-module.so
1485 %endif
1486 %{_mandir}/man1/gentest.1*
1487 %{_mandir}/man1/locktest.1*
1488 %{_mandir}/man1/masktest.1*
1489 %{_mandir}/man1/ndrdump.1*
1490 %{_mandir}/man1/smbtorture.1*
1491 %{_mandir}/man1/vfstest.1*
1492
1493 %if %{with testsuite}
1494 # files to ignore in testsuite mode
1495 %{_libdir}/samba/libnss_wrapper.so
1496 %{_libdir}/samba/libsocket_wrapper.so
1497 %{_libdir}/samba/libuid_wrapper.so
1498 %endif
1499
1500 ### TEST-DEVEL
1501 %files test-devel
1502 %defattr(-,root,root)
1503 %{_includedir}/samba-4.0/torture.h
1504 %{_libdir}/libtorture.so
1505 %{_libdir}/pkgconfig/torture.pc
1506
1507 ### WINBIND
1508 %files winbind
1509 %defattr(-,root,root)
1510 #%{_bindir}/wbinfo3
1511 %{_libdir}/samba/idmap
1512 %{_libdir}/samba/nss_info
1513 %{_libdir}/samba/libnss_info.so
1514 %{_libdir}/samba/libidmap.so
1515 %{_sbindir}/winbindd
1516 %attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
1517 %{_unitdir}/winbind.service
1518 %{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
1519 %{_mandir}/man8/winbindd.8*
1520 %{_mandir}/man8/idmap_*.8*
1521
1522 ### WINBIND-CLIENTS
1523 %files winbind-clients
1524 %defattr(-,root,root)
1525 %{_bindir}/ntlm_auth
1526 %{_bindir}/wbinfo
1527 %{_mandir}/man1/ntlm_auth.1.gz
1528 %{_mandir}/man1/wbinfo.1*
1529
1530 ### WINBIND-KRB5-LOCATOR
1531 %files winbind-krb5-locator
1532 %defattr(-,root,root)
1533 %ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
1534 %{_libdir}/winbind_krb5_locator.so
1535 %{_mandir}/man7/winbind_krb5_locator.7*
1536
1537 ### WINBIND-MODULES
1538 %files winbind-modules
1539 %defattr(-,root,root)
1540 %{_libdir}/libnss_winbind.so*
1541 %{_libdir}/libnss_wins.so*
1542 %{_libdir}/security/pam_winbind.so
1543 %config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
1544 %{_mandir}/man5/pam_winbind.conf.5*
1545 %{_mandir}/man8/pam_winbind.8*
1546
1547 %changelog
1548 * Wed Dec 10 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.3-2
1549 - resolves: #1019469 - Fix winbind debug message NULL pointer derreference.
1550
1551 * Mon Dec 09 2013 - Andreas Schneider <asn@redhat.com> - 4.1.3-1
1552 - Update to Samba 4.1.3.
1553 - resolves: #1039454 - CVE-2013-4408.
1554 - resolves: #1039500 - CVE-2012-6150.
1555
1556 * Mon Nov 25 2013 - Andreas Schneider <asn@redhat.com> - 4.1.2-1
1557 - Update to Samba 4.1.2.
1558
1559 * Mon Nov 18 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-3
1560 - resolves: #948509 - Fix manpage correctness.
1561
1562 * Fri Nov 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-2
1563 - related: #884169 - Fix strict aliasing warnings.
1564
1565 * Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-1
1566 - resolves: #1024544 - Fix CVE-2013-4475.
1567 - Update to Samba 4.1.1.
1568
1569 * Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-5
1570 - related: #884169 - Fix the upgrade path.
1571
1572 * Wed Oct 30 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-4
1573 - related: #884169 - Add direct dependency to samba-libs in the
1574                      glusterfs package.
1575 - resolves: #996567 - Fix userPrincipalName composition.
1576 - related: #884169 - Fix memset call with zero length in in ntdb.
1577
1578 * Fri Oct 18 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-3
1579 - resolves: #1020329 - Build glusterfs VFS plguin.
1580
1581 * Tue Oct 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-2
1582 - resolves: #1018856 - Fix installation of pam_winbind after upgrade.
1583 - related: #1010722 - Split out a samba-winbind-modules package.
1584 - related: #985609
1585
1586 * Fri Oct 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-1
1587 - related: #985609 - Update to Samba 4.1.0.
1588
1589 * Tue Oct 01 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.8
1590 - related: #985609 - Update to Samba 4.1.0rc4.
1591 - resolves: #1010722 - Split out a samba-winbind-modules package.
1592
1593 * Wed Sep 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.7
1594 - related: #985609 - Update to Samba 4.1.0rc3.
1595 - resolves: #1005422 - Add support for KEYRING ccache type in pam_winbindd.
1596
1597 * Wed Sep 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.6
1598 - resolves: #717484 - Enable profiling data support.
1599
1600 * Thu Aug 22 2013 - Guenther Deschner <gdeschner@redhat.com> - 2:4.1.0-0.5
1601 - resolves: #996160 - Fix winbind with trusted domains.
1602
1603 * Wed Aug 14 2013 - Andreas Schneider <asn@redhat.com> 2:4.1.0-0.4
1604 - resolves: #996160 - Fix winbind nbt name lookup segfault.
1605
1606 * Mon Aug 12 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.3
1607 - related: #985609 - Update to Samba 4.1.0rc2.
1608
1609 * Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 2:4.1.0-0.2.rc1.1
1610 - Perl 5.18 rebuild
1611
1612 * Wed Jul 24 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.2
1613 - resolves: #985985 - Fix file conflict between samba and wine.
1614 - resolves: #985107 - Add support for new default location for Kerberos
1615                       credential caches.
1616
1617 * Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 2:4.1.0-0.1.rc1.1
1618 - Perl 5.18 rebuild
1619
1620 * Wed Jul 17 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.1
1621 - Update to Samba 4.1.0rc1.
1622
1623 * Mon Jul 15 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-2
1624 - resolves: #972692 - Build with PIE and full RELRO.
1625 - resolves: #884169 - Add explicit dependencies suggested by rpmdiff.
1626 - resolves: #981033 - Local user's krb5cc deleted by winbind.
1627 - resolves: #984331 - Fix samba-common tmpfiles configuration file in wrong
1628                       directory.
1629
1630 * Wed Jul 03 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-1
1631 - Update to Samba 4.0.7.
1632
1633 * Fri Jun 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-3
1634 - Add UPN enumeration to passdb internal API (bso #9779).
1635
1636 * Wed May 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-2
1637 - resolves: #966130 - Fix build with MIT Kerberos.
1638 - List vfs modules in spec file.
1639
1640 * Tue May 21 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-1
1641 - Update to Samba 4.0.6.
1642 - Remove SWAT.
1643
1644 * Wed Apr 10 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.5-1
1645 - Update to Samba 4.0.5.
1646 - Add UPN enumeration to passdb internal API (bso #9779).
1647 - resolves: #928947 - samba-doc is obsolete now.
1648 - resolves: #948606 - LogRotate should be optional, and not a hard "Requires".
1649
1650 * Fri Mar 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-3
1651 - resolves: #919405 - Fix and improve large_readx handling for broken clients.
1652 - resolves: #924525 - Don't use waf caching.
1653
1654 * Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-2
1655 - resolves: #923765 - Improve packaging of README files.
1656
1657 * Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-1
1658 - Update to Samba 4.0.4.
1659
1660 * Mon Mar 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-4
1661 - resolves: #919333 - Create /run/samba too.
1662
1663 * Mon Mar 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-3
1664 - Fix the cache dir to be /var/lib/samba to support upgrades.
1665
1666 * Thu Feb 14 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-2
1667 - resolves: #907915 - libreplace.so => not found
1668
1669 * Thu Feb 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-1
1670 - Update to Samba 4.0.3.
1671 - resolves: #907544 - Add unowned directory /usr/lib64/samba.
1672 - resolves: #906517 - Fix pidl code generation with gcc 4.8.
1673 - resolves: #908353 - Fix passdb backend ldapsam as module.
1674
1675 * Wed Jan 30 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.2-1
1676 - Update to Samba 4.0.2.
1677 - Fixes CVE-2013-0213.
1678 - Fixes CVE-2013-0214.
1679 - resolves: #906002
1680 - resolves: #905700
1681 - resolves: #905704
1682 - Fix conn->share_access which is reset between user switches.
1683 - resolves: #903806
1684 - Add missing example and make sure we don't introduce perl dependencies.
1685 - resolves: #639470
1686
1687 * Wed Jan 16 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.1-1
1688 - Update to Samba 4.0.1.
1689 - Fixes CVE-2013-0172.
1690
1691 * Mon Dec 17 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-174
1692 - Fix typo in winbind-krb-locator post uninstall script.
1693
1694 * Tue Dec 11 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-173
1695 - Update to Samba 4.0.0.
1696
1697 * Thu Dec 06 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-171.rc6
1698 - Fix typo in winbind-krb-locator post uninstall script.
1699
1700 * Tue Dec 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-170.rc6
1701 - Update to Samba 4.0.0rc6.
1702 - Add /etc/pam.d/samba for swat to work correctly.
1703 - resolves #882700
1704
1705 * Fri Nov 23 2012 Guenther Deschner <gdeschner@redhat.com> - 2:4.0.0-169.rc5
1706 - Make sure ncacn_ip_tcp client code looks for NBT_NAME_SERVER name types.
1707
1708 * Thu Nov 15 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-168.rc5
1709 - Reduce dependencies of samba-devel and create samba-test-devel package.
1710
1711 * Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-167.rc5
1712 - Use workaround for winbind default domain only when set.
1713 - Build with old ctdb support.
1714
1715 * Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-166.rc5
1716 - Update to Samba 4.0.0rc5.
1717
1718 * Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-165.rc4
1719 - Fix library dependencies of libnetapi.
1720
1721 * Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-164.rc4
1722 - resolves: #872818 - Fix perl dependencies.
1723
1724 * Tue Oct 30 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-163.rc4
1725 - Update to Samba 4.0.0rc4.
1726
1727 * Mon Oct 29 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-162.rc3
1728 - resolves: #870630 - Fix scriptlets interpeting a comment as argument.
1729
1730 * Fri Oct 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-161.rc3
1731 - Add missing Requries for python modules.
1732 - Add NetworkManager dispatcher script for winbind.
1733
1734 * Fri Oct 19 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-160.rc3
1735 - resolves: #867893 - Move /var/log/samba to samba-common package for
1736                       winbind which requires it.
1737
1738 * Thu Oct 18 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-159.rc3
1739 - Compile default auth methods into smbd.
1740
1741 * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-158.rc3
1742 - Move pam_winbind.conf and the manpages to the right package.
1743
1744 * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-157.rc3
1745 * resolves: #866959 - Build auth_builtin as static module.
1746
1747 * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-156.rc3
1748 - Update systemd Requires to reflect latest packaging guidelines.
1749
1750 * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-155.rc3
1751 - Add back the AES patches which didn't make it in rc3.
1752
1753 * Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-154.rc3
1754 - Update to 4.0.0rc3.
1755 - resolves: #805562 - Unable to share print queues.
1756 - resolves: #863388 - Unable to reload smbd configuration with systemctl.
1757
1758 * Wed Oct 10 2012 - Alexander Bokovoy <abokovoy@redhat.com> - 2:4.0.0-153.rc2
1759 - Use alternatives to configure winbind_krb5_locator.so
1760 - Fix Requires for winbind.
1761
1762 * Thu Oct 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-152.rc2
1763 - Add kerberos AES support.
1764 - Fix printing initialization.
1765
1766 * Tue Oct 02 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-151.rc2
1767 - Update to 4.0.0rc2.
1768
1769 * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-150.rc1
1770 - Fix Obsoletes/Provides for update from samba4.
1771 - Bump release number to be bigger than samba4.
1772
1773 * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-96.rc1
1774 - Package smbprint again.
1775
1776 * Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-95.rc1
1777 - Update to 4.0.0rc1.
1778
1779 * Mon Aug 20 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.7-94.2
1780 - Update to 3.6.7
1781
1782 * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.6.6-93.2
1783 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1784
1785 * Thu Jul 19 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-93
1786 - Fix printing tdb upgrade for 3.6.6
1787 - resolves: #841609
1788
1789 * Sun Jul 15 2012 Ville Skyttä <ville.skytta@iki.fi> - 2:3.6.6-92
1790 - Call ldconfig at libwbclient and -winbind-clients post(un)install time.
1791 - Fix empty localization files, use %%find_lang to find and %%lang-mark them.
1792 - Escape macros in %%changelog.
1793 - Fix source tarball URL.
1794
1795 * Tue Jun 26 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-91
1796 - Update to 3.6.6
1797
1798 * Thu Jun 21 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-90
1799 - Fix ldonfig.
1800 - Require systemd for samba-common package.
1801 - resolves: #829197
1802
1803 * Mon Jun 18 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-89
1804 - Fix usrmove paths.
1805 - resolves: #829197
1806
1807 * Tue May 15 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-88
1808 - Move tmpfiles.d config to common package as it is needed for smbd and
1809   winbind.
1810 - Make sure tmpfiles get created after installation.
1811
1812 * Wed May 09 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.5-87
1813 - Correctly use system iniparser library
1814
1815 * Fri May 04 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-86
1816 - Bump Epoch to fix a problem with a Samba4 update in testing.
1817
1818 * Mon Apr 30 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.5-85
1819 - Security Release, fixes CVE-2012-2111
1820 - resolves: #817551
1821
1822 * Mon Apr 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.4-84
1823 - Fix creation of /var/run/samba.
1824 - resolves: #751625
1825
1826 * Fri Apr 20 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.4-83
1827 - Avoid private krb5_locate_kdc usage
1828 - resolves: #754783
1829
1830 * Thu Apr 12 2012 Jon Ciesla <limburgher@gmail.com> - 1:3.6.4-82
1831 - Update to 3.6.4
1832 - Fixes CVE-2012-1182
1833
1834 * Mon Mar 19 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-81
1835 - Fix provides for of libwclient-devel for samba-winbind-devel.
1836
1837 * Thu Feb 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-80
1838 - Add commented out 'max protocol' to the default config.
1839
1840 * Mon Feb 13 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-79
1841 - Create a libwbclient package.
1842 - Replace winbind-devel with libwbclient-devel package.
1843
1844 * Mon Jan 30 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-78
1845 - Update to 3.6.3
1846 - Fixes CVE-2012-0817
1847
1848 * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.1-77.1
1849 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1850
1851 * Mon Dec 05 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-77
1852 - Fix winbind cache upgrade.
1853 - resolves: #760137
1854
1855 * Fri Nov 18 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-76
1856 - Fix piddir to match with systemd files.
1857 - Fix crash bug in the debug system.
1858 - resolves: #754525
1859
1860 * Fri Nov 04 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-75
1861 - Fix systemd dependencies
1862 - resolves: #751397
1863
1864 * Wed Oct 26 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-74
1865 - Update to 3.6.1
1866
1867 * Tue Oct 04 2011 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.0-73
1868 - Fix nmbd startup
1869 - resolves: #741630
1870
1871 * Tue Sep 20 2011 Tom Callaway <spot@fedoraproject.org> - 1:3.6.0-72
1872 - convert to systemd
1873 - restore epoch from f15
1874
1875 * Sat Aug 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0-71
1876 - Update to 3.6.0 final
1877
1878 * Sun Jul 31 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc3-70
1879 - Update to 3.6.0rc3
1880
1881 * Tue Jun 07 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc2-69
1882 - Update to 3.6.0rc2
1883
1884 * Tue May 17 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc1-68
1885 - Update to 3.6.0rc1
1886
1887 * Wed Apr 27 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre3-67
1888 - Update to 3.6.0pre3
1889
1890 * Wed Apr 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre2-66
1891 - Update to 3.6.0pre2
1892
1893 * Fri Mar 11 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-65
1894 - Enable quota support
1895
1896 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.6.0-64pre1.1
1897 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1898
1899 * Wed Nov 24 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-64
1900 - Add %%ghost entry for /var/run using tmpfs
1901 - resolves: #656685
1902
1903 * Thu Aug 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-63
1904 - Put winbind krb5 locator plugin into a separate rpm
1905 - resolves: #627181
1906
1907 * Tue Aug 03 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-62
1908 - Update to 3.6.0pre1
1909
1910 * Wed Jun 23 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.4-61
1911 - Update to 3.5.4
1912
1913 * Wed May 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.3-60
1914 - Update to 3.5.3
1915 - Make sure nmb and smb initscripts return LSB compliant return codes
1916 - Fix winbind over ipv6
1917
1918 * Wed Apr 07 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.2-59
1919 - Update to 3.5.2
1920
1921 * Mon Mar 08 2010 Simo Sorce <ssorce@redhat.com> - 3.5.1-58
1922 - Security update to 3.5.1
1923 - Fixes CVE-2010-0728
1924
1925 * Mon Mar 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-57
1926 - Remove cifs.upcall and mount.cifs entirely
1927
1928 * Mon Mar 01 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-56
1929 - Update to 3.5.0
1930
1931 * Fri Feb 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc3-55
1932 - Update to 3.5.0rc3
1933
1934 * Tue Jan 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc2-54
1935 - Update to 3.5.0rc2
1936
1937 * Fri Jan 15 2010 Jeff Layton <jlayton@redhat.com> - 3.5.0rc1-53
1938 - separate out CIFS tools into cifs-utils package
1939
1940 * Fri Jan 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc1-52
1941 - Update to 3.5.0rc1
1942
1943 * Tue Dec 15 2009 Guenther Deschner <gdeschner@redhat.com> - 3.5.0pre2-51
1944 - Update to 3.5.0pre2
1945 - Remove umount.cifs
1946
1947 * Wed Nov 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-49
1948 - Various updates to inline documentation in default smb.conf file
1949 - resolves: #483703
1950
1951 * Thu Oct 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-48
1952 - Update to 3.4.3
1953
1954 * Fri Oct 09 2009 Simo Sorce <ssorce@redhat.com> - 3.4.2-47
1955 - Spec file cleanup
1956 - Fix sources upstream location
1957 - Remove conditionals to build talloc and tdb, now they are completely indepent
1958   packages in Fedora
1959 - Add defattr() where missing
1960 - Turn all tabs into 4 spaces
1961 - Remove unused migration script
1962 - Split winbind-clients out of main winbind package to avoid multilib to include
1963   huge packages for no good reason
1964
1965 * Thu Oct 01 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.2-0.46
1966 - Update to 3.4.2
1967 - Security Release, fixes CVE-2009-2813, CVE-2009-2948 and CVE-2009-2906
1968
1969 * Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 3.4.1-0.45
1970 - Use password-auth common PAM configuration instead of system-auth
1971
1972 * Wed Sep 09 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.1-0.44
1973 - Update to 3.4.1
1974
1975 * Thu Aug 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.43
1976 - Fix cli_read()
1977 - resolves: #516165
1978
1979 * Thu Aug 06 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.42
1980 - Fix required talloc version number
1981 - resolves: #516086
1982
1983 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.4.0-0.41.1
1984 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1985
1986 * Fri Jul 17 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.41
1987 - Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX)
1988 - Specify required talloc and tdb version for BuildRequires
1989
1990 * Fri Jul 03 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.40
1991 - Update to 3.4.0
1992
1993 * Fri Jun 19 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0rc1-0.39
1994 - Update to 3.4.0rc1
1995
1996 * Mon Jun 08 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre2-0.38
1997 - Update to 3.4.0pre2
1998
1999 * Thu Apr 30 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre1-0.37
2000 - Update to 3.4.0pre1
2001
2002 * Wed Apr 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.4-0.36
2003 - Update to 3.3.4
2004
2005 * Mon Apr 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.35
2006 - Enable build of idmap_tdb2 for clustered setups
2007
2008 * Wed Apr  1 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.34
2009 - Update to 3.3.3
2010
2011 * Thu Mar 26 2009 Simo Sorce <ssorce@redhat.com> - 3.3.2-0.33
2012 - Fix nmbd init script nmbd reload was causing smbd not nmbd to reload the
2013   configuration
2014 - Fix upstream bug 6224, nmbd was waiting 5+ minutes before running elections on
2015   startup, causing your own machine not to show up in the network for 5 minutes
2016   if it was the only client in that workgroup (fix committed upstream)
2017
2018 * Thu Mar 12 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.2-0.31
2019 - Update to 3.3.2
2020 - resolves: #489547
2021
2022 * Thu Mar  5 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.30
2023 - Add libcap-devel to requires list (resolves: #488559)
2024
2025 * Tue Mar  3 2009 Simo Sorce <ssorce@redhat.com> - 3.3.1-0.29
2026 - Make the talloc and ldb packages optionsl and disable their build within
2027   the samba3 package, they are now built as part of the samba4 package
2028   until they will both be released as independent packages.
2029
2030 * Wed Feb 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.28
2031 - Enable cluster support
2032
2033 * Tue Feb 24 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.27
2034 - Update to 3.3.1
2035
2036 * Sat Feb 21 2009 Simo Sorce <ssorce@redhat.com> - 3.3.0-0.26
2037 - Rename ldb* tools to ldb3* to avoid conflicts with newer ldb releases
2038
2039 * Tue Feb  3 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0.25
2040 - Update to 3.3.0 final
2041 - Add upstream fix for ldap connections to AD (Bug #6073)
2042 - Remove bogus perl dependencies (resolves: #473051)
2043
2044 * Fri Nov 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0rc1.24
2045 - Update to 3.3.0rc1
2046
2047 * Thu Nov 27 2008 Simo Sorce <ssorce@redhat.com> - 3.2.5-0.23
2048 - Security Release, fixes CVE-2008-4314
2049
2050 * Thu Sep 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.4-0.22
2051 - Update to 3.2.4
2052 - resolves: #456889
2053 - move cifs.upcall to /usr/sbin
2054
2055 * Wed Aug 27 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.3-0.21
2056 - Security fix for CVE-2008-3789
2057
2058 * Mon Aug 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.2-0.20
2059 - Update to 3.2.2
2060
2061 * Mon Aug 11 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.19
2062 - Add fix for CUPS problem, fixes bug #453951
2063
2064 * Wed Aug  6 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.18
2065 - Update to 3.2.1
2066
2067 * Tue Jul  1 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-2.17
2068 - Update to 3.2.0 final
2069 - resolves: #452622
2070
2071 * Tue Jun 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc2.16
2072 - Update to 3.2.0rc2
2073 - resolves: #449522
2074 - resolves: #448107
2075
2076 * Fri May 30 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.15
2077 - Fix security=server
2078 - resolves: #449038, #449039
2079
2080 * Wed May 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.14
2081 - Add fix for CVE-2008-1105
2082 - resolves: #446724
2083
2084 * Fri May 23 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.13
2085 - Update to 3.2.0rc1
2086
2087 * Wed May 21 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-1.pre3.12
2088 - make it possible to print against Vista and XP SP3 as servers
2089 - resolves: #439154
2090
2091 * Thu May 15 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.11
2092 - Add "net ads join createcomputer=ou1/ou2/ou3" fix (BZO #5465)
2093
2094 * Fri May 09 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.10
2095 - Add smbclient fix (BZO #5452)
2096
2097 * Fri Apr 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.9
2098 - Update to 3.2.0pre3
2099
2100 * Tue Mar 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.8
2101 - Add fixes for libsmbclient and support for r/o relocations
2102
2103 * Mon Mar 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.7
2104 - Fix libnetconf, libnetapi and msrpc DSSETUP call
2105
2106 * Thu Mar 06 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.6
2107 - Create separate packages for samba-winbind and samba-winbind-devel
2108 - Add cifs.spnego helper
2109
2110 * Wed Mar 05 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.3
2111 - Update to 3.2.0pre2
2112 - Add talloc and tdb lib and devel packages
2113 - Add domainjoin-gui package
2114
2115 * Fri Feb 22 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-0.pre1.3
2116 - Try to fix GCC 4.3 build
2117 - Add --with-dnsupdate flag and also make sure other flags are required just to
2118   be sure the features are included without relying on autodetection to be
2119   successful
2120
2121 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:3.2.0-1.pre1.2
2122 - Autorebuild for GCC 4.3
2123
2124 * Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 3.2.0-0.pre1.2
2125 - Rebuild for openldap bump
2126
2127 * Thu Oct 18 2007 Guenther Deschner <gdeschner@redhat.com> 3.2.0-0.pre1.1.fc9
2128 - 32/64bit padding fix (affects multilib installations)
2129
2130 * Mon Oct 8 2007 Simo Sorce <ssorce@redhat.com> 3.2.0-0.pre1.fc9
2131 - New major relase, minor switched from 0 to 2
2132 - License change, the code is now GPLv3+
2133 - Numerous improvements and bugfixes included
2134 - package libsmbsharemodes too
2135 - remove smbldap-tools as they are already packaged separately in Fedora
2136 - Fix bug 245506 
2137
2138 * Tue Oct 2 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-1.fc8
2139 - rebuild with AD DNS Update support
2140
2141 * Tue Sep 11 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-0.fc8
2142 - upgrade to the latest upstream realease
2143 - includes security fixes released today in 3.0.26
2144
2145 * Fri Aug 24 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-4.fc8
2146 - add fix reported upstream for heavy idmap_ldap memleak
2147
2148 * Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-3.fc8
2149 - fix a few places were "open" is used an interfere with the new glibc
2150
2151 * Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-2.fc8
2152 - remove old source
2153 - add patch to fix samba bugzilla 4772
2154
2155 * Tue Aug 21 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.25c-0.fc8
2156 - update to 3.0.25c
2157
2158 * Fri Jun 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-3.fc8
2159 - handle cases defined in #243766
2160
2161 * Tue Jun 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-2.fc8
2162 - update to 3.0.25b
2163 - better error codes for init scripts: #244823
2164
2165 * Tue May 29 2007 GĂĽnther Deschner <gdeschner@redhat.com>
2166 - fix pam_smbpass patch.
2167
2168 * Fri May 25 2007 Simo Sorce <ssorce@redhat.com>
2169 - update to 3.0.25a as it contains many fixes
2170 - add a fix for pam_smbpass made by GĂĽnther but committed upstream after 3.0.25a was cut.
2171
2172 * Mon May 14 2007 Simo Sorce <ssorce@redhat.com>
2173 - final 3.0.25
2174 - includes security fixes for CVE-2007-2444,CVE-2007-2446,CVE-2007-2447
2175
2176 * Mon Apr 30 2007 GĂĽnther Deschner <gdeschner@redhat.com>
2177 - move to 3.0.25rc3
2178
2179 * Thu Apr 19 2007 Simo Sorce <ssorce@redhat.com>
2180 - fixes in the spec file
2181 - moved to 3.0.25rc1
2182 - addedd patches (merged upstream so they will be removed in 3.0.25rc2)
2183
2184 * Wed Apr 4 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-12.fc7
2185 - fixes in smb.conf
2186 - advice in smb.conf to put scripts in /var/lib/samba/scripts
2187 - create /var/lib/samba/scripts so that selinux can be happy
2188 - fix Vista problems with msdfs errors
2189
2190 * Tue Apr 03 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-11.fc7
2191 - enable PAM and NSS dlopen checks during build
2192 - fix unresolved symbols in libnss_wins.so (bug #198230)
2193
2194 * Fri Mar 30 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-10.fc7
2195 - set passdb backend = tdbsam as default in smb.conf
2196 - remove samba-docs dependency from swat, that was a mistake
2197 - put back COPYING and other files in samba-common
2198 - put examples in samba not in samba-docs
2199 - leave only stuff under docs/ in samba-doc
2200
2201 * Thu Mar 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-9.fc7
2202 - integrate most of merge review proposed changes (bug #226387)
2203 - remove libsmbclient-devel-static and simply stop shipping the
2204   static version of smbclient as it seem this is deprecated and
2205   actively discouraged
2206
2207 * Wed Mar 28 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-8.fc7
2208 - fix for bug #176649
2209
2210 * Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com>
2211 - remove patch for bug 106483 as it introduces a new bug that prevents
2212   the use of a credentials file with the smbclient tar command
2213 - move the samba private dir from being the same as the config dir
2214   (/etc/samba) to /var/lib/samba/private
2215
2216 * Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-7.fc7
2217 - make winbindd start earlier in the init process, at the same time
2218   ypbind is usually started as well
2219 - add a sepoarate init script for nmbd called nmb, we need to be able
2220   to restart nmbd without dropping al smbd connections unnecessarily
2221
2222 * Fri Mar 23 2007 Simo Sorce <ssorce@redhat.com>
2223 - add samba.schema to /etc/openldap/schema
2224
2225 * Thu Mar 22 2007 Florian La Roche <laroche@redhat.com>
2226 - adjust the Requires: for the scripts, add "chkconfig --add smb"
2227
2228 * Tue Mar 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-6.fc7
2229 - do not put comments inline on smb.conf options, they may be read
2230   as part of the value (for example log files names)
2231
2232 * Mon Mar 19 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-5.fc7
2233 - actually use the correct samba.pamd file not the old samba.pamd.stack file
2234 - fix logifles and use upstream convention of log.* instead of our old *.log
2235   Winbindd creates its own log.* files anyway so we will be more consistent
2236 - install our own (enhanced) default smb.conf file
2237 - Fix pam_winbind acct_mgmt PAM result code (prevented local users from
2238   logging in). Fixed by Guenther.
2239 - move some files from samba to samba-common as they are used with winbindd
2240   as well
2241
2242 * Fri Mar 16 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-4.fc7
2243 - fix arch macro which reported Vista to Samba clients.
2244
2245 * Thu Mar 15 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-3.fc7
2246 - Directories reorg, tdb files must go to /var/lib, not
2247   to /var/cache, add migration script in %%post common
2248 - Split out libsmbclient, devel and doc packages
2249 - Remove libmsrpc.[h|so] for now as they are not really usable
2250 - Remove kill -HUP from rotate, samba use -HUP for other things
2251   noit to reopen logs
2252
2253 * Tue Feb 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-2.fc7
2254 - New upstream release
2255 - Fix packaging issue wrt idmap modules used only by smbd
2256 - Addedd Vista Patchset for compatibility with Windows Vista
2257 - Change default of "msdfs root", it seem to cause problems with
2258   some applications and it has been proposed to change it for
2259   3.0.25 upstream
2260
2261 * Fri Sep 1 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23c-2
2262 - New upstream release.
2263
2264 * Tue Aug 8 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23b-2
2265 - New upstream release.
2266
2267 * Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-3
2268 - Fix the -logfiles patch to close
2269   bz#199607 Samba compiled with wrong log path.
2270   bz#199206 smb.conf has incorrect log file path
2271
2272 * Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-2
2273 - Upgrade to new upstream 3.0.23a
2274 - include upstream samr_alias patch
2275
2276 * Tue Jul 11 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-2
2277 - New upstream release.
2278 - Use modified filter-requires-samba.sh from packaging/RHEL/setup/
2279   to get rid of bogus dependency on perl(Unicode::MapUTF8)
2280 - Update the -logfiles and -smb.conf patches to work with 3.0.23
2281
2282 * Thu Jul 6 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-0.RC3
2283 - New upstream RC release.
2284 - Update the -logfiles, and -passwd patches for
2285   3.0.23rc3
2286 - Include the change to smb.init from Bastien Nocera <bnocera@redhat.com>)
2287   to close
2288   bz#182560 Wrong retval for initscript when smbd is dead
2289 - Update this spec file to build with 3.0.23rc3
2290 - Remove the -install.mount.smbfs patch, since we don't install
2291   mount.smbfs any more.
2292
2293 * Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 2.0.21c-3
2294 - rebuilt with new gnutls
2295
2296 * Fri Mar 17 2006 Jay Fenlason <fenlason@redhat.com> 2.0.21c-2
2297 - New upstream version.
2298
2299 * Mon Feb 13 2006 Jay Fenlason <fenlason@redhat.com> 3.0.21b-2
2300 - New upstream version.
2301 - Since the rawhide kernel has dropped support for smbfs, remove smbmount
2302   and smbumount.  Users should use mount.cifs instead.
2303 - Upgrade to 3.0.21b
2304
2305 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:3.0.20b-2.1.1
2306 - bump again for double-long bug on ppc(64)
2307
2308 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
2309 - rebuilt
2310
2311 * Sun Nov 13 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20b-2
2312 - turn on -DLDAP_DEPRECATED to allow access to ldap functions that have
2313   been depricated in 2.3.11, but which don't have well-documented
2314   replacements (ldap_simple_bind_s(), for example).
2315 - Upgrade to 3.0.20b, which includes all the previous upstream patches.
2316 - Updated the -warnings patch for 3.0.20a.
2317 - Include  --with-shared-modules=idmap_ad,idmap_rid to close
2318   bz#156810 --with-shared-modules=idmap_ad,idmap_rid
2319 - Include the new samba.pamd from Tomas Mraz (tmraz@redhat.com) to close
2320   bz#170259 pam_stack is deprecated
2321
2322 * Sun Nov 13 2005 Warren Togami <wtogami@redhat.com> 3.0.20-3
2323 - epochs from deps, req exact release
2324 - rebuild against new openssl
2325
2326 * Mon Aug 22 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20-2
2327 - New upstream release
2328   Includes five upstream patches -bug3010_v1, -groupname_enumeration_v3,
2329     -regcreatekey_winxp_v1, -usrmgr_groups_v1, and -winbindd_v1
2330   This obsoletes the -pie and -delim patches
2331   the -warning and -gcc4 patches are obsolete too
2332   The -man, -passwd, and -smbspool patches were updated to match 3.0.20pre1
2333   Also, the -quoting patch was implemented differently upstream
2334   There is now a umount.cifs executable and manpage
2335   We run autogen.sh as part of the build phase
2336   The testprns command is now gone
2337   libsmbclient now has a man page
2338 - Include -bug106483 patch to close
2339   bz#106483 smbclient: -N negates the provided password, despite documentation
2340 - Added the -warnings patch to quiet some compiler warnings.
2341 - Removed many obsolete patches from CVS.
2342
2343 * Mon May 2 2005 Jay Fenlason <fenlason@redhat.com> 3.0.14a-2
2344 - New upstream release.
2345 - the -64bit-timestamps, -clitar, -establish_trust, user_rights_v1,
2346   winbind_find_dc_v2 patches are now obsolete.
2347
2348 * Thu Apr 7 2005 Jay Fenlason <fenlason@redhat.com> 3.0.13-2
2349 - New upstream release
2350 - add my -quoting patch, to fix swat with strings that contain
2351   html meta-characters, and to use correct quote characters in
2352   lists, closing bz#134310
2353 - include the upstream winbindd_2k3sp1 patch
2354 - include the -smbclient patch.
2355 - include the -hang patch from upstream.
2356
2357 * Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
2358 - add a "exit 0" to the postun of the main samba package
2359
2360 * Wed Mar  2 2005 Tomas Mraz <tmraz@redhat.com> 3.0.11-5
2361 - rebuild with openssl-0.9.7e
2362
2363 * Thu Feb 24 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-4
2364 - Use the updated filter-requires-samba.sh file, so we don't accidentally
2365   pick up a dependency on perl(Crypt::SmbHash)
2366
2367 * Fri Feb 18 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-3
2368 - add -gcc4 patch to compile with gcc 4.
2369 - remove the now obsolete -smbclient-kerberos.patch
2370 - Include four upstream patches from
2371   http://samba.org/~jerry/patches/post-3.0.11/
2372   (Slightly modified the winbind_find_dc_v2 patch to apply easily with
2373   rpmbuild).
2374
2375 * Fri Feb 4 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-2
2376 - include -smbspool patch to close bz#104136
2377
2378 * Wed Jan 12 2005 Jay Fenlason <fenlason@redhat.com> 3.0.10-4
2379 - Update the -man patch to fix ntlm_auth.1 too.
2380 - Move pam_smbpass.so to the -common package, so both the 32
2381   and 64-bit versions will be installed on multiarch platforms.
2382   This closes bz#143617
2383 - Added new -delim patch to fix mount.cifs so it can accept
2384   passwords with commas in them (via environment or credentials
2385   file) to close bz#144198
2386
2387 * Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 3.0.10-3
2388 - Rebuilt for new readline.
2389
2390 * Fri Dec 17 2004 Jay Fenlason <fenlason@redhat.com> 3.0.10-2
2391 - New upstream release that closes CAN-2004-1154  bz#142544
2392 - Include the -64bit patch from Nalin.  This closes bz#142873
2393 - Update the -logfiles patch to work with 3.0.10
2394 - Create /var/run/winbindd and make it part of the -common rpm to close
2395   bz#142242
2396
2397 * Mon Nov 22 2004 Jay Fenlason <fenlason@redhat.com> 3.0.9-2
2398 - New upstream release.  This obsoletes the -secret patch.
2399   Include my changetrustpw patch to make "net ads changetrustpw" stop
2400   aborting.  This closes #134694
2401 - Remove obsolete triggers for ancient samba versions.
2402 - Move /var/log/samba to the -common rpm.  This closes #76628
2403 - Remove the hack needed to get around the bad docs files in the
2404   3.0.8 tarball.
2405 - Change the comment in winbind.init to point at the correct pidfile.
2406   This closes #76641
2407
2408 * Mon Nov 22 2004 Than Ngo <than@redhat.com> 3.0.8-4
2409 - fix unresolved symbols in libsmbclient which caused applications
2410   such as KDE's konqueror to fail when accessing smb:// URLs. #139894
2411
2412 * Thu Nov 11 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3.1
2413 - Rescue the install.mount.smbfs patch from Juanjo Villaplana
2414   (villapla@si.uji.es) to prevent building the srpm from trashing your
2415   installed /usr/bin/smbmount
2416
2417 * Tue Nov 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3
2418 - Include the corrected docs tarball, and use it instead of the
2419   obsolete docs from the upstream 3.0.8 tarball.
2420 - Update the logfiles patch to work with the updated docs.
2421
2422 * Mon Nov 8 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-2
2423 - New upstream version fixes CAN-2004-0930.  This obsoletes the
2424   disable-sendfile, salt, signing-shortkey and fqdn patches.
2425 - Add my <fenlason@redhat.com> ugly non-ascii-domain patch.
2426 - Updated the pie patch for 3.0.8.
2427 - Updated the logfiles patch for 3.0.8.
2428
2429 * Tue Oct 26 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre2
2430 - New upstream version
2431 - Add Nalin's signing-shortkey patch.
2432
2433 * Tue Oct 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.3
2434 - disable the -salt patch, because it causes undefined references in
2435   libsmbclient that prevent gnome-vfs from building.
2436
2437 * Fri Oct 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.2
2438 - Re-enable the x_fclose patch that was accidentally disabled
2439   in 3.0.8-0.pre1.1.  This closes #135832
2440 - include Nalin's -fqdn and -salt patches.
2441
2442 * Wed Oct 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.1
2443 - Include disable-sendfile patch to default "use sendfile" to "no".
2444   This closes #132779
2445
2446 * Wed Oct 6 2004 Jay Fenlason <fenlason@redhat.com>
2447 - Include patch from Steven Lawrance (slawrance@yahoo.com) that modifies
2448   smbmnt to work with 32-bit uids.
2449
2450 * Mon Sep 27 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1
2451 - new upstream release.  This obsoletes the ldapsam_compat patches.
2452
2453 * Wed Sep 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-4
2454 - Update docs section to not carryover the docs/manpages directory
2455   This moved many files from /usr/share/doc/samba-3.0.7/docs/* to
2456   /usr/share/doc/samba-3.0.7/*
2457 - Modify spec file as suggested by Rex Dieter (rdieter@math.unl.edu)
2458   to correctly create libsmbclient.so.0 and to use %%_initrddir instead
2459   of rolling our own.  This closes #132642
2460 - Add patch to default "use sendfile" to no, since sendfile appears to
2461   be broken
2462 - Add patch from Volker Lendecke <vl@samba.org> to help make
2463   ldapsam_compat work again.
2464 - Add patch from "Vince Brimhall" <vbrimhall@novell.com> for ldapsam_compat
2465   These two patches close bugzilla #132169
2466
2467 * Mon Sep 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-3
2468 - Upgrade to 3.0.7, which fixes CAN-2004-0807 CAN-2004-0808
2469   This obsoletes the 3.0.6-schema patch.
2470 - Update BuildRequires line to include openldap-devel openssl-devel
2471   and cups-devel
2472
2473 * Mon Aug 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.6-3
2474 - New upstream version.
2475 - Include post 3.0.6 patch from "Gerald (Jerry) Carter" <jerry@samba.org>
2476   to fix a duplicate in the LDAP schema.
2477 - Include 64-bit timestamp patch from Ravikumar (rkumar@hp.com)
2478   to allow correct timestamp handling on 64-bit platforms and fix #126109.
2479 - reenable the -pie patch.  Samba is too widely used, and too vulnerable
2480   to potential security holes to disable an important security feature
2481   like -pie.  The correct fix is to have the toolchain not create broken
2482   executables when programs compiled -pie are stripped.
2483 - Remove obsolete patches.
2484 - Modify this spec file to put libsmbclient.{a,so} in the right place on
2485   x86_64 machines.
2486
2487 * Thu Aug  5 2004 Jason Vas Dias <jvdias@redhat.com> 3.0.5-3
2488 - Removed '-pie' patch - 3.0.5 uses -fPIC/-PIC, and the combination
2489 - resulted in executables getting corrupt stacks, causing smbmnt to
2490 - get a SIGBUS in the mount() call (bug 127420).
2491
2492 * Fri Jul 30 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-2
2493 - Upgrade to 3.0.5, which is a regression from 3.0.5pre1 for a
2494   security fix.
2495 - Include the 3.0.4-backport patch from the 3E branch.  This restores
2496   some of the 3.0.5pre1 and 3.0.5rc1 functionality.
2497
2498 * Tue Jul 20 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-0.pre1.1
2499 - Backport base64_decode patche to close CAN-2004-0500
2500 - Backport hash patch to close CAN-2004-0686
2501 - use_authtok patch from Nalin Dahyabhai <nalin@redhat.com>
2502 - smbclient-kerberos patch from Alexander Larsson <alexl@redhat.com>
2503 - passwd patch uses "*" instead of "x" for "hashed" passwords for
2504   accounts created by winbind.  "x" means "password is in /etc/shadow" to
2505   brain-damaged pam_unix module.
2506
2507 * Fri Jul 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5.0pre1.0
2508 - New upstream version
2509 - use %% { SOURCE1 } instead of a hardcoded path
2510 - include -winbind patch from Gerald (Jerry) Carter (jerry@samba.org)
2511   https://bugzilla.samba.org/show_bug.cgi?id=1315
2512   to make winbindd work against Windows versions that do not have
2513   128 bit encryption enabled.
2514 - Moved %%{_bindir}/net to the -common package, so that folks who just
2515   want to use winbind, etc don't have to install -client in order to
2516   "net join" their domain.
2517 - New upstream version obsoletes the patches added in 3.0.3-5
2518 - Remove smbgetrc.5 man page, since we don't ship smbget.
2519
2520 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
2521 - rebuilt
2522
2523 * Tue May 4 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-5
2524 - Patch to allow password changes from machines patched with
2525   Microsoft hotfix MS04-011.
2526 - Include patches for https://bugzilla.samba.org/show_bug.cgi?id=1302
2527   and https://bugzilla.samba.org/show_bug.cgi?id=1309
2528
2529 * Thu Apr 29 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-4
2530 - Samba 3.0.3 released.
2531
2532 * Wed Apr 21 2004 jay Fenlason <fenlason@redhat.com> 3.0.3-3.rc1
2533 - New upstream version
2534 - updated spec file to make libsmbclient.so executable.  This closes
2535   bugzilla #121356
2536
2537 * Mon Apr 5 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-2.pre2
2538 - New upstream version  
2539 - Updated configure line to remove --with-fhs and to explicitly set all
2540   the directories that --with-fhs was setting.  We were overriding most of
2541   them anyway.  This closes #118598
2542
2543 * Mon Mar 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-1.pre1
2544 - New upstream version.
2545 - Updated -pie and -logfiles patches for 3.0.3pre1
2546 - add krb5-devel to buildrequires, fixes #116560
2547 - Add patch from Miloslav Trmac (mitr@volny.cz) to allow non-root to run
2548   "service smb status".  This fixes #116559
2549
2550 * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
2551 - rebuilt
2552
2553 * Mon Feb 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2a-1
2554 - Upgrade to 3.0.2a
2555
2556 * Mon Feb 16 2004 Karsten Hopp <karsten@redhat.de> 3.0.2-7 
2557 - fix ownership in -common package
2558
2559 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
2560 - rebuilt
2561
2562 * Fri Feb 13 2004 Jay Fenlason <fenlason@redhat.com>
2563 - Change all requires lines to list an explicit epoch.  Closes #102715
2564 - Add an explicit Epoch so that %%{epoch} is defined.
2565
2566 * Mon Feb 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-5
2567 - New upstream version: 3.0.2 final includes security fix for #114995
2568   (CAN-2004-0082)
2569 - Edit postun script for the -common package to restart winbind when
2570   appropriate.  Fixes bugzilla #114051.
2571
2572 * Mon Feb 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-3rc2
2573 - add %%dir entries for %%{_libdir}/samba and %%{_libdir}/samba/charset
2574 - Upgrade to new upstream version
2575 - build mount.cifs for the new cifs filesystem in the 2.6 kernel.
2576
2577 * Mon Jan 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-1rc1
2578 - Upgrade to new upstream version
2579
2580 * Wed Dec 17 2003 Felipe Alfaro Solana <felipe_alfaro@linuxmail.org> 3.0.1-1
2581 - Update to 3.0.1
2582 - Removed testparm patch as it's already merged
2583 - Removed Samba.7* man pages
2584 - Fixed .buildroot patch
2585 - Fixed .pie patch
2586 - Added new /usr/bin/tdbdump file
2587
2588 * Thu Sep 25 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-15
2589 - New 3.0.0 final release
2590 - merge nmbd-netbiosname and testparm patches from 3E branch
2591 - updated the -logfiles patch to work against 3.0.0
2592 - updated the pie patch
2593 - update the VERSION file during build
2594 - use make -j if avaliable
2595 - merge the winbindd_privileged change from 3E
2596 - merge the "rm /usr/lib" patch that allows Samba to build on 64-bit
2597   platforms despite the broken Makefile
2598
2599 * Mon Aug 18 2003 Jay Fenlason <fenlason@redhat.com>
2600 - Merge from samba-3E-branch after samba-3.0.0rc1 was released
2601
2602 * Wed Jul 23 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-3beta3
2603 - Merge from 3.0.0-2beta3.3E
2604 - (Correct log file names (#100981).)
2605 - (Fix pidfile directory in samab.log)
2606 - (Remove obsolete samba-3.0.0beta2.tar.bz2.md5 file)
2607 - (Move libsmbclient to the -common package (#99449))
2608
2609 * Sun Jun 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.8a-4
2610 - rebuild
2611
2612 * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
2613 - rebuilt
2614
2615 * Wed May 28 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-2
2616 - add libsmbclient.so for gnome-vfs-extras
2617 - Edit specfile to specify /var/run for pid files
2618 - Move /tmp/.winbindd/socket to /var/run/winbindd/socket
2619
2620 * Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de>
2621 - add proper ldconfig calls
2622
2623 * Thu Apr 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-1
2624 - upgrade to 2.2.8a
2625 - remove old .md5 files
2626 - add "pid directory = /var/run" to the smb.conf file.  Fixes #88495
2627 - Patch from jra@dp.samba.org to fix a delete-on-close regression
2628
2629 * Mon Mar 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8-0
2630 - Upgrade to 2.2.8
2631 - removed commented out patches.
2632 - removed old patches and .md5 files from the repository.
2633 - remove duplicate /sbin/chkconfig --del winbind which causes
2634   warnings when removing samba.
2635 - Fixed minor bug in smbprint that causes it to fail when called with
2636   more than 10 parameters: the accounting file (and spool directory
2637   derived from it) were being set wrong due to missing {}.  This closes
2638   bug #86473.
2639 - updated smb.conf patch, includes new defaults to close bug #84822.
2640
2641 * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
2642 - rebuilt
2643
2644 * Thu Feb 20 2003 Jonathan Blandford <jrb@redhat.com> 2.2.7a-5
2645 - remove swat.desktop file
2646
2647 * Thu Feb 20 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.7a-4
2648 - relink libnss_wins.so with SHLD="%%{__cc} -lnsl" to force libnss_wins.so to
2649   link with libnsl, avoiding unresolved symbol errors on functions in libnsl
2650
2651 * Mon Feb 10 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-3
2652 - edited spec file to put .so files in the correct directories
2653   on 64-bit platforms that have 32-bit compatability issues
2654   (sparc64, x86_64, etc).  This fixes bugzilla #83782.
2655 - Added samba-2.2.7a-error.patch from twaugh.  This fixes
2656   bugzilla #82454.
2657
2658 * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
2659 - rebuilt
2660
2661 * Thu Jan  9 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-1
2662 - Update to 2.2.7a
2663 - Change default printing system to CUPS
2664 - Turn on pam_smbpass
2665 - Turn on msdfs
2666
2667 * Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 2.2.7-5
2668 - use internal dep generator.
2669
2670 * Sat Dec 14 2002 Tim Powers <timp@redhat.com> 2.2.7-4
2671 - don't use rpms internal dep generator
2672
2673 * Mon Dec 02 2002 Elliot Lee <sopwith@redhat.com> 2.2.7-3
2674 - Fix missing doc files.
2675 - Fix multilib issues
2676
2677 * Wed Nov 20 2002 Bill Nottingham <notting@redhat.com> 2.2.7-2
2678 - update to 2.2.7
2679 - add patch for LFS in smbclient (<tcallawa@redhat.com>)
2680
2681 * Wed Aug 28 2002 Trond Eivind Glomsød <teg@redhat.com> 2.2.5-10
2682 - logrotate fixes (#65007)
2683
2684 * Mon Aug 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-9
2685 - /usr/lib was used in place of %%{_libdir} in three locations (#72554)
2686
2687 * Mon Aug  5 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-8
2688 - Initscript fix (#70720)
2689
2690 * Fri Jul 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-7
2691 - Enable VFS support and compile the "recycling" module (#69796)
2692 - more selective includes of the examples dir 
2693
2694 * Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-6
2695 - Fix the lpq parser for better handling of LPRng systems (#69352)
2696
2697 * Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-5
2698 - desktop file fixes (#69505)
2699
2700 * Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-4
2701 - Enable ACLs
2702
2703 * Tue Jun 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-3
2704 - Make it not depend on Net::LDAP - those are doc files and examples
2705
2706 * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
2707 - automated rebuild
2708
2709 * Thu Jun 20 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-1
2710 - 2.2.5
2711
2712 * Fri Jun 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-5
2713 - Move the post/preun of winbind into the -common subpackage, 
2714   where the script is (#66128)
2715
2716 * Tue Jun  4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-4
2717 - Fix pidfile locations so it runs properly again (2.2.4 
2718   added a new directtive - #65007)
2719
2720 * Thu May 23 2002 Tim Powers <timp@redhat.com>
2721 - automated rebuild
2722
2723 * Tue May 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-2
2724 - Fix #64804
2725
2726 * Thu May  9 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-1
2727 - 2.2.4
2728 - Removed some zero-length and CVS internal files
2729 - Make it build
2730
2731 * Wed Apr 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-6
2732 - Don't use /etc/samba.d in smbadduser, it should be /etc/samba
2733
2734 * Thu Apr  4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-5
2735 - Add libsmbclient.a w/headerfile for KDE (#62202)
2736
2737 * Tue Mar 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-4
2738 - Make the logrotate script look the correct place for the pid files 
2739
2740 * Thu Mar 14 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2.3a-3
2741 - include interfaces.o in pam_smbpass.so, which needs symbols from interfaces.o
2742   (patch posted to samba-list by Ilia Chipitsine)
2743
2744 * Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-2
2745 - Rebuild
2746
2747 * Thu Feb  7 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-1
2748 - 2.2.3a
2749
2750 * Mon Feb  4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3-1
2751 - 2.2.3
2752
2753 * Thu Nov 29 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-8
2754 - New pam configuration file for samba
2755
2756 * Tue Nov 27 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-7
2757 - Enable PAM session controll and password sync
2758
2759 * Tue Nov 13 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-6
2760 - Move winbind files to samba-common. Add separate initscript for
2761   winbind 
2762 - Fixes for winbind - protect global variables with mutex, use
2763   more secure getenv
2764
2765 * Thu Nov  8 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-5
2766 - Teach smbadduser about "getent passwd" 
2767 - Fix more pid-file references
2768 - Add (conditional) winbindd startup to the initscript, configured in
2769   /etc/sysconfig/samba
2770
2771 * Wed Nov  7 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-4
2772 - Fix pid-file reference in logrotate script
2773 - include pam and nss modules for winbind
2774
2775 * Mon Nov  5 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-3
2776 - Add "--with-utmp" to configure options (#55372)
2777 - Include winbind, pam_smbpass.so, rpcclient and smbcacls
2778 - start using /var/cache/samba, we need to keep state and there is
2779   more than just locks involved
2780
2781 * Sat Nov 03 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.2.2-2
2782 - add "reload" to the usage string in the startup script
2783
2784 * Mon Oct 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-1
2785 - 2.2.2
2786
2787 * Tue Sep 18 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1a-5
2788 - Add patch from Jeremy Allison to fix IA64 alignment problems (#51497)
2789
2790 * Mon Aug 13 2001 Trond Eivind Glomsrød <teg@redhat.com>
2791 - Don't include smbpasswd in samba, it's in samba-common (#51598)
2792 - Add a disabled "obey pam restrictions" statement - it's not
2793   active, as we use encrypted passwords, but if the admin turns
2794   encrypted passwords off the choice is available. (#31351)
2795
2796 * Wed Aug  8 2001 Trond Eivind Glomsrød <teg@redhat.com>
2797 - Use /var/cache/samba instead of /var/lock/samba 
2798 - Remove "domain controller" keyword from smb.conf, it's 
2799   deprecated (from #13704)
2800 - Sync some examples with smb.conf.default
2801 - Fix password synchronization (#16987)
2802
2803 * Fri Jul 20 2001 Trond Eivind Glomsrød <teg@redhat.com>
2804 - Tweaks of BuildRequires (#49581)
2805
2806 * Wed Jul 11 2001 Trond Eivind Glomsrød <teg@redhat.com>
2807 - 2.2.1a bugfix release
2808
2809 * Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com>
2810 - 2.2.1, which should work better for XP
2811
2812 * Sat Jun 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
2813 - 2.2.0a security fix
2814 - Mark lograte and pam configuration files as noreplace
2815
2816 * Fri Jun 22 2001 Trond Eivind Glomsrød <teg@redhat.com>
2817 - Add the /etc/samba directory to samba-common
2818
2819 * Thu Jun 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
2820 - Add improvements to the smb.conf as suggested in #16931
2821
2822 * Tue Jun 19 2001 Trond Eivind Glomsrød <teg@redhat.com>
2823 - (these changes are from the non-head version)
2824 - Don't include /usr/sbin/samba, it's the same as the initscript
2825 - unset TMPDIR, as samba can't write into a TMPDIR owned
2826   by root (#41193)
2827 - Add pidfile: lines for smbd and nmbd and a config: line
2828   in the initscript  (#15343)
2829 - don't use make -j
2830 - explicitly include /usr/share/samba, not just the files in it
2831
2832 * Tue Jun 19 2001 Bill Nottingham <notting@redhat.com>
2833 - mount.smb/mount.smbfs go in /sbin, *not* %%{_sbindir}
2834
2835 * Fri Jun  8 2001 Preston Brown <pbrown@redhat.com>
2836 - enable encypted passwords by default
2837
2838 * Thu Jun  7 2001 Helge Deller <hdeller@redhat.de> 
2839 - build as 2.2.0-1 release
2840 - skip the documentation-directories docbook, manpages and yodldocs
2841 - don't include *.sgml documentation in package
2842 - moved codepage-directory to /usr/share/samba/codepages
2843 - make it compile with glibc-2.2.3-10 and kernel-headers-2.4.2-2   
2844
2845 * Mon May 21 2001 Helge Deller <hdeller@redhat.de> 
2846 - updated to samba 2.2.0
2847 - moved codepages to %%{_datadir}/samba/codepages
2848 - use all available CPUs for building rpm packages
2849 - use %%{_xxx} defines at most places in spec-file
2850 - "License:" replaces "Copyright:"
2851 - dropped excludearch sparc
2852 - de-activated japanese patches 100 and 200 for now 
2853   (they need to be fixed and tested wth 2.2.0)
2854 - separated swat.desktop file from spec-file and added
2855   german translations
2856 - moved /etc/sysconfig/samba to a separate source-file
2857 - use htmlview instead of direct call to netscape in 
2858   swat.desktop-file
2859
2860 * Mon May  7 2001 Bill Nottingham <notting@redhat.com>
2861 - device-remove security fix again (<tridge@samba.org>)
2862
2863 * Fri Apr 20 2001 Bill Nottingham <notting@redhat.com>
2864 - fix tempfile security problems, officially (<tridge@samba.org>)
2865 - update to 2.0.8
2866
2867 * Sun Apr  8 2001 Bill Nottingham <notting@redhat.com>
2868 - turn of SSL, kerberos
2869
2870 * Thu Apr  5 2001 Bill Nottingham <notting@redhat.com>
2871 - fix tempfile security problems (patch from <Marcus.Meissner@caldera.de>)
2872
2873 * Thu Mar 29 2001 Bill Nottingham <notting@redhat.com>
2874 - fix quota support, and quotas with the 2.4 kernel (#31362, #33915)
2875
2876 * Mon Mar 26 2001 Nalin Dahyabhai <nalin@redhat.com>
2877 - tweak the PAM code some more to try to do a setcred() after initgroups()
2878 - pull in all of the optflags on i386 and sparc
2879 - don't explicitly enable Kerberos support -- it's only used for password
2880   checking, and if PAM is enabled it's a no-op anyway
2881
2882 * Mon Mar  5 2001 Tim Waugh <twaugh@redhat.com>
2883 - exit successfully from preun script (bug #30644).
2884
2885 * Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
2886 - rebuild in new environment
2887
2888 * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
2889 - updated japanese stuff (#27683)
2890
2891 * Fri Feb  9 2001 Bill Nottingham <notting@redhat.com>
2892 - fix trigger (#26859)
2893
2894 * Wed Feb  7 2001 Bill Nottingham <notting@redhat.com>
2895 - add i18n support, japanese patch (#26253)
2896
2897 * Wed Feb  7 2001 Trond Eivind Glomsrød <teg@redhat.com>
2898 - i18n improvements in initscript (#26537)
2899
2900 * Wed Jan 31 2001 Bill Nottingham <notting@redhat.com>
2901 - put smbpasswd in samba-common (#25429)
2902
2903 * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
2904 - new i18n stuff
2905
2906 * Sun Jan 21 2001 Bill Nottingham <notting@redhat.com>
2907 - rebuild
2908
2909 * Thu Jan 18 2001 Bill Nottingham <notting@redhat.com>
2910 - i18n-ize initscript
2911 - add a sysconfig file for daemon options (#23550)
2912 - clarify smbpasswd man page (#23370)
2913 - build with LFS support (#22388)
2914 - avoid extraneous pam error messages (#10666)
2915 - add Urban Widmark's bug fixes for smbmount (#19623)
2916 - fix setgid directory modes (#11911)
2917 - split swat into subpackage (#19706)
2918
2919 * Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2920 - set a default CA certificate path in smb.conf (#19010)
2921 - require openssl >= 0.9.5a-20 to make sure we have a ca-bundle.crt file
2922
2923 * Mon Oct 16 2000 Bill Nottingham <notting@redhat.com>
2924 - fix swat only_from line (#18726, others)
2925 - fix attempt to write outside buildroot on install (#17943)
2926
2927 * Mon Aug 14 2000 Bill Nottingham <notting@redhat.com>
2928 - add smbspool back in (#15827)
2929 - fix absolute symlinks (#16125)
2930
2931 * Sun Aug 6 2000 Philipp Knirsch <pknirsch@redhat.com>
2932 - bugfix for smbadduser script (#15148)
2933
2934 * Mon Jul 31 2000 Matt Wilson <msw@redhat.com>
2935 - patch configure.ing (patch11) to disable cups test
2936 - turn off swat by default
2937
2938 * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com>
2939 - fix condrestart stuff
2940
2941 * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
2942 - add copytruncate to logrotate file (#14360)
2943 - fix init script (#13708)
2944
2945 * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
2946 - move initscript back
2947 - remove 'Using Samba' book from %%doc 
2948 - move stuff to /etc/samba (#13708)
2949 - default configuration tweaks (#13704)
2950 - some logrotate tweaks
2951
2952 * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
2953 - automatic rebuild
2954
2955 * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
2956 - fix logrotate script (#13698)
2957
2958 * Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
2959 - fix initscripts req (prereq /etc/init.d)
2960
2961 * Wed Jul 5 2000 Than Ngo <than@redhat.de>
2962 - add initdir macro to handle the initscript directory
2963 - add a new macro to handle /etc/pam.d/system-auth
2964
2965 * Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
2966 - enable Kerberos 5 and SSL support
2967 - patch for duplicate profile.h headers
2968
2969 * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com>
2970 - fix init script
2971
2972 * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com>
2973 - rename samba logs (#11606)
2974
2975 * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
2976 - initscript munging
2977
2978 * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com>
2979 - configure the swat stuff usefully
2980 - re-integrate some specfile tweaks that got lost somewhere
2981
2982 * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
2983 - rebuild to get rid of cups dependency
2984
2985 * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
2986 - tweak logrotate configurations to use the PID file in /var/lock/samba
2987
2988 * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com>
2989 - rebuild in new environment
2990
2991 * Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
2992 - change PAM setup to use system-auth
2993
2994 * Mon May  8 2000 Bill Nottingham <notting@redhat.com>
2995 - fixes for ia64
2996
2997 * Sat May  6 2000 Bill Nottingham <notting@redhat.com>
2998 - switch to %%configure
2999
3000 * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de>
3001 - version 2.0.7
3002
3003 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
3004 - simplify preun
3005
3006 * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com>
3007 - fix yp_get_default_domain in autoconf
3008 - only link against readline for smbclient
3009 - fix log rotation (#9909)
3010
3011 * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
3012 - fix trigger, again.
3013
3014 * Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
3015 - fix trigger.
3016
3017 * Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
3018 - turn on quota support
3019
3020 * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
3021 - rebuild to fox dependencies
3022 - man pages are compressed
3023
3024 * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
3025 - munge post scripts slightly
3026
3027 * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
3028 - turn on mmap again. Wheee.
3029 - ship smbmount on alpha
3030
3031 * Mon Dec  6 1999 Bill Nottingham <notting@redhat.com>
3032 - turn off mmap. ;)
3033
3034 * Wed Dec  1 1999 Bill Nottingham <notting@redhat.com>
3035 - change /var/log/samba to 0700
3036 - turn on mmap support
3037
3038 * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com>
3039 - update to 2.0.6
3040
3041 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com>
3042 - add a %%defattr for -common
3043
3044 * Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
3045 - shift some files into -client
3046 - remove /home/samba from package.
3047
3048 * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
3049 - initscript oopsie. killproc <name> -HUP, not other way around.
3050
3051 * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com>
3052 - script cleanups. Again.
3053
3054 * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
3055 - add a patch to fix dropped reconnection attempts
3056
3057 * Mon Sep  6 1999 Jeff Johnson <jbj@redhat.com>
3058 - use cp rather than mv to preserve /etc/services perms (#4938 et al).
3059 - use mktemp to generate /etc/tmp.XXXXXX file name.
3060 - add prereqs on sed/mktemp/killall (need to move killall to /bin).
3061 - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7")
3062
3063 * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
3064 - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd
3065
3066 * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
3067 - fix typo in mount.smb
3068
3069 * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
3070 - add a %%trigger to work around (sort of) broken scripts in
3071   previous releases
3072
3073 * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
3074 - initscript munging
3075
3076 * Mon Aug  9 1999 Bill Nottingham <notting@redhat.com>
3077 - add domain parsing to mount.smb
3078
3079 * Fri Aug  6 1999 Bill Nottingham <notting@redhat.com>
3080 - add a -common package, shuffle files around.
3081
3082 * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com>
3083 - add a chmod in %%postun so /etc/services & inetd.conf don't become unreadable
3084
3085 * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com>
3086 - update to 2.0.5
3087 - fix mount.smb - smbmount options changed again.........
3088 - fix postun. oops.
3089 - update some stuff from the samba team's spec file.
3090
3091 * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
3092 - split off clients into separate package
3093 - don't run samba by default
3094
3095 * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
3096 - fix one problem with mount.smb script
3097 - fix smbpasswd on sparc with a really ugly kludge
3098
3099 * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com>
3100 - fixed logrotate script
3101
3102 * Tue May 25 1999 Bill Nottingham <notting@redhat.com>
3103 - turn of 64-bit locking on 32-bit platforms
3104
3105 * Thu May 20 1999 Bill Nottingham <notting@redhat.com>
3106 - so many releases, so little time
3107 - explicitly uncomment 'printing = bsd' in sample config
3108
3109 * Tue May 18 1999 Bill Nottingham <notting@redhat.com>
3110 - update to 2.0.4a
3111 - fix mount.smb arg ordering
3112
3113 * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com>
3114 - go back to stop/start for restart (-HUP didn't work in testing)
3115
3116 * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
3117 - add a mount.smb to make smb mounting a little easier.
3118 - smb filesystems apparently don't work on alpha. Oops.
3119
3120 * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
3121 - always create codepages
3122
3123 * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
3124 - logrotate changes
3125
3126 * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
3127 - auto rebuild in the new build environment (release 3)
3128
3129 * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
3130 - updated init script to use graceful restart (not stop/start)
3131
3132 * Tue Mar  9 1999 Bill Nottingham <notting@redhat.com>
3133 - update to 2.0.3
3134
3135 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
3136 - update to 2.0.2
3137
3138 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com>
3139 - swat swat
3140
3141 * Tue Feb  9 1999 Bill Nottingham <notting@redhat.com>
3142 - fix bash2 breakage in post script
3143
3144 * Fri Feb  5 1999 Bill Nottingham <notting@redhat.com>
3145 - update to 2.0.0
3146
3147 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
3148 - make sure all binaries are stripped
3149
3150 * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com>
3151 - update to 1.9.18p10.
3152 - fix %%triggerpostun.
3153
3154 * Tue Jul 07 1998 Erik Troan <ewt@redhat.com>
3155 - updated postun triggerscript to check $0
3156 - clear /etc/codepages from %%preun instead of %%postun
3157
3158 * Mon Jun 08 1998 Erik Troan <ewt@redhat.com>
3159 - made the %%postun script a tad less agressive; no reason to remove
3160   the logs or lock file (after all, if the lock file is still there,
3161   samba is still running)
3162 - the %%postun and %%preun should only exectute if this is the final
3163   removal
3164 - migrated %%triggerpostun from Red Hat's samba package to work around
3165   packaging problems in some Red Hat samba releases
3166
3167 * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au>
3168 - minor tidy up in preparation for release of 1.9.18p5
3169 - added findsmb utility from SGI package
3170
3171 * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au>
3172 - Updated version and codepage info.
3173 - Release to test name resolve order
3174
3175 * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au>
3176 - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com>
3177 - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb
3178 - Compounded make line
3179 - Updated smb.init restart mechanism
3180 - Use compound mkdir -p line instead of individual calls to mkdir
3181 - Fixed smb.conf file path for log files
3182 - Fixed smb.conf file path for incoming smb print spool directory
3183 - Added a number of options to smb.conf file
3184 - Added smbadduser command (missed from all previous RPMs) - Doooh!
3185 - Added smbuser file and smb.conf file updates for username map
3186