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