Add a Networkmanager dispatcher script for winbind.
[ira/fedora-git] / samba.spec
1 %define main_release 161
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 rc3
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 Source6: samba.conf.tmp
61 Source7: winbind.networkmanager
62
63 Source100: smbprint
64
65 Source200: README.dc
66 Source201: README.downgrade
67
68 Patch0: samba-4.0.0rc4-request_aes_krb_keys.patch
69 Patch1: samba-4.0.0rc4-add_aes_enctypes_to_krb5_conf.patch
70
71 BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
72
73 Requires(pre): /usr/sbin/groupadd
74 Requires(post): systemd
75 Requires(preun): systemd
76 Requires(postun): systemd
77
78 Requires(pre): %{name}-common = %{samba_depver}
79 Requires: %{name}-libs = %{samba_depver}
80
81 Requires: logrotate
82 Requires: pam
83 Requires: perl(Parse::Yapp)
84
85 Provides: samba4 = %{samba_depver}
86 Obsoletes: samba4 < %{samba_depver}
87
88 BuildRequires: autoconf
89 %if %with_clustering_support
90 BuildRequires: ctdb-devel
91 %endif
92 BuildRequires: cups-devel
93 BuildRequires: docbook-style-xsl
94 BuildRequires: e2fsprogs-devel
95 BuildRequires: gawk
96 BuildRequires: iniparser-devel
97 BuildRequires: krb5-devel
98 BuildRequires: libacl-devel
99 BuildRequires: libaio-devel
100 BuildRequires: libattr-devel
101 BuildRequires: libcap-devel
102 BuildRequires: libuuid-devel
103 BuildRequires: libxslt
104 BuildRequires: ncurses-devel
105 BuildRequires: openldap-devel
106 BuildRequires: pam-devel
107 BuildRequires: perl(ExtUtils::MakeMaker)
108 BuildRequires: perl(Parse::Yapp)
109 BuildRequires: popt-devel
110 BuildRequires: python-devel
111 BuildRequires: python-tevent
112 BuildRequires: quota-devel
113 BuildRequires: readline-devel
114 BuildRequires: sed
115 BuildRequires: zlib-devel >= 1.2.3
116 BuildRequires: libbsd-devel
117
118 %if ! %with_talloc
119 %global libtalloc_version 2.0.7
120
121 BuildRequires: libtalloc-devel >= %{libtalloc_version}
122 BuildRequires: pytalloc-devel >= %{libtalloc_version}
123 %endif
124
125 %if ! %with_tevent
126 %global libtevent_version 0.9.17
127
128 BuildRequires: libtevent-devel >= %{libtevent_version}
129 BuildRequires: python-tevent >= %{libtevent_version}
130 %endif
131
132 %if ! %with_ldb
133 %global libldb_version 1.1.11
134
135 BuildRequires: libldb-devel >= %{libldb_version}
136 BuildRequires: pyldb-devel >= %{libldb_version}
137 %endif
138
139 %if ! %with_tdb
140 %global libtdb_version 1.2.10
141
142 BuildRequires: libtdb-devel >= %{libtdb_version}
143 BuildRequires: python-tdb >= %{libtdb_version}
144 %endif
145
146 # UGLY HACK: Fix 'Provides' for libsmbclient and libwbclient
147 %if ! %with_libsmbclient && ! %with_libwbclient
148 %{?filter_setup:
149 %filter_from_provides /libsmbclient.so.0()/d; /libwbclient.so.0()/d
150 %filter_from_requires /libsmbclient.so.0()/d; /libwbclient.so.0()/d
151 %filter_setup
152 }
153 %endif
154
155 ### SAMBA
156 %description
157 Samba is the standard Windows interoperability suite of programs for Linux and Unix.
158
159 ### CLIENT
160 %package client
161 Summary: Samba client programs
162 Group: Applications/System
163 Requires: %{name}-common = %{samba_depver}
164 Requires: %{name}-libs = %{samba_depver}
165
166 Provides: samba4-client = %{samba_depver}
167 Obsoletes: samba4-client < %{samba_depver}
168
169 %description client
170 The samba4-client package provides some SMB/CIFS clients to complement
171 the built-in SMB/CIFS filesystem in Linux. These clients allow access
172 of SMB/CIFS shares and printing to SMB/CIFS printers.
173
174 ### COMMON
175 %package common
176 Summary: Files used by both Samba servers and clients
177 Group: Applications/System
178 Requires: %{name}-libs = %{samba_depver}
179 Requires(post): systemd
180
181 Provides: samba4-common = %{samba_depver}
182 Obsoletes: samba4-common < %{samba_depver}
183
184 %description common
185 samba4-common provides files necessary for both the server and client
186 packages of Samba.
187
188 ### DC
189 %package dc
190 Summary: Samba AD Domain Controller
191 Group: Applications/System
192 Requires: %{name}-libs = %{samba_depver}
193 Requires: %{name}-dc-libs = %{samba_depver}
194 Requires: %{name}-python = %{samba_depver}
195
196 Provides: samba4-dc = %{samba_depver}
197 Obsoletes: samba4-dc < %{samba_depver}
198
199 %description dc
200 The samba-dc package provides AD Domain Controller functionality
201
202 ### DC-LIBS
203 %package dc-libs
204 Summary: Samba AD Domain Controller Libraries
205 Group: Applications/System
206 Requires: %{name}-common = %{samba_depver}
207 Requires: %{name}-libs = %{samba_depver}
208
209 Provides: samba4-dc-libs = %{samba_depver}
210 Obsoletes: samba4-dc-libs < %{samba_depver}
211
212 %description dc-libs
213 The samba4-dc-libs package contains the libraries needed by the DC to
214 link against the SMB, RPC and other protocols.
215
216 ### DEVEL
217 %package devel
218 Summary: Developer tools for Samba libraries
219 Group: Development/Libraries
220 Requires: %{name}-common = %{samba_depver}
221 Requires: %{name}-libs = %{samba_depver}
222 Requires: %{name}-test = %{samba_depver}
223
224 Provides: samba4-devel = %{samba_depver}
225 Obsoletes: samba4-devel < %{samba_depver}
226
227 %description devel
228 The samba4-devel package contains the header files for the libraries
229 needed to develop programs that link against the SMB, RPC and other
230 libraries in the Samba suite.
231
232 ### LIBS
233 %package libs
234 Summary: Samba libraries
235 Group: Applications/System
236 %if %with_libwbclient
237 Requires: libwbclient = %{samba_depver}
238 %endif
239
240 Provides: samba4-libs = %{samba_depver}
241 Obsoletes: samba4-libs < %{samba_depver}
242
243 %description libs
244 The samba4-libs package contains the libraries needed by programs that
245 link against the SMB, RPC and other protocols provided by the Samba suite.
246
247 ### LIBSMBCLIENT
248 %if %with_libsmbclient
249 %package -n libsmbclient
250 Summary: The SMB client library
251 Group: Applications/System
252 Requires: %{name}-common = %{samba_depver}
253
254 %description -n libsmbclient
255 The libsmbclient contains the SMB client library from the Samba suite.
256
257 %package -n libsmbclient-devel
258 Summary: Developer tools for the SMB client library
259 Group: Development/Libraries
260 Requires: libsmbclient = %{samba_depver}
261
262 %description -n libsmbclient-devel
263 The libsmbclient-devel package contains the header files and libraries needed to
264 develop programs that link against the SMB client library in the Samba suite.
265 %endif # with_libsmbclient
266
267 ### LIBWBCLIENT
268 %if %with_libwbclient
269 %package -n libwbclient
270 Summary: The winbind client library
271 Group: Applications/System
272
273 %description -n libwbclient
274 The libwbclient package contains the winbind client library from the Samba suite.
275
276 %package -n libwbclient-devel
277 Summary: Developer tools for the winbind library
278 Group: Development/Libraries
279 Requires: libwbclient = %{samba_depver}
280
281 %description -n libwbclient-devel
282 The libwbclient-devel package provides developer tools for the wbclient library.
283 %endif # with_libwbclient
284
285 ### PYTHON
286 %package python
287 Summary: Samba Python libraries
288 Group: Applications/System
289 Requires: %{name} = %{samba_depver}
290 Requires: %{name}-libs = %{samba_depver}
291 Requires: python-tevent
292 Requires: python-tdb
293 Requires: pyldb
294 Requires: pytalloc
295
296 Provides: samba4-python = %{samba_depver}
297 Obsoletes: samba4-python < %{samba_depver}
298
299 %description python
300 The samba4-python package contains the Python libraries needed by programs
301 that use SMB, RPC and other Samba provided protocols in Python programs.
302
303 ### PIDL
304 %package pidl
305 Summary: Perl IDL compiler
306 Group: Development/Tools
307 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
308
309 Provides: samba4-pidl = %{samba_depver}
310 Obsoletes: samba4-pidl < %{samba_depver}
311
312 %description pidl
313 The samba4-pidl package contains the Perl IDL compiler used by Samba
314 and Wireshark to parse IDL and similar protocols
315
316 ### SWAT
317 %package swat
318 Summary: The Samba SMB server Web configuration program
319 Group: Applications/System
320 Requires: %{name} = %{samba_depver}
321 Requires: %{name}-common = %{samba_depver}
322 Requires: %{name}-libs = %{samba_depver}
323 Requires: xinetd
324
325 Provides: samba4-swat = %{samba_depver}
326 Obsoletes: samba4-swat < %{samba_depver}
327
328 %description swat
329 The samba-swat package includes the new SWAT (Samba Web Administration
330 Tool), for remotely managing Samba's smb.conf file using your favorite
331 Web browser.
332
333 ### TEST
334 %package test
335 Summary: Testing tools for Samba servers and clients
336 Group: Applications/System
337 Requires: %{name} = %{samba_depver}
338 Requires: %{name}-common = %{samba_depver}
339 Requires: %{name}-dc = %{samba_depver}
340 Requires: %{name}-libs = %{samba_depver}
341 Requires: %{name}-winbind = %{samba_depver}
342
343 Provides: samba4-test = %{samba_depver}
344 Obsoletes: samba4-test < %{samba_depver}
345
346 %description test
347 samba4-test provides testing tools for both the server and client
348 packages of Samba.
349
350 ### WINBIND
351 %package winbind
352 Summary: Samba winbind
353 Group: Applications/System
354 Requires: %{name}-common = %{samba_depver}
355 Requires: %{name}-libs = %{samba_depver}
356
357 Provides: samba4-winbind = %{samba_depver}
358 Obsoletes: samba4-winbind < %{samba_depver}
359
360 %description winbind
361 The samba-winbind package provides the winbind NSS library, and some
362 client tools.  Winbind enables Linux to be a full member in Windows
363 domains and to use Windows user and group accounts on Linux.
364
365 ### WINBIND-CLIENTS
366 %package winbind-clients
367 Summary: Samba winbind clients
368 Group: Applications/System
369 Requires: %{name}-common = %{samba_depver}
370 Requires: %{name}-libs = %{samba_depver}
371 Requires: %{name}-winbind = %{samba_depver}
372 %if %with_libwbclient
373 Requires: libwbclient = %{samba_depver}
374 %endif
375
376 Provides: samba4-winbind-clients = %{samba_depver}
377 Obsoletes: samba4-winbind-clients < %{samba_depver}
378
379 %description winbind-clients
380 The samba-winbind-clients package provides the NSS library and a PAM
381 module necessary to communicate to the Winbind Daemon
382
383 ### WINBIND-KRB5-LOCATOR
384 %package winbind-krb5-locator
385 Summary: Samba winbind krb5 locator
386 Group: Applications/System
387 %if %with_libwbclient
388 Requires: libwbclient = %{samba_depver}
389 Requires: %{name}-winbind = %{samba_depver}
390 %else
391 Requires: %{name}-libs = %{samba_depver}
392 %endif
393
394 Provides: samba4-winbind-krb5-locator = %{samba_depver}
395 Obsoletes: samba4-winbind-krb5-locator < %{samba_depver}
396
397 # Handle winbind_krb5_locator.so as alternatives to allow
398 # IPA AD trusts case where it should not be used by libkrb5
399 # The plugin will be diverted to /dev/null by the FreeIPA
400 # freeipa-server-trust-ad subpackage due to higher priority
401 # and restored to the proper one on uninstall
402 Requires(post): %{_sbindir}/update-alternatives
403 Requires(postun): %{_sbindir}/update-alternatives
404 Requires(preun): %{_sbindir}/update-alternatives
405
406 %description winbind-krb5-locator
407 The winbind krb5 locator is a plugin for the system kerberos library to allow
408 the local kerberos library to use the same KDC as samba and winbind use
409
410 %prep
411 %setup -q -n samba-%{version}%{pre_release}
412
413 %patch0 -p1 -b .request_aes_krb_keys
414 %patch1 -p1 -b .add_aes_enctypes_to_krb5_conf
415
416 %build
417 %global _talloc_lib ,talloc,pytalloc,pytalloc-util
418 %global _tevent_lib ,tevent,pytevent
419 %global _tdb_lib ,tdb,pytdb
420 %global _ldb_lib ,ldb,pyldb
421
422 %if ! %{with_talloc}
423 %global _talloc_lib ,!talloc,!pytalloc,!pytalloc-util
424 %endif
425
426 %if ! %{with_tevent}
427 %global _tevent_lib ,!tevent,!pytevent
428 %endif
429
430 %if ! %{with_tdb}
431 %global _tdb_lib ,!tdb,!pytdb
432 %endif
433
434 %if ! %{with_ldb}
435 %global _ldb_lib ,!ldb,!pyldb
436 %endif
437
438 %global _samba4_libraries heimdal,!zlib,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib}
439
440 %global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
441 %global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
442 %global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
443
444 %global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules}
445
446 %global _libsmbclient %nil
447 %global _libwbclient %nil
448
449 %if ! %with_libsmbclient
450 %global _libsmbclient smbclient,smbsharemodes,
451 %endif
452
453 %if ! %with_libwbclient
454 %global _libwbclient wbclient,
455 %endif
456
457 %global _samba4_private_libraries %{_libsmbclient}%{_libwbclient}
458
459 %configure \
460         --enable-fhs \
461         --with-piddir=/run \
462         --with-sockets-dir=/run/samba \
463         --with-modulesdir=%{_libdir}/samba \
464         --with-pammodulesdir=%{_libdir}/security \
465         --with-lockdir=/var/lib/samba \
466         --disable-gnutls \
467         --disable-rpath-install \
468         --with-shared-modules=%{_samba4_modules} \
469         --builtin-libraries=ccan \
470         --bundled-libraries=%{_samba4_libraries} \
471         --with-pam \
472         --disable-ntdb \
473 %if (! %with_libsmbclient) || (! %with_libwbclient)
474         --private-libraries=%{_samba4_private_libraries} \
475 %endif
476 %if %with_mitkrb5
477         --with-system-mitkrb5 \
478 %endif
479 %if ! %with_dc
480         --without-ad-dc \
481 %endif
482 %if %with_clustering_support
483         --with-cluster-support \
484 %endif
485 %if ! %with_pam_smbpass
486         --without-pam_smbpass
487 %endif
488
489 export WAFCACHE=/tmp/wafcache
490 mkdir -p $WAFCACHE
491 make %{?_smp_mflags}
492
493 # Build PIDL for installation into vendor directories before
494 # 'make proto' gets to it.
495 (cd pidl && %{__perl} Makefile.PL INSTALLDIRS=vendor )
496
497 %install
498 rm -rf %{buildroot}
499 make install DESTDIR=%{buildroot}
500
501 install -d -m 0755 %{buildroot}/usr/{sbin,bin}
502 install -d -m 0755 %{buildroot}%{_sysconfdir}/{logrotate.d,security}
503 install -d -m 0755 %{buildroot}%{_libdir}/security
504 install -d -m 0755 %{buildroot}/var/lib/samba
505 install -d -m 0755 %{buildroot}/var/lib/samba/private
506 install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
507 install -d -m 0755 %{buildroot}/var/lib/samba/scripts
508 install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
509 install -d -m 0755 %{buildroot}/var/log/samba/old
510 install -d -m 0755 %{buildroot}/var/spool/samba
511 install -d -m 0755 %{buildroot}/%{_datadir}/swat/using_samba
512 install -d -m 0755 %{buildroot}/var/run/samba
513 install -d -m 0755 %{buildroot}/var/run/winbindd
514 install -d -m 0755 %{buildroot}/%{_libdir}/samba
515 install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
516
517 # Undo the PIDL install, we want to try again with the right options.
518 rm -rf %{buildroot}/%{_libdir}/perl5
519 rm -rf %{buildroot}/%{_datadir}/perl5
520
521 # Install PIDL.
522 ( cd pidl && make install PERL_INSTALL_ROOT=%{buildroot} )
523
524 # FIXME should be removed with rc4
525 ln -s %{_libdir}/libnss_winbind.so.2  %{buildroot}%{_libdir}/libnss_winbind.so
526 ln -s %{_libdir}/libnss_wins.so.2  %{buildroot}%{_libdir}/libnss_wins.so
527
528 # Install other stuff
529 install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/samba
530 install -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/samba/smb.conf
531 install -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
532
533 # FIXME use packaging/smbprint
534 install -m 0744 %{SOURCE100} %{buildroot}%{_bindir}/smbprint
535
536 echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
537
538 install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
539 install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
540
541 install -d -m 0755 %{buildroot}%{_sysconfdir}/xinetd.d
542 install -m644 %{SOURCE2} %{buildroot}%{_sysconfdir}/xinetd.d/swat
543
544 # FIXME use packaging/systemd/samba.conf.tmp
545 install -d -m 0755 %{buildroot}%{_sysconfdir}/tmpfiles.d/
546 install -m644 %{SOURCE6} %{buildroot}%{_sysconfdir}/tmpfiles.d/samba.conf
547
548 install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
549 install -m 0644 packaging/systemd/samba.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/samba
550
551 install -d -m 0755 %{buildroot}%{_defaultdocdir}/%{name}
552 install -m 0644 %{SOURCE201} %{buildroot}%{_defaultdocdir}/%{name}/README.downgrade
553
554 %if ! %with_dc
555 install -m 0644 %{SOURCE200} %{buildroot}%{_defaultdocdir}/%{name}/README.dc
556 install -m 0644 %{SOURCE200} %{buildroot}%{_defaultdocdir}/%{name}/README.dc-libs
557 %endif
558
559 install -d -m 0755 %{buildroot}%{_unitdir}
560 for i in nmb smb winbind ; do
561     cat packaging/systemd/$i.service | sed -e 's@Type=forking@Type=forking\nEnvironment=KRB5CCNAME=/run/samba/krb5cc_samba@g' >tmp$i.service
562     install -m 0644 tmp$i.service %{buildroot}%{_unitdir}/$i.service
563 done
564
565 # FIXME use packaging/NetworkManager/30-winbind
566 install -d -m 0755 %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/
567 install -m 0755 %{SOURCE7} %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
568
569 # winbind krb5 locator
570 install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
571 touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
572
573 # Clean out crap left behind by the PIDL install.
574 find %{buildroot} -type f -name .packlist -exec rm -f {} \;
575 rm -f %{buildroot}%{perl_vendorlib}/wscript_build
576 rm -rf %{buildroot}%{perl_vendorlib}/Parse/Yapp
577
578 # This makes the right links, as rpmlint requires that
579 # the ldconfig-created links be recorded in the RPM.
580 /sbin/ldconfig -N -n %{buildroot}%{_libdir}
581
582 # Fix up permission on perl install.
583 %{_fixperms} %{buildroot}%{perl_vendorlib}
584
585 ### SAMBA
586 %post
587 %systemd_post smb.service
588 %systemd_post nmb.service
589
590 %preun
591 %systemd_preun smb.service
592 %systemd_preun nmb.service
593
594 %postun
595 %systemd_postun_with_restart smb.service
596 %systemd_postun_with_restart nmb.service
597
598 ### COMMON
599 %post common
600 /sbin/ldconfig
601 /usr/bin/systemd-tmpfiles --create %{_sysconfdir}/tmpfiles.d/samba.conf
602
603 %postun common -p /sbin/ldconfig
604
605 ### DC-LIBS
606 %if %with_dc
607 %post dc-libs -p /sbin/ldconfig
608
609 %postun dc-libs -p /sbin/ldconfig
610 %endif # with_dc
611
612 ### LIBS
613 %post libs -p /sbin/ldconfig
614
615 %postun libs -p /sbin/ldconfig
616
617 ### LIBSMBCLIENT
618 %if %with_libsmbclient
619 %post -n libsmbclient -p /sbin/ldconfig
620
621 %postun -n libsmbclient -p /sbin/ldconfig
622 %endif # with_libsmbclient
623
624 ### LIBWBCLIENT
625 %if %with_libwbclient
626 %post -n libwbclient -p /sbin/ldconfig
627
628 %postun -n libwbclient -p /sbin/ldconfig
629 %endif # with_libwbclient
630
631 ### TEST
632 %post test -p /sbin/ldconfig
633
634 %postun test -p /sbin/ldconfig
635
636 ### WINBIND
637 %pre winbind
638 /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
639
640 %post winbind
641 %systemd_post winbind.service
642
643 %preun winbind
644 %systemd_preun winbind.service
645
646 %postun winbind
647 %systemd_postun_with_restart smb.service
648 %systemd_postun_with_restart nmb.service
649
650 ### WINBIND-CLIENTS
651 %post winbind-clients -p /sbin/ldconfig
652
653 %postun winbind-clients -p /sbin/ldconfig
654
655 ### WINBIND-KRB5-LOCATOR
656 %postun winbind-krb5-locator
657 if [ "$1" -ge "1" ]; then
658         if [ "`readlink %{_sysconfdir}/alternatives/winbind_krb5_locator.so`" == "%{_libdir}/winbind_krb5_locator.so" ]; then
659                 %{_sbindir}/alternatives --set winbind_krb5_locator %{_libdir}/winbind_krb5_locator.so
660         fi
661 fi
662
663 %post winbind-krb5-locator
664 %{_sbindir}/update-alternatives --install %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so \
665                                 winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so 10
666
667 %preun winbind-krb5-locator
668 if [ $1 -eq 0 ]; then
669         %{_sbindir}/update-alternatives --remove winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so
670 fi
671
672 %clean
673 rm -rf %{buildroot}
674
675 ### SAMBA
676 %files
677 %defattr(-,root,root,-)
678 %doc COPYING
679 %{_bindir}/smbstatus
680 %{_bindir}/eventlogadm
681 %{_sbindir}/nmbd
682 %{_sbindir}/smbd
683 %{_libdir}/samba/libsmbd_base.so
684 %{_libdir}/samba/libsmbd_conn.so
685 %{_libdir}/samba/auth
686 %{_libdir}/samba/vfs
687 %{_unitdir}/nmb.service
688 %{_unitdir}/smb.service
689 %attr(1777,root,root) %dir /var/spool/samba
690 %dir %{_sysconfdir}/openldap/schema
691 %{_sysconfdir}/openldap/schema/samba.schema
692 %doc %{_defaultdocdir}/%{name}/README.downgrade
693 %{_mandir}/man1/smbstatus.1*
694 %{_mandir}/man8/eventlogadm.8*
695 %{_mandir}/man8/smbd.8*
696 %{_mandir}/man8/nmbd.8*
697 %{_mandir}/man8/vfs_*.8*
698
699 ### CLIENT
700 %files client
701 %defattr(-,root,root)
702 %{_bindir}/cifsdd
703 %{_bindir}/dbwrap_tool
704 %{_bindir}/debug2html
705 %{_bindir}/log2pcap
706 %{_bindir}/nmblookup
707 %{_bindir}/nmblookup4
708 %{_bindir}/oLschema2ldif
709 %{_bindir}/regdiff
710 %{_bindir}/regpatch
711 %{_bindir}/regshell
712 %{_bindir}/regtree
713 %{_bindir}/rpcclient
714 %{_bindir}/sharesec
715 %{_bindir}/smbcacls
716 %{_bindir}/smbclient
717 %{_bindir}/smbclient4
718 %{_bindir}/smbcquotas
719 %{_bindir}/smbfilter
720 %{_bindir}/smbget
721 #%{_bindir}/smbiconv
722 %{_bindir}/smbpasswd
723 %{_bindir}/smbprint
724 %{_bindir}/smbspool
725 %{_bindir}/smbta-util
726 %{_bindir}/smbtree
727 %{_bindir}/split_tokens
728 %{_libdir}/samba/libldb-cmdline.so
729 %{_mandir}/man1/nmblookup.1*
730 %{_mandir}/man1/oLschema2ldif.1*
731 %{_mandir}/man1/regdiff.1*
732 %{_mandir}/man1/regpatch.1*
733 %{_mandir}/man1/regshell.1*
734 %{_mandir}/man1/regtree.1*
735 %exclude %{_mandir}/man1/findsmb.1*
736 %{_mandir}/man1/log2pcap.1*
737 %{_mandir}/man1/nmblookup4.1*
738 %{_mandir}/man1/rpcclient.1*
739 %{_mandir}/man1/sharesec.1*
740 %{_mandir}/man1/smbcacls.1*
741 %{_mandir}/man1/smbclient.1*
742 %{_mandir}/man1/smbcquotas.1*
743 %{_mandir}/man1/smbget.1*
744 %{_mandir}/man5/smbgetrc.5*
745 %exclude %{_mandir}/man1/smbtar.1*
746 %{_mandir}/man1/smbtree.1*
747 %{_mandir}/man8/smbpasswd.8*
748 %{_mandir}/man8/smbspool.8*
749 %{_mandir}/man8/smbta-util.8*
750
751 ## we don't build it for now
752 #%if %{with_ntdb}
753 #%{_bindir}/ntdbbackup
754 #%{_bindir}/ntdbdump
755 #%{_bindir}/ntdbrestore
756 #%{_bindir}/ntdbtool
757 #%endif
758
759 %if %{with_tdb}
760 %{_bindir}/tdbbackup
761 %{_bindir}/tdbdump
762 %{_bindir}/tdbrestore
763 %{_bindir}/tdbtool
764 %{_mandir}/man8/tdbbackup.8.gz
765 %{_mandir}/man8/tdbdump.8.gz
766 %{_mandir}/man8/tdbrestore.8.gz
767 %{_mandir}/man8/tdbtool.8.gz
768 %endif
769
770 %if %with_ldb
771 %{_bindir}/ldbadd
772 %{_bindir}/ldbdel
773 %{_bindir}/ldbedit
774 %{_bindir}/ldbmodify
775 %{_bindir}/ldbrename
776 %{_bindir}/ldbsearch
777 %{_mandir}/man1/ldbadd.1.gz
778 %{_mandir}/man1/ldbdel.1.gz
779 %{_mandir}/man1/ldbedit.1.gz
780 %{_mandir}/man1/ldbmodify.1.gz
781 %{_mandir}/man1/ldbrename.1.gz
782 %{_mandir}/man1/ldbsearch.1.gz
783 %endif
784
785 ### COMMON
786 %files common
787 %defattr(-,root,root)
788 #%{_libdir}/samba/charset ???
789 %{_sysconfdir}/tmpfiles.d/samba.conf
790 %{_bindir}/net
791 %{_bindir}/pdbedit
792 %{_bindir}/profiles
793 %{_bindir}/smbcontrol
794 %{_bindir}/testparm
795 %{_libdir}/libnetapi.so.*
796 %{_libdir}/samba/libprinting_migrate.so
797 %{_datadir}/samba/codepages
798 %config(noreplace) %{_sysconfdir}/logrotate.d/samba
799 %attr(0700,root,root) %dir /var/log/samba
800 %attr(0700,root,root) %dir /var/log/samba/old
801 %ghost %dir /var/run/samba
802 %ghost %dir /var/run/winbindd
803 %attr(700,root,root) %dir /var/lib/samba/private
804 %attr(755,root,root) %dir %{_sysconfdir}/samba
805 %config(noreplace) %{_sysconfdir}/samba/smb.conf
806 %config(noreplace) %{_sysconfdir}/samba/lmhosts
807 %config(noreplace) %{_sysconfdir}/sysconfig/samba
808 %{_mandir}/man1/profiles.1*
809 %{_mandir}/man1/smbcontrol.1*
810 %{_mandir}/man1/testparm.1*
811 %{_mandir}/man5/lmhosts.5*
812 %{_mandir}/man5/smb.conf.5*
813 %{_mandir}/man5/smbpasswd.5*
814 %{_mandir}/man7/samba.7*
815 %{_mandir}/man8/net.8*
816 %{_mandir}/man8/pdbedit.8*
817
818 # common libraries
819 %{_libdir}/samba/libauth.so
820 %{_libdir}/samba/libpopt_samba3.so
821 %{_libdir}/samba/pdb
822
823 %if %with_pam_smbpass
824 %{_libdir}/security/pam_smbpass.so
825 %endif
826
827 ### DC
828 %files dc
829 %defattr(-,root,root)
830 %{_bindir}/samba-dig
831 %{_libdir}/samba/ldb
832 %{_libdir}/samba/libdfs_server_ad.so
833 %{_libdir}/samba/libdsdb-module.so
834
835 %if %with_dc
836 %{_bindir}/samba-tool
837 %{_sbindir}/samba
838 %{_sbindir}/samba_kcc
839 %{_sbindir}/samba_dnsupdate
840 %{_sbindir}/samba_spnupdate
841 %{_sbindir}/samba_upgradedns
842 %{_sbindir}/samba_upgradeprovision
843 %{_libdir}/mit_samba.so
844 %{_libdir}/samba/bind9/dlz_bind9.so
845 %{_libdir}/samba/libheimntlm-samba4.so.1
846 %{_libdir}/samba/libheimntlm-samba4.so.1.0.1
847 %{_libdir}/samba/libkdc-samba4.so.2
848 %{_libdir}/samba/libkdc-samba4.so.2.0.0
849 %{_libdir}/samba/libpac.so
850 %{_libdir}/samba/gensec
851 %dir /var/lib/samba/sysvol
852 %{_datadir}/samba/setup
853 %{_mandir}/man8/samba.8.gz
854 %else # with_dc
855 %doc %{_defaultdocdir}/%{name}/README.dc
856 %endif # with_dc
857
858 ### DC-LIBS
859 %files dc-libs
860 %defattr(-,root,root)
861 %if %with_dc
862 %{_libdir}/samba/libprocess_model.so
863 %{_libdir}/samba/libservice.so
864 %{_libdir}/samba/process_model
865 %{_libdir}/samba/service
866 %{_libdir}/libdcerpc-server.so.*
867 %{_libdir}/samba/libntvfs.so
868 %{_libdir}/samba/libposix_eadb.so
869 %{_libdir}/samba/bind9/dlz_bind9_9.so
870 %else
871 %doc %{_defaultdocdir}/%{name}/README.dc-libs
872 %endif # with_dc
873
874 ### DEVEL
875 %files devel
876 %defattr(-,root,root)
877 %{_includedir}/samba-4.0/charset.h
878 %{_includedir}/samba-4.0/core/doserr.h
879 %{_includedir}/samba-4.0/core/error.h
880 %{_includedir}/samba-4.0/core/ntstatus.h
881 %{_includedir}/samba-4.0/core/werror.h
882 %{_includedir}/samba-4.0/credentials.h
883 %{_includedir}/samba-4.0/dcerpc.h
884 %{_includedir}/samba-4.0/dlinklist.h
885 %{_includedir}/samba-4.0/domain_credentials.h
886 %{_includedir}/samba-4.0/gen_ndr/atsvc.h
887 %{_includedir}/samba-4.0/gen_ndr/auth.h
888 %{_includedir}/samba-4.0/gen_ndr/dcerpc.h
889 %{_includedir}/samba-4.0/gen_ndr/epmapper.h
890 %{_includedir}/samba-4.0/gen_ndr/krb5pac.h
891 %{_includedir}/samba-4.0/gen_ndr/lsa.h
892 %{_includedir}/samba-4.0/gen_ndr/mgmt.h
893 %{_includedir}/samba-4.0/gen_ndr/misc.h
894 %{_includedir}/samba-4.0/gen_ndr/nbt.h
895 %{_includedir}/samba-4.0/gen_ndr/drsblobs.h
896 %{_includedir}/samba-4.0/gen_ndr/drsuapi.h
897 %{_includedir}/samba-4.0/gen_ndr/ndr_drsblobs.h
898 %{_includedir}/samba-4.0/gen_ndr/ndr_drsuapi.h
899 %{_includedir}/samba-4.0/gen_ndr/ndr_atsvc.h
900 %{_includedir}/samba-4.0/gen_ndr/ndr_atsvc_c.h
901 %{_includedir}/samba-4.0/gen_ndr/ndr_dcerpc.h
902 %{_includedir}/samba-4.0/gen_ndr/ndr_epmapper.h
903 %{_includedir}/samba-4.0/gen_ndr/ndr_epmapper_c.h
904 %{_includedir}/samba-4.0/gen_ndr/ndr_krb5pac.h
905 %{_includedir}/samba-4.0/gen_ndr/ndr_mgmt.h
906 %{_includedir}/samba-4.0/gen_ndr/ndr_mgmt_c.h
907 %{_includedir}/samba-4.0/gen_ndr/ndr_misc.h
908 %{_includedir}/samba-4.0/gen_ndr/ndr_nbt.h
909 %{_includedir}/samba-4.0/gen_ndr/ndr_samr.h
910 %{_includedir}/samba-4.0/gen_ndr/ndr_samr_c.h
911 %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl.h
912 %{_includedir}/samba-4.0/gen_ndr/ndr_svcctl_c.h
913 %{_includedir}/samba-4.0/gen_ndr/netlogon.h
914 %{_includedir}/samba-4.0/gen_ndr/samr.h
915 %{_includedir}/samba-4.0/gen_ndr/security.h
916 %{_includedir}/samba-4.0/gen_ndr/server_id.h
917 %{_includedir}/samba-4.0/gen_ndr/svcctl.h
918 %{_includedir}/samba-4.0/gensec.h
919 %{_includedir}/samba-4.0/ldap-util.h
920 %{_includedir}/samba-4.0/ldap_errors.h
921 %{_includedir}/samba-4.0/ldap_message.h
922 %{_includedir}/samba-4.0/ldap_ndr.h
923 %{_includedir}/samba-4.0/ldb_wrap.h
924 %{_includedir}/samba-4.0/lookup_sid.h
925 %{_includedir}/samba-4.0/machine_sid.h
926 %{_includedir}/samba-4.0/ndr.h
927 %{_includedir}/samba-4.0/ndr/ndr_drsblobs.h
928 %{_includedir}/samba-4.0/ndr/ndr_drsuapi.h
929 %{_includedir}/samba-4.0/ndr/ndr_svcctl.h
930 %{_includedir}/samba-4.0/ndr/ndr_nbt.h
931 %{_includedir}/samba-4.0/netapi.h
932 %{_includedir}/samba-4.0/param.h
933 %{_includedir}/samba-4.0/passdb.h
934 %{_includedir}/samba-4.0/policy.h
935 %{_includedir}/samba-4.0/read_smb.h
936 %{_includedir}/samba-4.0/registry.h
937 %{_includedir}/samba-4.0/roles.h
938 %{_includedir}/samba-4.0/rpc_common.h
939 %{_includedir}/samba-4.0/samba/session.h
940 %{_includedir}/samba-4.0/samba/version.h
941 %{_includedir}/samba-4.0/share.h
942 %{_includedir}/samba-4.0/smb2.h
943 %{_includedir}/samba-4.0/smb2_constants.h
944 %{_includedir}/samba-4.0/smb2_create_blob.h
945 %{_includedir}/samba-4.0/smb2_signing.h
946 %{_includedir}/samba-4.0/smb_cli.h
947 %{_includedir}/samba-4.0/smb_cliraw.h
948 %{_includedir}/samba-4.0/smb_common.h
949 %{_includedir}/samba-4.0/smb_composite.h
950 %{_includedir}/samba-4.0/smbconf.h
951 %{_includedir}/samba-4.0/smb_constants.h
952 %{_includedir}/samba-4.0/smb_ldap.h
953 %{_includedir}/samba-4.0/smbldap.h
954 %{_includedir}/samba-4.0/smb_raw.h
955 %{_includedir}/samba-4.0/smb_raw_interfaces.h
956 %{_includedir}/samba-4.0/smb_raw_signing.h
957 %{_includedir}/samba-4.0/smb_raw_trans2.h
958 %{_includedir}/samba-4.0/smb_request.h
959 %{_includedir}/samba-4.0/smb_seal.h
960 %{_includedir}/samba-4.0/smb_signing.h
961 %{_includedir}/samba-4.0/smb_unix_ext.h
962 %{_includedir}/samba-4.0/smb_util.h
963 %{_includedir}/samba-4.0/tdr.h
964 %{_includedir}/samba-4.0/torture.h
965 %{_includedir}/samba-4.0/tsocket.h
966 %{_includedir}/samba-4.0/tsocket_internal.h
967 %{_includedir}/samba-4.0/samba_util.h
968 %{_includedir}/samba-4.0/util/attr.h
969 %{_includedir}/samba-4.0/util/byteorder.h
970 %{_includedir}/samba-4.0/util/data_blob.h
971 %{_includedir}/samba-4.0/util/debug.h
972 %{_includedir}/samba-4.0/util/memory.h
973 %{_includedir}/samba-4.0/util/safe_string.h
974 %{_includedir}/samba-4.0/util/string_wrappers.h
975 %{_includedir}/samba-4.0/util/talloc_stack.h
976 %{_includedir}/samba-4.0/util/tevent_ntstatus.h
977 %{_includedir}/samba-4.0/util/tevent_unix.h
978 %{_includedir}/samba-4.0/util/tevent_werror.h
979 %{_includedir}/samba-4.0/util/time.h
980 %{_includedir}/samba-4.0/util/xfile.h
981 %{_includedir}/samba-4.0/util_ldb.h
982 %{_libdir}/libdcerpc-atsvc.so
983 %{_libdir}/libdcerpc-binding.so
984 %{_libdir}/libdcerpc-samr.so
985 %{_libdir}/libdcerpc.so
986 %{_libdir}/libgensec.so
987 %{_libdir}/libndr-krb5pac.so
988 %{_libdir}/libndr-nbt.so
989 %{_libdir}/libndr-standard.so
990 %{_libdir}/libndr.so
991 %{_libdir}/libnetapi.so
992 %{_libdir}/libregistry.so
993 %{_libdir}/libsamba-credentials.so
994 %{_libdir}/libsamba-hostconfig.so
995 %{_libdir}/libsamba-policy.so
996 %{_libdir}/libsamba-util.so
997 %{_libdir}/libsamdb.so
998 %{_libdir}/libsmbclient-raw.so
999 %{_libdir}/libsmbconf.so
1000 %{_libdir}/libtevent-util.so
1001 %{_libdir}/libtorture.so
1002 %{_libdir}/pkgconfig/dcerpc.pc
1003 %{_libdir}/pkgconfig/dcerpc_atsvc.pc
1004 %{_libdir}/pkgconfig/dcerpc_samr.pc
1005 %{_libdir}/pkgconfig/gensec.pc
1006 %{_libdir}/pkgconfig/ndr.pc
1007 %{_libdir}/pkgconfig/ndr_krb5pac.pc
1008 %{_libdir}/pkgconfig/ndr_nbt.pc
1009 %{_libdir}/pkgconfig/ndr_standard.pc
1010 %{_libdir}/pkgconfig/netapi.pc
1011 %{_libdir}/pkgconfig/registry.pc
1012 %{_libdir}/pkgconfig/samba-credentials.pc
1013 %{_libdir}/pkgconfig/samba-hostconfig.pc
1014 %{_libdir}/pkgconfig/samba-policy.pc
1015 %{_libdir}/pkgconfig/samba-util.pc
1016 %{_libdir}/pkgconfig/samdb.pc
1017 %{_libdir}/pkgconfig/smbclient-raw.pc
1018 %{_libdir}/pkgconfig/torture.pc
1019 %{_libdir}/libpdb.so
1020 %{_libdir}/libsmbldap.so
1021
1022 %if %with_dc
1023 %{_includedir}/samba-4.0/dcerpc_server.h
1024 %{_libdir}/libdcerpc-server.so
1025 %{_libdir}/pkgconfig/dcerpc_server.pc
1026 %endif
1027
1028 %if %with_talloc
1029 %{_includedir}/samba-4.0/pytalloc.h
1030 %endif
1031
1032 %if ! %with_libsmbclient
1033 %{_includedir}/samba-4.0/libsmbclient.h
1034 %{_includedir}/samba-4.0/smb_share_modes.h
1035 %endif # ! with_libsmbclient
1036
1037 %if ! %with_libwbclient
1038 %{_includedir}/samba-4.0/wbclient.h
1039 %endif # ! with_libwbclient
1040
1041 ### LIBS
1042 %files libs
1043 %defattr(-,root,root)
1044 %{_libdir}/libdcerpc-atsvc.so.*
1045 %{_libdir}/libdcerpc-binding.so.*
1046 %{_libdir}/libdcerpc-samr.so.*
1047 %{_libdir}/libdcerpc.so.*
1048 %{_libdir}/libgensec.so.*
1049 %{_libdir}/libndr-krb5pac.so.*
1050 %{_libdir}/libndr-nbt.so.*
1051 %{_libdir}/libndr-standard.so.*
1052 %{_libdir}/libndr.so.*
1053 %{_libdir}/libregistry.so.*
1054 %{_libdir}/libsamba-credentials.so.*
1055 %{_libdir}/libsamba-hostconfig.so.*
1056 %{_libdir}/libsamba-policy.so.*
1057 %{_libdir}/libsamba-util.so.*
1058 %{_libdir}/libsamdb.so.*
1059 %{_libdir}/libsmbclient-raw.so.*
1060 %{_libdir}/libsmbconf.so.*
1061 %{_libdir}/libtevent-util.so.*
1062 %{_libdir}/libpdb.so.*
1063 %{_libdir}/libsmbldap.so.*
1064
1065 # libraries needed by the public libraries
1066 %{_libdir}/samba/libCHARSET3.so
1067 %{_libdir}/samba/libMESSAGING.so
1068 %{_libdir}/samba/libLIBWBCLIENT_OLD.so
1069 %{_libdir}/samba/libaddns.so
1070 %{_libdir}/samba/libads.so
1071 %{_libdir}/samba/libasn1util.so
1072 %{_libdir}/samba/libauth4.so
1073 %{_libdir}/samba/libauth_sam_reply.so
1074 %{_libdir}/samba/libauth_unix_token.so
1075 %{_libdir}/samba/libauthkrb5.so
1076 %{_libdir}/samba/libcli-ldap-common.so
1077 %{_libdir}/samba/libcli-ldap.so
1078 %{_libdir}/samba/libcli-nbt.so
1079 %{_libdir}/samba/libcli_cldap.so
1080 %{_libdir}/samba/libcli_smb_common.so
1081 %{_libdir}/samba/libcli_spoolss.so
1082 %{_libdir}/samba/libcliauth.so
1083 #%{_libdir}/samba/libclidns.so
1084 %{_libdir}/samba/libcluster.so
1085 %{_libdir}/samba/libcmdline-credentials.so
1086 %{_libdir}/samba/libdbwrap.so
1087 %{_libdir}/samba/libdcerpc-samba.so
1088 %{_libdir}/samba/libdcerpc-samba4.so
1089 %{_libdir}/samba/liberrors.so
1090 %{_libdir}/samba/libevents.so
1091 %{_libdir}/samba/libflag_mapping.so
1092 %{_libdir}/samba/libgpo.so
1093 %{_libdir}/samba/libgse.so
1094 %{_libdir}/samba/libinterfaces.so
1095 %{_libdir}/samba/libkrb5samba.so
1096 %{_libdir}/samba/libldbsamba.so
1097 %{_libdir}/samba/liblibcli_lsa3.so
1098 %{_libdir}/samba/liblibcli_netlogon3.so
1099 %{_libdir}/samba/liblibsmb.so
1100 %{_libdir}/samba/libsmb_transport.so
1101 %{_libdir}/samba/libmsrpc3.so
1102 %{_libdir}/samba/libndr-samba.so
1103 %{_libdir}/samba/libndr-samba4.so
1104 %{_libdir}/samba/libnet_keytab.so
1105 %{_libdir}/samba/libnetif.so
1106 %{_libdir}/samba/libnpa_tstream.so
1107 %{_libdir}/samba/libreplace.so
1108 %{_libdir}/samba/libsamba-modules.so
1109 %{_libdir}/samba/libsamba-net.so
1110 %{_libdir}/samba/libsamba-security.so
1111 %{_libdir}/samba/libsamba-sockets.so
1112 %{_libdir}/samba/libsamba_python.so
1113 %{_libdir}/samba/libsamdb-common.so
1114 %{_libdir}/samba/libsecrets3.so
1115 %{_libdir}/samba/libserver-role.so
1116 %{_libdir}/samba/libshares.so
1117 %{_libdir}/samba/libsamba3-util.so
1118 %{_libdir}/samba/libsmbd_shim.so
1119 %{_libdir}/samba/libsmbldaphelper.so
1120 %{_libdir}/samba/libsmbpasswdparser.so
1121 %{_libdir}/samba/libsmbregistry.so
1122 %{_libdir}/samba/libtdb-wrap.so
1123 %{_libdir}/samba/libtdb_compat.so
1124 %{_libdir}/samba/libtrusts_util.so
1125 %{_libdir}/samba/libutil_cmdline.so
1126 #%{_libdir}/samba/libutil_ntdb.so
1127 %{_libdir}/samba/libutil_reg.so
1128 %{_libdir}/samba/libutil_setid.so
1129 %{_libdir}/samba/libutil_tdb.so
1130 %{_libdir}/samba/libxattr_tdb.so
1131
1132 %if %with_dc
1133 %{_libdir}/samba/libdb-glue.so
1134 %{_libdir}/samba/libHDB_SAMBA4.so
1135 %{_libdir}/samba/libasn1-samba4.so.8
1136 %{_libdir}/samba/libasn1-samba4.so.8.0.0
1137 %{_libdir}/samba/libgssapi-samba4.so.2
1138 %{_libdir}/samba/libgssapi-samba4.so.2.0.0
1139 %{_libdir}/samba/libhcrypto-samba4.so.5
1140 %{_libdir}/samba/libhcrypto-samba4.so.5.0.1
1141 %{_libdir}/samba/libhdb-samba4.so.11
1142 %{_libdir}/samba/libhdb-samba4.so.11.0.2
1143 %{_libdir}/samba/libheimbase-samba4.so.1
1144 %{_libdir}/samba/libheimbase-samba4.so.1.0.0
1145 %{_libdir}/samba/libhx509-samba4.so.5
1146 %{_libdir}/samba/libhx509-samba4.so.5.0.0
1147 %{_libdir}/samba/libkrb5-samba4.so.26
1148 %{_libdir}/samba/libkrb5-samba4.so.26.0.0
1149 %{_libdir}/samba/libroken-samba4.so.19
1150 %{_libdir}/samba/libroken-samba4.so.19.0.1
1151 %{_libdir}/samba/libwind-samba4.so.0
1152 %{_libdir}/samba/libwind-samba4.so.0.0.0
1153 %endif
1154
1155 %if %{with_ldb}
1156 %{_libdir}/samba/libldb.so.1
1157 %{_libdir}/samba/libldb.so.%{ldb_version}
1158 %{_libdir}/samba/libpyldb-util.so.1
1159 %{_libdir}/samba/libpyldb-util.so.%{ldb_version}
1160 %endif
1161 %if %{with_talloc}
1162 %{_libdir}/samba/libtalloc.so.2
1163 %{_libdir}/samba/libtalloc.so.%{talloc_version}
1164 %{_libdir}/samba/libpytalloc-util.so.2
1165 %{_libdir}/samba/libpytalloc-util.so.%{talloc_version}
1166 %endif
1167 %if %{with_tevent}
1168 %{_libdir}/samba/libtevent.so.0
1169 %{_libdir}/samba/libtevent.so.%{tevent_version}
1170 %endif
1171 %if %{with_tdb}
1172 %{_libdir}/samba/libtdb.so.1
1173 %{_libdir}/samba/libtdb.so.%{tdb_version}
1174 %endif
1175 ## we don't build it for now
1176 #%if %{with_ntdb}
1177 #%{_libdir}/samba/libntdb.so.0
1178 #%{_libdir}/samba/libntdb.so.%{ntdb_version}
1179 #%endif
1180
1181 %if ! %with_libsmbclient
1182 %{_libdir}/samba/libsmbclient.so.*
1183 %{_libdir}/samba/libsmbsharemodes.so.*
1184 %{_mandir}/man7/libsmbclient.7*
1185 %endif # ! with_libsmbclient
1186
1187 %if ! %with_libwbclient
1188 %{_libdir}/samba/libwbclient.so.*
1189 %{_libdir}/samba/libwinbind-client.so
1190 %endif # ! with_libwbclient
1191
1192 ### LIBSMBCLIENT
1193 %if %with_libsmbclient
1194 %files -n libsmbclient
1195 %defattr(-,root,root)
1196 %attr(755,root,root) %{_libdir}/libsmbclient.so.*
1197 %attr(755,root,root) %{_libdir}/libsmbsharemodes.so.*
1198
1199 ### LIBSMBCLIENT-DEVEL
1200 %files -n libsmbclient-devel
1201 %defattr(-,root,root)
1202 %{_includedir}/samba-4.0/libsmbclient.h
1203 %{_includedir}/samba-4.0/smb_share_modes.h
1204 %{_libdir}/libsmbclient.so
1205 %{_libdir}/libsmbsharemodes.so
1206 %{_libdir}/pkgconfig/smbclient.pc
1207 %{_libdir}/pkgconfig/smbsharemodes.pc
1208 %{_mandir}/man7/libsmbclient.7*
1209 %endif # with_libsmbclient
1210
1211 ### LIBWBCLIENT
1212 %if %with_libwbclient
1213 %files -n libwbclient
1214 %defattr(-,root,root)
1215 %{_libdir}/libwbclient.so.*
1216 %{_libdir}/samba/libwinbind-client.so
1217
1218 ### LIBWBCLIENT-DEVEL
1219 %files -n libwbclient-devel
1220 %defattr(-,root,root)
1221 %{_includedir}/samba-4.0/wbclient.h
1222 %{_libdir}/libwbclient.so
1223 %{_libdir}/pkgconfig/wbclient.pc
1224 %endif # with_libwbclient
1225
1226 ### PIDL
1227 %files pidl
1228 %defattr(-,root,root,-)
1229 %{perl_vendorlib}/Parse/Pidl*
1230 %{_mandir}/man1/pidl*
1231 %{_mandir}/man3/Parse::Pidl*
1232 %attr(755,root,root) %{_bindir}/pidl
1233
1234 ### PYTHON
1235 %files python
1236 %defattr(-,root,root,-)
1237 %{python_sitearch}/*
1238
1239 ### SWAT
1240 %files swat
1241 %defattr(-,root,root)
1242 %config(noreplace) %{_sysconfdir}/xinetd.d/swat
1243 %{_datadir}/samba/swat
1244 %{_sbindir}/swat
1245 %{_mandir}/man8/swat.8*
1246 #%attr(755,root,root) %{_libdir}/samba/*.msg
1247
1248 ### TEST
1249 %files test
1250 %defattr(-,root,root)
1251 %{_bindir}/asystest
1252 %{_bindir}/dbwrap_torture
1253 %{_bindir}/gentest
1254 %{_bindir}/locktest
1255 %{_bindir}/locktest2
1256 %{_bindir}/locktest3
1257 %{_bindir}/masktest
1258 %{_bindir}/masktest3
1259 %{_bindir}/msgtest
1260 %{_bindir}/ndrdump
1261 %{_bindir}/nsstest
1262 %{_bindir}/pdbtest
1263 %{_bindir}/pthreadpooltest
1264 %{_bindir}/rpc_open_tcp
1265 %{_bindir}/smbconftort
1266 %{_bindir}/smbtorture
1267 %{_bindir}/smbtorture3
1268 %{_bindir}/test_lp_load
1269 %{_bindir}/timelimit
1270 %{_bindir}/versiontest
1271 %{_bindir}/vfstest
1272 %{_bindir}/vlp
1273 %{_libdir}/libtorture.so.*
1274 %{_libdir}/samba/libsubunit.so
1275 %if %with_dc
1276 %{_libdir}/samba/libdlz_bind9_for_torture.so
1277 %endif
1278 %{_mandir}/man1/gentest.1*
1279 %{_mandir}/man1/locktest.1*
1280 %{_mandir}/man1/masktest.1*
1281 %{_mandir}/man1/ndrdump.1*
1282 %{_mandir}/man1/smbtorture.1*
1283 %{_mandir}/man1/vfstest.1*
1284
1285 ### WINBIND
1286 %files winbind
1287 %defattr(-,root,root)
1288 #%{_bindir}/wbinfo3
1289 %{_libdir}/samba/idmap
1290 %{_libdir}/samba/nss_info
1291 %{_libdir}/samba/libnss_info.so
1292 %{_libdir}/samba/libidmap.so
1293 %{_sbindir}/winbindd
1294 %attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
1295 %{_unitdir}/winbind.service
1296 %{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind
1297 %{_mandir}/man8/winbindd.8*
1298 %{_mandir}/man8/idmap_*.8*
1299
1300 ### WINBIND-CLIENTS
1301 %files winbind-clients
1302 %defattr(-,root,root)
1303 %{_bindir}/ntlm_auth
1304 %{_bindir}/ntlm_auth3
1305 %{_bindir}/wbinfo
1306 %{_libdir}/libnss_winbind.so*
1307 %{_libdir}/libnss_wins.so*
1308 %{_libdir}/security/pam_winbind.so
1309 %config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
1310 %{_mandir}/man1/ntlm_auth.1.gz
1311 %{_mandir}/man1/wbinfo.1*
1312 %{_mandir}/man5/pam_winbind.conf.5*
1313 %{_mandir}/man8/pam_winbind.8*
1314
1315 ### WINBIND-KRB5-LOCATOR
1316 %files winbind-krb5-locator
1317 %defattr(-,root,root)
1318 %ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
1319 %{_libdir}/winbind_krb5_locator.so
1320 %{_mandir}/man7/winbind_krb5_locator.7*
1321
1322 %changelog
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