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