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