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