source: projects/specs/trunk/s/samba/samba-vl.spec @ 521

Revision 521, 50.4 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%define tdb_version 1.1.2
2%define talloc_version 1.2.0
3%define samba_version 3.3.10
4%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
5
6# samba 3.3.x serial build number. (tdb/talloc also use this release number)
7#
8# (注) samba/libtdb/libtalloc全てのバージョンが上がるときのみrelease numberを
9# 1にする
10#
11%define samba_release 12
12
13Summary: The Samba Suite of programs
14Summary(ja): Samba スイート
15Name: samba
16Version: %{samba_version}
17Release: %{samba_release}%{?_dist_release}
18License: GPLv3+ and LGPLv3+
19Group: System Environment/Daemons
20URL: http://www.samba.org/
21
22Source: http://www.samba.org/samba/ftp/samba/%{name}-%{version}.tar.gz
23
24# Vine specific replacement-files
25Source1: samba.log
26Source2: samba.xinetd
27Source3: swat.desktop
28Source4: samba.sysconfig
29Source5: smb.init
30Source6: samba.pamd
31Source7: smbprint
32Source8: winbind.init
33Source9: smb.conf.default
34Source10: nmb.init
35Source11: pam_winbind.conf
36
37# Don't depend on Net::LDAP
38Source999: filter-requires-samba.sh
39
40# upstream patches.  Applied first so that they'll break our patches rather
41# than the other way around
42# (none right now)
43
44# generic patches
45Patch102: samba-3.2.0pre1-pipedir.patch
46Patch104: samba-3.0.0rc3-nmbd-netbiosname.patch
47# The passwd part has been applied, but not the group part
48Patch107: samba-3.2.0pre1-grouppwd.patch
49Patch200: samba-3.2.5-inotify.patch
50Patch201: samba-3.2.8-nmbd_lmb_delay.patch
51
52# security fixes
53Patch1000: samba-3.3.10_CVE-2010-0547.patch
54
55Requires(pre): samba-common = %{version}-%{release}
56Requires: pam >= 0:0.64
57Requires: logrotate >= 0:3.4
58Requires: krb5-libs, libacl, libattr
59BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
60Requires(post): /sbin/chkconfig, /sbin/service
61Requires(preun): /sbin/chkconfig, /sbin/service
62BuildRequires: pam-devel, readline-devel, ncurses-devel, libacl-devel
63BuildRequires: krb5-devel, openldap-devel, openssl-devel, cups-devel
64BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel
65
66%if %{?_dist_release}!="vl5"
67BuildRequires: libuuid-devel
68%endif
69
70# Working around perl dependency problem from docs
71%define __find_requires %{SOURCE999}
72
73
74Vendor:         Project Vine
75Distribution:   Vine Linux
76
77%description
78Samba is the suite of programs by which a lot of PC-related machines
79share files, printers, and other information (such as lists of
80available files and printers). The Windows NT, OS/2, and Linux
81operating systems support this natively, and add-on packages can
82enable the same thing for DOS, Windows, VMS, UNIX of all kinds, MVS,
83and more. This package provides an SMB/CIFS server that can be used to
84provide network services to SMB/CIFS clients.
85Samba uses NetBIOS over TCP/IP (NetBT) protocols and does NOT
86need the NetBEUI (Microsoft Raw NetBIOS frame) protocol.
87
88%description -l ja
89Samba は Microsoft Windows や OS/2、その他の Linux マシンを含む SMB/CIFS
90クライアントにネットワークファイル・プリンタ共有サービスを提供します。
91Samba は NetBIOS over TCP/IP (NetBT, NBT) プロトコルを使用しますので、
92NetBUEI (Microsoft Raw NetBIOS frame) プロトコルは必要ありません。
93
94
95%package client
96Summary: Samba client programs
97Summary(ja): Samba クライアントプログラム
98Group: Applications/System
99Requires: samba-common = %{samba_version}-%{release}
100Obsoletes: smbfs
101
102%description client
103The samba-client package provides some SMB/CIFS clients to complement
104the built-in SMB/CIFS filesystem in Linux. These clients allow access
105of SMB/CIFS shares and printing to SMB/CIFS printers.
106
107%description client -l ja
108samba-client は Linux カーネルがサポートしている SMB ファイルシステム
109機能を操作する SMB クライアントを提供します。
110これらは SMB 共有のアクセスと SMB プリンタへの印刷を実現します。
111
112
113%package common
114Summary: Files used by both Samba servers and clients
115Summary(ja): Samba サーバーとクライアントの両方に使用されるファイル
116Requires: libtdb >= %{tdb_version}
117Requires: libtalloc >= %{talloc_version}
118Group: Applications/System
119Requires(pre): /usr/sbin/groupadd
120Requires(post): /sbin/chkconfig, /sbin/service, coreutils
121Requires(preun): /sbin/chkconfig, /sbin/service
122
123%description common
124Samba-common provides files necessary for both the server and client
125packages of Samba.
126
127%description common -l ja
128samba-common は Samba のサーバーとクライアントの両方のパッケージで
129使用される共通のファイルを提供します。
130
131
132%package winbind
133Summary: Samba winbind
134Group: Applications/System
135Requires: samba-common = %{samba_version}-%{release}
136Requires(pre): /usr/sbin/groupadd
137Requires(post): /sbin/chkconfig, /sbin/service, coreutils
138Requires(preun): /sbin/chkconfig, /sbin/service
139
140%description winbind
141The samba-winbind package provides the winbind daemon, a NSS library, a PAM
142module and some client tools. Winbind enables Linux to be a full member in
143Windows domains and to use Windows user and group accounts on Linux.
144
145
146%package winbind-devel
147Summary: Developer tools for the winbind library
148Group: Development/Libraries
149Requires: samba-winbind = %{samba_version}-%{release}
150
151%description winbind-devel
152The samba-winbind package provides developer tools for the wbclient library.
153
154
155%package swat
156Summary: The Samba SMB server Web configuration program
157Summary(ja): Web ベースの Samba サーバ設定ツール
158Group: Applications/System
159Requires: samba = %{samba_version}-%{release}, xinetd
160
161%description swat
162The samba-swat package includes the new SWAT (Samba Web Administration
163Tool), for remotely managing Samba's smb.conf file using your favorite
164Web browser.
165
166%description swat -l ja
167SWAT (Samba Web Administration Tool) を使うと、Samba の管理をお好きな Web
168ブラウザで行うことができるようになります。
169
170%package doc
171Summary: Documentation for the Samba suite
172Group: Applications/Documentation
173Requires: samba-common = %{samba_version}-%{release}
174
175%description doc
176The samba-doc package includes all the non-manpage documentation for the
177Samba suite.
178
179
180%package domainjoin-gui
181Summary: Domainjoin GUI
182Group: Applications/System
183Requires: samba-common = %{samba_version}-%{release}, gtk2
184
185%description domainjoin-gui
186The samba-domainjoin-gui package includes a domainjoin gtk application.
187
188
189%package -n libsmbclient
190Summary: The SMB client library
191Summary(ja): SMB クライアントライブラリ
192Group: System Environment/Libraries
193Obsoletes: samba-libsmbclient < 3.1
194Provides: samba-libsmbclient = %{samba_version}-%{release}
195
196%description -n libsmbclient
197The libsmbclient contains the SMB client library from the Samba suite.
198
199%description -n libsmbclient -l ja
200libsmbclient は Samba クライアントの機能を提供するライブラリを
201提供します。
202
203%if %build_compat32
204
205%package -n compat32-libsmbclient
206Summary: The SMB client library
207Summary(ja): SMB クライアントライブラリ
208Group: System Environment/Libraries
209Provides: compat32-samba-libsmbclient = %{samba_version}-%{release}
210
211%description -n compat32-libsmbclient
212The libsmbclient contains the SMB client library from the Samba suite.
213
214%description -n compat32-libsmbclient -l ja
215libsmbclient は Samba クライアントの機能を提供するライブラリを
216提供します。
217
218%package -n compat32-samba-winbind
219Summary: Samba winbind
220Group: Applications/System
221Requires: samba-common = %{samba_version}-%{release}
222Requires(pre): /usr/sbin/groupadd
223Requires(post): /sbin/chkconfig, /sbin/service, coreutils
224Requires(preun): /sbin/chkconfig, /sbin/service
225
226%description -n compat32-samba-winbind
227The samba-winbind package provides the winbind daemon, a NSS library, a PAM
228module and some client tools. Winbind enables Linux to be a full member in
229Windows domains and to use Windows user and group accounts on Linux.
230
231%package -n compat32-libtdb
232Summary: The TDB library
233Group: System Environment/Libraries
234Version: %{tdb_version}
235
236%description -n compat32-libtdb
237The TDB library from the Samba suite.
238
239%package -n compat32-libtalloc
240Summary: The talloc library
241Group: System Environment/Libraries
242Version: %{talloc_version}
243
244%description -n compat32-libtalloc
245The talloc library from the Samba suite.
246
247%endif
248
249%package -n libsmbclient-devel
250Summary: Developer tools for the SMB client library
251Summary(ja): SMB クライアントライブラリ開発用ファイル
252Group: Development/Libraries
253Requires: libsmbclient = %{samba_version}-%{release}
254Obsoletes: samba-libsmbclient-devel < 3.1
255Provides: samba-libsmbclient-devel = %{samba_version}-%{release}
256
257%description -n libsmbclient-devel
258The libsmbclient-devel package contains the header files and libraries needed to
259develop programs that link against the SMB client library in the Samba suite.
260
261%description -n libsmbclient-devel -l ja
262libsmbclient-devel は Samba クライアントの機能を提供するライブラリを
263使ったアプリケーションを開発するためのファイルを提供します。
264
265
266%package -n libtdb
267Summary: The TDB library
268Group: System Environment/Libraries
269Version: %{tdb_version}
270
271%description -n libtdb
272The TDB library from the Samba suite.
273
274
275%package -n tdb-tools
276Summary: The TDB tools
277Group: Applications/System
278Version: %{tdb_version}
279Requires: libtdb = %{tdb_version}-%{release}
280
281%description -n tdb-tools
282Some TDB tools from the Samba suite.
283
284
285%package -n libtdb-devel
286Summary: Developer tools for the TDB library
287Group: Development/Libraries
288Version: %{tdb_version}
289Requires: libtdb = %{tdb_version}-%{release}
290
291%description -n libtdb-devel
292The libtdb-devel package contains the header files and libraries needed to
293develop programs that link against the TDB library in the Samba suite.
294
295
296%package -n libtalloc
297Summary: The talloc library
298Group: System Environment/Libraries
299Version: %{talloc_version}
300
301%description -n libtalloc
302The talloc library from the Samba suite.
303
304
305%package -n libtalloc-devel
306Summary: Developer tools for the talloc library
307Group: Development/Libraries
308Version: %{talloc_version}
309Requires: libtalloc = %{talloc_version}-%{release}
310
311%description -n libtalloc-devel
312The libtalloc-devel package contains the header files and libraries needed to
313develop programs that link against the talloc library in the Samba suite.
314
315
316%prep
317%setup -q
318
319# copy Red Hat specific scripts
320mkdir packaging/Vine
321cp packaging/RHEL/setup/smbusers packaging/Vine/
322cp %{SOURCE5} packaging/Vine/
323cp %{SOURCE6} packaging/Vine/
324cp %{SOURCE7} packaging/Vine/
325cp %{SOURCE8} packaging/Vine/winbind.init
326cp %{SOURCE9} packaging/Vine/
327cp %{SOURCE10} packaging/Vine/
328cp %{SOURCE11} packaging/Vine/
329
330# Upstream patches
331#(none)
332# generic patches
333%patch102 -p1 -b .pipedir
334#%patch103 -p1 -b .logfiles
335#%patch104 -p1 -b .nmbd-netbiosname # FIXME: does not apply
336%patch107 -p1 -b .grouppwd
337%patch200 -p0 -b .inotify
338#%patch201 -p1 -b .nmbd_lmb_delay
339
340# security fixes
341%patch1000 -p1 -b .CVE-2010-0547
342
343mv source/VERSION source/VERSION.orig
344sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{release}\"/' < source/VERSION.orig > source/VERSION
345cd source
346script/mkversion.sh
347cd ..
348
349#Remove smbldap-tools, they are already packaged separately in Fedora
350rm -fr examples/LDAP/smbldap-tools-*/
351
352
353%build
354cd source
355sh autogen.sh
356%ifarch i386 sparc
357RPM_OPT_FLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64"
358%endif
359%ifarch ia64
360#libtoolize --copy --force     # get it to recognize IA-64
361#autoheader
362#autoconf
363EXTRA="-D_LARGEFILE64_SOURCE"
364%endif
365CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" %configure \
366        --with-dnsupdate \
367        --with-ads \
368        --with-acl-support \
369        --with-automount \
370        --with-dnsupdate \
371        --with-libsmbclient \
372        --with-libsmbsharemodes \
373        --with-mmap \
374        --with-pam \
375        --with-pam_smbpass \
376        --with-quotas \
377        --with-sendfile-support \
378        --with-syslog \
379        --with-utmp \
380        --with-vfs \
381        --with-winbind \
382        --without-smbwrapper \
383        --with-lockdir=/var/lib/samba \
384        --with-piddir=/var/run \
385        --with-mandir=%{_mandir} \
386        --with-privatedir=/var/lib/samba/private \
387        --with-logfilebase=/var/log/samba \
388        --with-libdir=%{_libdir}/samba \
389        --with-modulesdir=%{_libdir}/samba \
390        --with-configdir=%{_sysconfdir}/samba \
391        --with-pammodulesdir=%{_lib}/security \
392        --with-swatdir=%{_datadir}/swat \
393        --with-shared-modules=idmap_ad,idmap_rid \
394        --with-cifsupcall \
395        --disable-fam
396
397#       --with-cluster-support \
398#       --with-aio-support \
399
400
401make  CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" \
402        proto
403
404make  LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}/source/bin \
405        CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" %{?_smp_mflags} \
406        all nsswitch/libnss_wins.so modules test_pam_modules test_nss_modules test_shlibs
407
408make  LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}/source/bin \
409        CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" %{?_smp_mflags} \
410        -C lib/netapi/examples
411
412make  CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" \
413        debug2html smbfilter bin/cifs.upcall
414
415( cd client ; gcc -o mount.cifs $RPM_OPT_FLAGS -Wall -O -D_GNU_SOURCE -D_LARGEFILE64_SOURCE mount.cifs.c )
416( cd client ; gcc -o umount.cifs $RPM_OPT_FLAGS -Wall -O -D_GNU_SOURCE -D_LARGEFILE64_SOURCE umount.cifs.c )
417
418
419
420%install
421rm -rf $RPM_BUILD_ROOT
422
423build_libdir="$RPM_BUILD_ROOT%{_libdir}"
424
425mkdir -p $RPM_BUILD_ROOT/sbin
426mkdir -p $RPM_BUILD_ROOT/usr/{sbin,bin}
427mkdir -p $RPM_BUILD_ROOT/%{_initrddir}
428mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/{pam.d,logrotate.d,security}
429mkdir -p $RPM_BUILD_ROOT/%{_lib}/security
430mkdir -p $RPM_BUILD_ROOT/var/lib/samba
431mkdir -p $RPM_BUILD_ROOT/var/lib/samba/private
432mkdir -p $RPM_BUILD_ROOT/var/lib/samba/winbindd_privileged
433mkdir -p $RPM_BUILD_ROOT/var/lib/samba/scripts
434mkdir -p $RPM_BUILD_ROOT/var/log/samba/old
435mkdir -p $RPM_BUILD_ROOT/var/spool/samba
436mkdir -p $RPM_BUILD_ROOT/%{_datadir}/swat/using_samba
437mkdir -p $RPM_BUILD_ROOT/var/run/winbindd
438mkdir -p $RPM_BUILD_ROOT/%{_libdir}/samba
439mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
440
441cd source
442
443%makeinstall \
444        BINDIR=$RPM_BUILD_ROOT%{_bindir} \
445        BASEDIR=$RPM_BUILD_ROOT%{_prefix} \
446        SBINDIR=$RPM_BUILD_ROOT%{_sbindir} \
447        DATADIR=$RPM_BUILD_ROOT%{_datadir} \
448        LOCKDIR=$RPM_BUILD_ROOT/var/lib/samba \
449        PRIVATEDIR=$RPM_BUILD_ROOT%{_sysconfdir}/samba \
450        LIBDIR=$RPM_BUILD_ROOT%{_libdir}/samba \
451        MODULESDIR=$RPM_BUILD_ROOT%{_libdir}/samba \
452        CONFIGDIR=$RPM_BUILD_ROOT%{_sysconfdir}/samba \
453        PAMMODULESDIR=$RPM_BUILD_ROOT/%{_lib}/security \
454        MANDIR=$RPM_BUILD_ROOT%{_mandir} \
455        VARDIR=$RPM_BUILD_ROOT/var/log/samba \
456        CODEPAGEDIR=$RPM_BUILD_ROOT%{_libdir}/samba \
457        SWATDIR=$RPM_BUILD_ROOT%{_datadir}/swat \
458        SAMBABOOK=$RPM_BUILD_ROOT%{_datadir}/swat/using_samba \
459        PIDDIR=$RPM_BUILD_ROOT/var/run
460
461cd ..
462
463# Install other stuff
464install -m644 packaging/Vine/smb.conf.default $RPM_BUILD_ROOT%{_sysconfdir}/samba/smb.conf
465install -m755 source/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir}
466install -m644 packaging/Vine/smbusers $RPM_BUILD_ROOT%{_sysconfdir}/samba/smbusers
467install -m755 packaging/Vine/smbprint $RPM_BUILD_ROOT%{_bindir}
468install -m755 packaging/Vine/smb.init $RPM_BUILD_ROOT%{_initrddir}/smb
469install -m755 packaging/Vine/nmb.init $RPM_BUILD_ROOT%{_initrddir}/nmb
470install -m755 packaging/Vine/winbind.init $RPM_BUILD_ROOT%{_initrddir}/winbind
471install -m644 packaging/Vine/pam_winbind.conf $RPM_BUILD_ROOT%{_sysconfdir}/security
472#ln -s ../..%{_initrddir}/smb  $RPM_BUILD_ROOT%{_sbindir}/samba
473install -m644 packaging/Vine/samba.pamd $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/samba
474install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/samba
475echo 127.0.0.1 localhost > $RPM_BUILD_ROOT%{_sysconfdir}/samba/lmhosts
476mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/openldap/schema
477install -m644 examples/LDAP/samba.schema $RPM_BUILD_ROOT%{_sysconfdir}/openldap/schema/samba.schema
478
479# winbind
480mkdir -p $RPM_BUILD_ROOT%{_libdir}
481install -m 755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/%{_lib}/libnss_winbind.so.2
482ln -sf /%{_lib}/libnss_winbind.so.2  $RPM_BUILD_ROOT%{_libdir}/libnss_winbind.so
483install -m 755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/%{_lib}/libnss_wins.so.2
484ln -sf /%{_lib}/libnss_wins.so.2  $RPM_BUILD_ROOT%{_libdir}/libnss_wins.so
485
486# libraries {
487mkdir -p $RPM_BUILD_ROOT%{_libdir} $RPM_BUILD_ROOT%{_includedir}
488
489# talloc
490cd source/lib/talloc
491# just to get the correct .pc file generated
492./autogen.sh && ./configure --prefix=%{_prefix} --libdir=%{_libdir}
493cd ../../..
494install -m 644 source/lib/talloc/talloc.pc $build_libdir/pkgconfig/
495
496# tdb
497cd source/lib/tdb
498# just to get the correct .pc file generated
499./autogen.sh && ./configure --prefix=%{_prefix} --libdir=%{_libdir}
500cd ../../..
501install -m 644 source/lib/tdb/tdb.pc $build_libdir/pkgconfig/
502
503# make install puts libraries in the wrong place
504# (but at least gets the versioning right now)
505
506list="smbclient smbsharemodes netapi talloc tdb wbclient"
507build_libdir="$RPM_BUILD_ROOT%{_libdir}"
508for i in $list; do
509        cp -P $build_libdir/samba/lib$i.so* $build_libdir/
510        install -m 644 source/pkgconfig/$i.pc $build_libdir/pkgconfig/ || true
511        rm -f $build_libdir/samba/lib$i.so* $build_libdir/samba/lib$i.a || true
512done
513
514install -m 644 source/lib/talloc/talloc.pc $build_libdir/pkgconfig/
515install -m 644 source/lib/tdb/tdb.pc $build_libdir/pkgconfig/
516
517/sbin/ldconfig -n $RPM_BUILD_ROOT%{_libdir}/
518
519# }
520
521mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d
522install -m644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/swat
523
524mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
525install -m644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/samba
526install -m755 source/bin/mount.cifs $RPM_BUILD_ROOT/sbin/mount.cifs
527install -m755 source/bin/umount.cifs $RPM_BUILD_ROOT/sbin/umount.cifs
528
529install -m 755 source/lib/netapi/examples/bin/netdomjoin-gui $RPM_BUILD_ROOT/%{_sbindir}/netdomjoin-gui
530mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}
531install -m 644 source/lib/netapi/examples/netdomjoin-gui/samba.ico $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/samba.ico
532install -m 644 source/lib/netapi/examples/netdomjoin-gui/logo.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo.png
533install -m 644 source/lib/netapi/examples/netdomjoin-gui/logo-small.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo-small.png
534
535rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/editreg.1*
536rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
537rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
538#rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbget.1*
539rm -f $RPM_BUILD_ROOT%{_mandir}/man5/smbgetrc.5*
540rm -f $RPM_BUILD_ROOT%{_mandir}/man1/vfstest.1*
541rm -f $RPM_BUILD_ROOT%{_mandir}/man1/testprns.1*
542rm -f $RPM_BUILD_ROOT%{_mandir}/man8/smbmount.8*
543rm -f $RPM_BUILD_ROOT%{_mandir}/man8/smbmnt.8*
544rm -f $RPM_BUILD_ROOT%{_mandir}/man8/smbumount.8*
545
546#Rename ldb tools, as samba3 has an old copy of ldb.
547mv -f $RPM_BUILD_ROOT%{_bindir}/ldbadd $RPM_BUILD_ROOT%{_bindir}/ldb3add
548mv -f $RPM_BUILD_ROOT%{_bindir}/ldbdel $RPM_BUILD_ROOT%{_bindir}/ldb3del
549mv -f $RPM_BUILD_ROOT%{_bindir}/ldbmodify $RPM_BUILD_ROOT%{_bindir}/ldb3modify
550mv -f $RPM_BUILD_ROOT%{_bindir}/ldbsearch $RPM_BUILD_ROOT%{_bindir}/ldb3search
551mv -f $RPM_BUILD_ROOT%{_bindir}/ldbrename $RPM_BUILD_ROOT%{_bindir}/ldb3rename
552mv -f $RPM_BUILD_ROOT%{_bindir}/ldbedit $RPM_BUILD_ROOT%{_bindir}/ldb3edit
553mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbadd.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3add.1
554mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbdel.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3del.1
555mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbedit.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3edit.1
556mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbmodify.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3modify.1
557mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbsearch.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3search.1
558mv -f $RPM_BUILD_ROOT%{_mandir}/man1/ldbrename.1 $RPM_BUILD_ROOT%{_mandir}/man1/ldb3rename.1
559
560# why are these getting installed in the wrong place?
561rm -f $RPM_BUILD_ROOT%{_sbindir}/{u,}mount.cifs
562
563
564%clean
565rm -rf $RPM_BUILD_ROOT
566
567#%pre
568
569%post
570/sbin/chkconfig --add smb
571/sbin/chkconfig --add nmb
572if [ "$1" -ge "1" ]; then
573        /sbin/service smb condrestart >/dev/null 2>&1 || :
574        /sbin/service nmb condrestart >/dev/null 2>&1 || :
575fi
576exit 0
577
578%preun
579if [ $1 = 0 ] ; then
580    /sbin/service smb stop >/dev/null 2>&1 || :
581    /sbin/service nmb stop >/dev/null 2>&1 || :
582    /sbin/chkconfig --del smb
583    /sbin/chkconfig --del nmb
584fi
585exit 0
586
587#%postun
588
589
590%pre winbind
591/usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
592
593%post winbind
594/sbin/chkconfig --add winbind
595
596if [ "$1" -ge "1" ]; then
597        /sbin/service winbind condrestart >/dev/null 2>&1 || :
598fi
599
600%post common
601/sbin/ldconfig
602
603# This script must be run always on installs or upgrades
604# it checks if a previous installation have created files
605# under /var/cache/samba and move them in that case as the
606# new package wants them to be under /var/lib/samba for
607# FHS compliance
608#
609# - we must stop the dameon if running and restart it
610#   after the script if it was
611# - we do not overwrite newer files
612# - even if /etc/init.d/smb is in samba and not
613#   samba-common we need to stop smbd/nmbd, if they
614#   are running, here as well, or we will mess up
615#   shared (between winbindd and smbd/nmbd) tdbs
616
617OLDPATH="/var/cache/samba"
618NEWPATH="/var/lib/samba"
619
620eval ls $OLDPATH/*.tdb >/dev/null 2>&1
621if [ $? = 0 ]; then
622    eval testparm -s 2>/dev/null |grep "lock dir" >/dev/null
623    if [ $? = 0 ]; then
624        echo "Warning: lock dir explicitly set. Not moving tdb files to new default location"
625    else
626
627        #Stop daemons before we move the files around
628
629        #this is what condrestart checks as well
630        if [ -f /var/lock/subsys/winbindd ]; then
631                /sbin/service winbind stop >/dev/null 2>&1 || :
632                # Use a dirty trick to fool condrestart later
633                touch /var/lock/subsys/winbindd
634        fi
635
636        if [ -f /var/lock/subsys/smb ]; then
637                /sbin/service smb stop >/dev/null 2>&1 || :
638                # We need to stop smbd here as we are moving also smbd owned files
639                # but we can't restart it until the new server is installed.
640                # Use a dirty trick to fool condrestart later
641                touch /var/lock/subsys/smb
642        fi
643
644        if [ -f /var/lock/subsys/nmb ]; then
645                /sbin/service nmb stop >/dev/null 2>&1 || :
646                # We need to stop smbd here as we are moving also smbd owned files
647                # but we can't restart it until the new server is installed.
648                # Use a dirty trick to fool condrestart later
649                touch /var/lock/subsys/nmb
650        fi
651
652        eval ls $NEWPATH/*.tdb >/dev/null 2>&1
653        if [ $? = 0 ]; then
654                #something strange here, lets backup this stuff and avoid just wiping it
655
656                mkdir $NEWPATH.pkgbkp
657                mv -f $NEWPATH/*.tdb $NEWPATH.pkgbkp/ >/dev/null 2>&1
658                mv -f $NEWPATH/*.dat $NEWPATH.pkgbkp/ >/dev/null 2>&1
659                mv -f $NEWPATH/perfmon $NEWPATH.pkgbkp/ >/dev/null 2>&1
660                mv -f $NEWPATH/printing $NEWPATH.pkgbkp/ >/dev/null 2>&1
661        fi
662
663        mv -f $OLDPATH/*.tdb $NEWPATH/ >/dev/null 2>&1
664        mv -f $OLDPATH/*.dat $NEWPATH/ >/dev/null 2>&1
665        mv -f $OLDPATH/perfmon $NEWPATH/ >/dev/null 2>&1
666        mv -f $OLDPATH/printing $NEWPATH/ >/dev/null 2>&1
667
668    fi
669fi
670
671# We also moved private files from /etc/samba to
672# /var/lib/samba/private so we need to migrate these as well
673
674#secrets.tdb
675if [ -f %{_sysconfdir}/samba/secrets.tdb ]; then
676        eval testparm -s 2>/dev/null |grep "private dir" >/dev/null
677        if [ $? = 0 ]; then
678                echo "Warning: private dir explicitly set. Not moving secrets.tdb to new default location"
679        else
680                if [ -f /var/lib/samba/private/secrets.tdb ]; then
681                        mv -f /var/lib/samba/private/secrets.tdb /var/lib/samba/private/secrets.tdb.old
682                fi
683                mv -f %{_sysconfdir}/samba/secrets.tdb /var/lib/samba/private/secrets.tdb
684        fi
685fi
686
687#smbpasswd
688if [ -f %{_sysconfdir}/samba/smbpasswd ]; then
689        eval testparm -s 2>/dev/null |grep "smb passwd file" >/dev/null
690        if [ $? = 0 ]; then
691                echo "Warning: smbpasswd file location explicitly set. Not moving smbpasswd to new default location"
692        else
693                if [ -f /var/lib/samba/private/smbpasswd ]; then
694                        mv -f /var/lib/samba/private/smbpasswd /var/lib/samba/private/smbpasswd.old
695                fi
696                mv -f %{_sysconfdir}/samba/smbpasswd /var/lib/samba/private/smbpasswd
697        fi
698fi
699
700#passdb.tdb
701if [ -f %{_sysconfdir}/samba/passdb.tdb ]; then
702        eval testparm -s 2>/dev/null |grep "private dir" >/dev/null || testparm -s 2>/dev/null |grep -P "^\s*passdb\s*backend\s*=.*tdbsam:/etc/samba/passdb.tdb.*"
703        if [ $? = 0 ]; then
704                echo "Warning: passdb.tdb location explicitly set. Not moving passdb.tdb to new default location"
705        else
706                if [ -f /var/lib/samba/private/passdb.tdb ]; then
707                        mv -f /var/lib/samba/private/passdb.tdb /var/lib/samba/private/passdb.tdb.old
708                fi
709                mv -f %{_sysconfdir}/samba/passdb.tdb /var/lib/samba/private/passdb.tdb
710        fi
711fi
712
713#remove schannel_store if existing, it is not info we need to keep across restarts
714if [ -f %{_sysconfdir}/samba/schannel_store.tdb ]; then
715        rm -f %{_sysconfdir}/samba/schannel_store.tdb
716fi
717
718%preun winbind
719if [ $1 = 0 ] ; then
720    /sbin/service winbind stop >/dev/null 2>&1 || :
721    /sbin/chkconfig --del winbind
722fi
723exit 0
724
725%postun common
726/sbin/ldconfig
727
728
729%post -n libsmbclient
730/sbin/ldconfig
731
732%postun -n libsmbclient
733/sbin/ldconfig
734
735%post -n libtdb
736/sbin/ldconfig
737
738%postun -n libtdb
739/sbin/ldconfig
740
741%post -n libtalloc
742/sbin/ldconfig
743
744%postun -n libtalloc
745/sbin/ldconfig
746
747%files
748%defattr(-,root,root)
749%{_sbindir}/smbd
750%{_sbindir}/nmbd
751%{_bindir}/mksmbpasswd.sh
752%{_bindir}/smbstatus
753%{_bindir}/eventlogadm
754%config(noreplace) %{_sysconfdir}/samba/smbusers
755%attr(755,root,root) %{_initrddir}/smb
756%attr(755,root,root) %{_initrddir}/nmb
757%config(noreplace) %{_sysconfdir}/logrotate.d/samba
758%config(noreplace) %{_sysconfdir}/pam.d/samba
759%{_mandir}/man7/samba.7*
760%{_mandir}/man8/nmbd.8*
761%{_mandir}/man8/smbd.8*
762%{_mandir}/man8/eventlogadm.8*
763%{_mandir}/man8/vfs_*.8*
764%{_libdir}/samba/vfs
765%{_libdir}/samba/auth
766%{_libdir}/samba/charset
767%attr(1777,root,root) %dir /var/spool/samba
768%dir %{_sysconfdir}/openldap/schema
769%{_sysconfdir}/openldap/schema/samba.schema
770
771%doc examples/autofs examples/LDAP examples/libsmbclient examples/misc examples/printer-accounting
772%doc examples/printing
773
774%files swat
775%defattr(-,root,root)
776%config(noreplace) %{_sysconfdir}/xinetd.d/swat
777%{_datadir}/swat
778%{_sbindir}/swat
779%{_mandir}/man8/swat.8*
780%attr(755,root,root) %{_libdir}/samba/*.msg
781
782%files client
783%defattr(-,root,root)
784/sbin/mount.cifs
785/sbin/umount.cifs
786%{_sbindir}/cifs.upcall
787%{_bindir}/rpcclient
788%{_bindir}/smbcacls
789%{_bindir}/findsmb
790%{_bindir}/smbget
791%{_bindir}/nmblookup
792%{_bindir}/smbclient
793%{_bindir}/smbprint
794%{_bindir}/smbspool
795%{_bindir}/smbtar
796%{_bindir}/smbtree
797%{_bindir}/sharesec
798%{_mandir}/man1/findsmb.1*
799%{_mandir}/man1/nmblookup.1*
800%{_mandir}/man1/rpcclient.1*
801%{_mandir}/man1/smbcacls.1*
802%{_mandir}/man1/smbclient.1*
803%{_mandir}/man1/smbtar.1*
804%{_mandir}/man1/smbtree.1*
805%{_mandir}/man1/smbget.1*
806%{_mandir}/man1/sharesec.1*
807%{_mandir}/man8/smbspool.8*
808%{_mandir}/man8/mount.cifs.8*
809%{_mandir}/man8/umount.cifs.8*
810%{_mandir}/man8/cifs.upcall.8*
811
812%files common
813%defattr(-,root,root)
814%attr(755,root,root) /%{_lib}/security/pam_smbpass.so
815%dir %{_libdir}/samba
816%{_libdir}/samba/lowcase.dat
817%{_libdir}/samba/upcase.dat
818%{_libdir}/samba/valid.dat
819%{_libdir}/libnss_wins.so
820/%{_lib}/libnss_wins.so.2
821%{_libdir}/libnetapi.so
822%attr(755,root,root) %{_libdir}/libnetapi.so.*
823%{_includedir}/netapi.h
824%{_libdir}/pkgconfig/netapi.pc
825%{_bindir}/net
826%{_bindir}/testparm
827%{_bindir}/smbpasswd
828%{_bindir}/pdbedit
829%{_bindir}/profiles
830%{_bindir}/smbcquotas
831%{_bindir}/smbcontrol
832%{_bindir}/ldb3add
833%{_bindir}/ldb3del
834%{_bindir}/ldb3edit
835%{_bindir}/ldb3modify
836%{_bindir}/ldb3search
837%{_bindir}/ldb3rename
838%dir /var/lib/samba
839%attr(700,root,root) %dir /var/lib/samba/private
840%dir /var/lib/samba/scripts
841%config(noreplace) %{_sysconfdir}/samba/smb.conf
842%config(noreplace) %{_sysconfdir}/samba/lmhosts
843%config(noreplace) %{_sysconfdir}/sysconfig/samba
844%dir %{_sysconfdir}/samba
845%attr(0700,root,root) %dir /var/log/samba
846%attr(0700,root,root) %dir /var/log/samba/old
847%{_mandir}/man1/ldb3add.1.gz
848%{_mandir}/man1/ldb3del.1.gz
849%{_mandir}/man1/ldb3edit.1.gz
850%{_mandir}/man1/ldb3modify.1.gz
851%{_mandir}/man1/ldb3search.1.gz
852%{_mandir}/man1/ldb3rename.1.gz
853%{_mandir}/man1/profiles.1*
854%{_mandir}/man1/smbcquotas.1*
855%{_mandir}/man1/smbcontrol.1*
856#%{_mandir}/man1/vfstest.1*
857%{_mandir}/man1/testparm.1*
858%{_mandir}/man1/smbstatus.1*
859%{_mandir}/man5/smbpasswd.5*
860%{_mandir}/man5/smb.conf.5*
861%{_mandir}/man5/lmhosts.5*
862%{_mandir}/man8/smbpasswd.8*
863%{_mandir}/man8/pdbedit.8*
864%{_mandir}/man8/net.8*
865
866%doc README COPYING Manifest
867%doc WHATSNEW.txt Roadmap
868
869%files winbind
870%{_bindir}/ntlm_auth
871%{_bindir}/wbinfo
872%{_libdir}/libnss_winbind.so
873%attr(755,root,root) %{_libdir}/libwbclient.so.*
874%{_libdir}/samba/idmap
875%{_libdir}/samba/nss_info
876/%{_lib}/libnss_winbind.so.2
877/%{_lib}/security/pam_winbind.so
878%{_sbindir}/winbindd
879%dir /var/run/winbindd
880%attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
881%config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
882%{_initrddir}/winbind
883%{_mandir}/man1/ntlm_auth.1*
884%{_mandir}/man1/wbinfo.1*
885%{_mandir}/man7/winbind_krb5_locator.7*
886%{_mandir}/man8/pam_winbind.8*
887%{_mandir}/man8/winbindd.8*
888%{_mandir}/man8/idmap_*.8*
889%{_datadir}/locale/*/LC_MESSAGES/pam_winbind.mo
890
891%files winbind-devel
892%{_includedir}/wbclient.h
893%{_libdir}/libwbclient.so
894%{_libdir}/pkgconfig/wbclient.pc
895
896%files doc
897%doc docs/Samba3-Developers-Guide.pdf docs/Samba3-ByExample.pdf
898%doc docs/Samba3-HOWTO.pdf
899%doc docs/htmldocs
900
901%files -n libsmbclient
902%attr(755,root,root) %{_libdir}/libsmbclient.so.*
903%attr(755,root,root) %{_libdir}/libsmbsharemodes.so.*
904
905%files -n libsmbclient-devel
906%{_includedir}/libsmbclient.h
907%{_includedir}/smb_share_modes.h
908%{_libdir}/libsmbclient.so
909%{_libdir}/libsmbsharemodes.so
910%{_libdir}/pkgconfig/smbclient.pc
911%{_libdir}/pkgconfig/smbsharemodes.pc
912%{_mandir}/man7/libsmbclient.7*
913
914%files -n libtalloc
915%attr(755,root,root) %{_libdir}/libtalloc.so.*
916
917%files -n libtalloc-devel
918%{_includedir}/talloc.h
919%{_libdir}/libtalloc.so
920%{_libdir}/pkgconfig/talloc.pc
921
922%files -n libtdb
923%attr(755,root,root) %{_libdir}/libtdb.so.*
924
925%files -n libtdb-devel
926%{_includedir}/tdb.h
927%{_libdir}/libtdb.so
928%{_libdir}/pkgconfig/tdb.pc
929
930%files -n tdb-tools
931%{_bindir}/tdbbackup
932%{_bindir}/tdbdump
933%{_bindir}/tdbtool
934%{_mandir}/man8/tdbbackup.8*
935%{_mandir}/man8/tdbdump.8*
936%{_mandir}/man8/tdbtool.8*
937
938%files domainjoin-gui
939%{_sbindir}/netdomjoin-gui
940%dir %{_datadir}/pixmaps/samba
941%{_datadir}/pixmaps/samba/samba.ico
942%{_datadir}/pixmaps/samba/logo.png
943%{_datadir}/pixmaps/samba/logo-small.png
944
945%if %build_compat32
946
947%files -n compat32-%{name}-winbind
948%attr(755,root,root) %{_libdir}/libwbclient.so.*
949
950%files -n compat32-libsmbclient
951%attr(755,root,root) %{_libdir}/libsmbclient.so.*
952%attr(755,root,root) %{_libdir}/libsmbsharemodes.so.*
953
954%files -n compat32-libtalloc
955%attr(755,root,root) %{_libdir}/libtalloc.so.*
956
957%files -n compat32-libtdb
958%attr(755,root,root) %{_libdir}/libtdb.so.*
959
960%endif
961
962%changelog
963* Sun Feb  7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.10-12
964- add patch1000 for fix CVE-2010-0547 (cifs.mount)
965
966* Sat Jan 30 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.10-11
967- new upstream release.
968
969* Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-10
970- added 'Packager' tag.
971
972* Sun Oct 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-9
973- new upstream release.
974- added '--disable-fam' option.
975- added 'compat32-*' subpackages.
976- added 'libuuid-devel' to 'BuildRequires:'.
977
978* Thu Jul 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.7-7
979- new upstream release.
980
981* Thu Jun 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.6-6
982- new upstream release.
983
984* Thu Jun  4 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-5
985- increased release number for libtalloc/libtdb.
986
987* Tue Jun  2 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-2
988- fixed dependency.
989- fixed modulepath.
990
991* Fri May 29 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-1
992- new upstream release.
993
994* Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 3.2.5-4
995- rebuilt with openldap-2.4.11
996
997* Sat Jan 17 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 3.2.5-3
998- samba-doc: changed Group to Applications/Documentation
999- samba-winbind-devel: changed Group to Development/Libraries
1000- libsmbclient: changed Group to System Environment/Libraries
1001- libsmbclient-devel: changed Group to Development/Libraries
1002- libtalloc: changed Group to System Environment/Libraries
1003- libtalloc-devel: changed Group to Development/Libraries
1004- libtdb: fixed summary
1005          changed Group to System Environment/Libraries
1006- libtdb-devel: changed Group to Development/Libraries
1007
1008* Thu Dec 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.5-2
1009- new upstream release
1010
1011* Sat Nov 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.3-1
1012- new upstream release
1013- drop jp patch
1014- use UTF-8 as default charset
1015- rename samba-libsmbclient to libsmbclient
1016
1017* Fri Apr 11 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 3.0.28a-1
1018- new upstream release.
1019- remove gamin-devel from BuildRequires: (no longer needed).
1020
1021* Sat Sep 15 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.24-0vl4
1022- BuildRequires: gamin-devel (see [wishes:0127])
1023
1024* Wed May 16 2007 KAZUKI SHIMURA <ksh753@gmail.com> 3.0.24-0vl3
1025- [SECURITY FIX] add security patches (#50-52)
1026  - CVE-2007-2444: local SID/Name translation bug (user privilege elevation)
1027  - CVE-2007-2446: multiple heap overflows allow remote code execution
1028  - CVE-2007-2447: remote command injection vulnerability
1029
1030* Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl2
1031- apply upstream patches (#0-5)
1032  - fix an issues with servers set to "security = share" and Vista clients
1033    that send NTLMv2 responses
1034  - fixe several point-n-print bugs with Vista clients
1035  - fix failure when using the Vista backup utility
1036  - fix expansion of the %a smb.conf variable for Vista clients
1037  - fix MS-DFS referrals with Windows Vista clients
1038  - fix for Vista failing to delete directories on a Samba share
1039- display service start/stop messages ([VineSeed:13299])
1040
1041* Wed Feb 14 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl1
1042- [SECURITY FIX] new upstream release
1043  - CVE-2007-0452: potential denial of service bug in smbd
1044  - CVE-2007-0453: buffer overrun in NSS host lookup winbind library on Solaris
1045  - CVE-2007-0454: format string bug in afsacl.so vfs plugin
1046
1047* Thu Dec 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23d-0vl1
1048- new upstream release
1049
1050* Sun Nov 25 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl3
1051- disable swat (via inetd) by default
1052- fix code for editing %%{_sysconfdir}/inetd.conf
1053
1054* Sun Sep 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl2
1055- fix dependencies:
1056  - move PreReq: mktemp, psmisc, fileutils, sed, gawk, grep to -swat
1057  - drop PreReq: gawk from -client
1058  - drop PreReq: inetd from -swat
1059  - drop Requires: tcp_wrappers from -swat (is needed by inetd)
1060- fix %%post etc...
1061  - drop code for editing /etc/services: no more needed
1062  - move code for editing %%{_sysconfdir}/{hosts.*,inetd.conf}
1063    from %%triggerin swat -- inetd to %%post swat
1064  - check if %%{_sysconfdir}/inetd.conf exist before updating at %%postun
1065
1066* Fri Sep 08 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl1
1067- new upstream release
1068
1069* Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.0.23b-0vl2
1070- rebuilt with openldap-2.3.27-0vl1
1071
1072* Mon Aug 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23b-0vl1
1073- new upstream release
1074
1075* Fri Jul 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23a-0vl1
1076- new upstream release
1077
1078* Sat Jul 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23-0vl1
1079- [SECURITY] new upstream release
1080  - Memory exhaustion DoS against smbd (CVE-2006-3403)
1081- update patches
1082  - buildroot.patch (#100)
1083  - logfiles.patch (#103)
1084  - smb.conf.patch (#106)
1085- update filter-requires-samba.sh (source999)
1086  - get rid of bogus dependency on perl(Unicode::MapUTF8)
1087
1088* Fri Jun 23 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.22-0vl1
1089- new upstream release
1090- renumber patches
1091  - 000- for upstream patches
1092  - 050- for security patches
1093  - 100- for generic patches
1094- update logfiles.patch (#103)
1095- drop warning.patch (#104)
1096- not apply hex.patch (#105)
1097- add smb.conf.patch (#106)
1098- drop samba.log (source1), smb.conf (source2)
1099- use samba.pamd.stack instead of samba.pamd
1100- define macro: pkgingdir
1101- add files:
1102  - samba-client
1103    - %%{_bindir}/{smbget,eventlogadm}
1104  - samba-common:
1105    - %%{_bindir}/tdbtool
1106- separate development files to samba-libsmbclient-devel
1107- change groups
1108
1109* Sat Apr 15 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl5
1110- remove unneeded dependencies
1111  - update filter-requires-samba.sh (source999)
1112  - overwrite __find_requires instead of __perl_requires
1113
1114* Tue Mar 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl4
1115- rebuild with readline-5.1
1116
1117* Sat Aug 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl3
1118- separate doc package with %%docpkg
1119- use %%htmlview instead of %%browser
1120
1121* Sat Jul 16 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl2
1122- add %%config(noreplace) against %%{_sysconfdir}/xinetd.d/swat
1123
1124* Fri Jul 15 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl1
1125- new upstream release
1126- install %%{_sysconfdir}/xinetd.d/swat
1127- update filter-requires-samba.sh
1128- add swat.desktop.in instead of swat.desktop
1129  - switch browser by %%browser
1130- drop i18n patches
1131- update logfiles.patch (#3)
1132- add warning.patch (#4)
1133
1134* Sun Jul 10 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl2
1135- fix samba.log
1136  - thanks, K. Moriyama [VinePlus:02606]
1137- remove docs/manpages from %%doc
1138
1139* Mon Dec 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl1
1140- new upstream release
1141- update struplower_m_i18n.patch (#102)
1142- drop obsolete patch (#10)
1143
1144* Fri Dec 17 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl2
1145- [SECURITY FIX] fix possible remote code execution (CAN-2004-1154)
1146  - add samba-3.0.9-CAN-2004-1154.patch (#10)
1147- update patch (#102)
1148
1149* Fri Nov 26 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl1
1150- new upstream release
1151- drop obsolete patches (#10,11,110)
1152- update patches (#3,102)
1153
1154* Sun Nov 21 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl6
1155- [SECURITY FIX] fix smbd buffer overrun (CAN-2004-0882)
1156  - add samba-3.0.7-CAN-2004-0882.patch (patch11)
1157- update Source URL
1158
1159* Tue Nov 09 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl5
1160- [SECURITY FIX] fix smbd remote DoS vulnerability (CAN-2004-0930)
1161  - add samba-3.0.7-CAN-2004-0930.patch (patch10)
1162
1163* Fri Oct 15 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl4
1164- update samba.log, {smb,winbind}.init
1165- use *.log as logfile name instead of log.* (patch3)
1166
1167* Wed Oct 06 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl3
1168- change directories from %%{_localstatedir}/lock/samba
1169  - LOCKDIR: %%{_localstatedir}/cache/samba
1170  - PIDDIR:  %%{_localstatedir}/run
1171- restart {smb,winbind} at postun (upgrade)
1172- samba-common
1173  - convert smbpasswd at triggerpostun -- samba < 3.0.7
1174  - add convert_smbpasswd
1175  - add PreReq: gawk
1176
1177* Sat Sep 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl2
1178- add docs_ja (source101) from 3.0.5-16ml
1179
1180* Wed Sep 22 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl1
1181- new upstream release (shift to 3.0 series)
1182  - refer to 3.0.6-3 (Fedora Core), 3.0.5-16ml (MIRACLE)
1183  - drop obsolete paches, configure options
1184  - update buildroot.patch
1185  - add I18N patches (#101-)
1186  - update smb.conf
1187- add URL
1188- use more macros
1189- change LIBDIR from %%{_sysconfdir}/samba to %%{_libdir}/samba
1190- move %%{_localstatedir}/log/samba, smbpasswd to samba-common
1191- move smbspool, smbcacls, rpcclient to samba-client
1192- update descriptions
1193
1194* Wed Sep 08 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl1
1195- new upstream release
1196
1197* Wed Sep 01 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl0.beta1
1198- 2.2.11-ja-1.0beta1
1199  - drop patch10
1200- add BuildPreReq: openssl-devel
1201- swat
1202  - add PreReq/Requires: inetd
1203  - add swat.desktop
1204
1205* Sun Jul 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl3
1206- fix changelog
1207
1208* Sat Jul 24 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl2
1209- [SECURITY FIX] fix buffer overflow (CAN-2004-0686)
1210  - add samba-2.2.9-ja-1.0-mangle.patch (Patch10)
1211- add BuildPreReq: cups-devel
1212- add Prereq: chkconfig mktemp psmisc (instead of each files)
1213
1214* Thu Jun 03 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl1
1215- new upstream release
1216
1217* Thu May 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl0.beta1
1218- 2.2.9-ja-1.0beta1
1219- add BuildPreReq: readline-devel
1220
1221* Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl3
1222- add ldconfig in %%post/%%postun script for libsmbclient
1223
1224* Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl2
1225- add libsmbclient subpackage.
1226
1227* Thu Sep 11 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja.1.1-0vl1
1228- new upstream release.
1229
1230* Sat Aug 09 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.8a.ja-1.0vl3
1231- fix smb.conf (SAMBADOC's path)
1232
1233* Tue May 27 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.8a.ja-1.0vl2
1234- tentatively skip to build examples/VFS on alpha
1235
1236* Tue May 27 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja-1.0vl1
1237- new upstream release.
1238
1239* Mon May 19 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.7b.ja-1.0vl2
1240- fix smb.conf
1241- fix smbadduser
1242
1243* Thu Apr 17 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.7b.ja-1.0vl1
1244- new upstream version
1245
1246* Sun Mar 23 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl2
1247- added smbinit-vine.patch
1248        -- added '-D' option in smbd and nmbd
1249
1250* Fri Mar 20 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl1
1251- New upstream version
1252        -- security fix.
1253
1254* Wed Feb 26 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1255- 2.2.7a.ja-1.0vl5
1256- merged from SPEC for RH60 by samba-jp.
1257
1258* Mon Feb 17  2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1259- 2.2.7a.ja-1.0vl4.beta1
1260- fix 'Requires:'.
1261
1262* Tue Jan 28 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1263- 2.2.7a.ja-1.0vl3.alpha1
1264- disable --with-tdbsam.
1265
1266* Sat Dec 28 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1267- 2.2.7a.ja-1.0vl2.alpha1
1268- modify %%post script for new password database.
1269
1270* Fri Dec 27 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1271- 2.2.7a.ja-1.0vl1.alpha1
1272
1273* Tue Nov 19 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1274- 2.2.6.ja-1.0vl1.alpha2
1275- apply alpha2 patch.
1276
1277* Fri Nov 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1278- 2.2.6.ja-1.0vl1.alpha1
1279- remove swat from package 'samba'.
1280
1281* Thu Nov 14 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1282- 2.2.6.ja-1.0vl0.alpha1
1283- enable winbind modules.
1284- change numbering rule.
1285
1286* Thu Oct 24 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1287- 2.2.6_ja_0.alpha1-0vl1
1288
1289* Tue Jun 11 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1290- 2.2.4_ja_0.alpha1.3-0vl1
1291
1292* Sun Mar 17 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1293- 2.2.2_ja_1.1-0vl1
1294- disable winbind modules (2.2.2 or earlier has critical bugs).
1295- modify 'Requires:'.
1296
1297* Fri Mar 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
1298- 2.2.2_ja_1.1-0vl0
1299- shift sources to 2.2.x.
1300- add debugging mode for '%%files' section.
1301- modify spec largely because of too many difference between 2.0.x and 2.2.x.
1302-  . exchange %%prep, %%build, %%install section with samba-jp's spec.
1303-  . create a package 'samba-swat'.
1304-  . move smbclient and nmblookup to samba-common.
1305-  . move testprns to package 'samba' because it's checking tool for
1306-    server on LOCALHOST.
1307-  . move '%%post' to '%%post swat'.
1308-  . disable '%%post common'.
1309
1310* Sun Dec 02 2001 Toru Sagami <sagami@vinelinux.org>
1311- 2.0.10_ja_1.2
1312
1313* Mon Sep 03 2001 Toru Sagami <sagami@vinelinux.org>
1314- 2.0.10_ja_1.1-0vl4
1315- eliminate executable bit in %%doc to erase perl/sh requirement
1316
1317* Thu Aug 23 2001 Toru Sagami <sagami@vinelinux.org>
1318- 2.0.10_ja_1.1-0vl3: s/$RPM_BUILD_ROOT/%%{buildroot}/
1319- patch swat/ja/help/welcome.html to hide some missing matter
1320- also remove docs/zh_{CN,TW} files in %%doc
1321
1322* Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl2
1323- for VineSeed
1324- deleted %%define _syssbindir and _localedir (defined in rpmmacros in rpm-3.0.6-0vl14)
1325
1326* Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl1
1327- 2.0.10_ja_1.1
1328- for 2.1.x update
1329
1330* Fri Aug 17 2001 <sagami@vinelinux.org>
1331- 2.0.10_ja_1.0-0vl2
1332- remove almost duplicated docs/{,ja/}{manpages,yodldocs} files in %%doc
1333
1334* Mon Jul 09 2001 <sagami@vinelinux.org>
1335- 2.0.10_ja_1.0-0vl1: includes secrity fix
1336 (http://www.samba.org/samba/whatsnew/macroexploit.html)
1337- remove using_samba, HowToUseSamba and docs/ja_JP.SJIS directory from %%doc
1338
1339* Thu May 31 2001 <sagami@vinelinux.org>
1340- 2.0.9_ja_1.0-0vl1: added swat/ja/help/HowToUseSamba
1341- added BuildPreReq = pam-devel for Vine 2.1.5+
1342- fixed init script to match our current/old style
1343- eliminate CVS related files from %%doc
1344
1345* Thu Apr 19 2001 <sagami@vinelinux.org>
1346- 2.0.7_ja_2.2-0vl1
1347
1348* Thu Dec 21 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1349- 2.0.7_ja_1.3-0vl2
1350- rebuilt with readline2
1351- use better macros (although not almost complete... needs comfirmation)
1352
1353* Tue Sep 19 2000 Jun Nishii <jun@vinelinux.org>
1354- 2.0.7_ja_1.3-0vl1
1355
1356* Tue Sep 12 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1357- 2.0.7_ja_1.2.1-0vl2
1358- fixed missing Changelog.ja (was Chagelog.ja)
1359
1360* Tue Sep 12 2000 Jun Nishii <jun@vinelinux.org>
1361- updated to 2.0.7-ja-1.2.1
1362
1363* Wed Jul 19 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1364- updated to 2.0.7-ja-1.2
1365
1366* Tue Jul 11 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1367- added some Japanese documents to %doc
1368
1369* Mon Jul 10 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1370- updated to 2.0.7-ja-1.0
1371
1372* Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1373- updated to 2.0.7-ja-0.99
1374
1375* Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1376- added rpccilent
1377- modified tcpdconf for stability.
1378
1379* Fri May 26 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
1380- first test release for Vine based on RH6.2 spec file.
1381- activated swat in default for only localhost.
1382
1383* Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
1384- fix trigger, again.
1385
1386* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
1387- fix trigger.
1388
1389* Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
1390- turn on quota support
1391
1392* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
1393- rebuild to fox dependencies
1394- man pages are compressed
1395
1396* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
1397- munge post scripts slightly
1398
1399* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
1400- turn on mmap again. Wheee.
1401- ship smbmount on alpha
1402
1403* Mon Dec  6 1999 Bill Nottingham <notting@redhat.com>
1404- turn off mmap. ;)
1405
1406* Wed Dec  1 1999 Bill Nottingham <notting@redhat.com>
1407- change /var/log/samba to 0700
1408- turn on mmap support
1409
1410* Thu Nov 11 1999 Bill Nottingham <notting@redhat.com>
1411- update to 2.0.6
1412
1413* Fri Oct 29 1999 Bill Nottingham <notting@redhat.com>
1414- add a %defattr for -common
1415
1416* Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
1417- shift some files into -client
1418- remove /home/samba from package.
1419
1420* Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
1421- initscript oopsie. killproc <name> -HUP, not other way around.
1422
1423* Sat Sep 26 1999 Bill Nottingham <notting@redhat.com>
1424- script cleanups. Again.
1425
1426* Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
1427- add a patch to fix dropped reconnection attempts
1428
1429* Mon Sep  6 1999 Jeff Johnson <jbj@redhat.com>
1430- use cp rather than mv to preserve /etc/services perms (#4938 et al).
1431- use mktemp to generate /etc/tmp.XXXXXX file name.
1432- add prereqs on sed/mktemp/killall (need to move killall to /bin).
1433- fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7")
1434
1435* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
1436- sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd
1437
1438* Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
1439- fix typo in mount.smb
1440
1441* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
1442- add a %trigger to work around (sort of) broken scripts in
1443  previous releases
1444
1445* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
1446- initscript munging
1447
1448* Mon Aug  9 1999 Bill Nottingham <notting@redhat.com>
1449- add domain parsing to mount.smb
1450
1451* Fri Aug  6 1999 Bill Nottingham <notting@redhat.com>
1452- add a -common package, shuffle files around.
1453
1454* Fri Jul 23 1999 Bill Nottingham <notting@redhat.com>
1455- add a chmod in %postun so /etc/services & inetd.conf don't become unreadable
1456
1457* Wed Jul 21 1999 Bill Nottingham <notting@redhat.com>
1458- update to 2.0.5
1459- fix mount.smb - smbmount options changed again.........
1460- fix postun. oops.
1461- update some stuff from the samba team's spec file.
1462
1463* Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
1464- split off clients into separate package
1465- don't run samba by default
1466
1467* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
1468- fix one problem with mount.smb script
1469- fix smbpasswd on sparc with a really ugly kludge
1470
1471* Thu Jun 10 1999 Dale Lovelace <dale@redhat.com>
1472- fixed logrotate script
1473
1474* Tue May 25 1999 Bill Nottingham <notting@redhat.com>
1475- turn of 64-bit locking on 32-bit platforms
1476
1477* Thu May 20 1999 Bill Nottingham <notting@redhat.com>
1478- so many releases, so little time
1479- explicitly uncomment 'printing = bsd' in sample config
1480
1481* Tue May 18 1999 Bill Nottingham <notting@redhat.com>
1482- update to 2.0.4a
1483- fix mount.smb arg ordering
1484
1485* Fri Apr 16 1999 Bill Nottingham <notting@redhat.com>
1486- go back to stop/start for restart (-HUP didn't work in testing)
1487
1488* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
1489- add a mount.smb to make smb mounting a little easier.
1490- smb filesystems apparently don't work on alpha. Oops.
1491
1492* Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
1493- always create codepages
1494
1495* Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
1496- logrotate changes
1497
1498* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
1499- auto rebuild in the new build environment (release 3)
1500
1501* Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
1502- updated init script to use graceful restart (not stop/start)
1503
1504* Tue Mar  9 1999 Bill Nottingham <notting@redhat.com>
1505- update to 2.0.3
1506
1507* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
1508- update to 2.0.2
1509
1510* Mon Feb 15 1999 Bill Nottingham <notting@redhat.com>
1511- swat swat
1512
1513* Tue Feb  9 1999 Bill Nottingham <notting@redhat.com>
1514- fix bash2 breakage in post script
1515
1516* Fri Feb  5 1999 Bill Nottingham <notting@redhat.com>
1517- update to 2.0.0
1518
1519* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
1520- make sure all binaries are stripped
1521
1522* Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com>
1523- update to 1.9.18p10.
1524- fix %triggerpostun.
1525
1526* Tue Jul 07 1998 Erik Troan <ewt@redhat.com>
1527- updated postun triggerscript to check $0
1528- clear /etc/codepages from %preun instead of %postun
1529
1530* Mon Jun 08 1998 Erik Troan <ewt@redhat.com>
1531- made the %postun script a tad less agressive; no reason to remove
1532  the logs or lock file (after all, if the lock file is still there,
1533  samba is still running)
1534- the %postun and %preun should only exectute if this is the final
1535  removal
1536- migrated %triggerpostun from Red Hat's samba package to work around
1537  packaging problems in some Red Hat samba releases
1538
1539* Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au>
1540- minor tidy up in preparation for release of 1.9.18p5
1541- added findsmb utility from SGI package
1542
1543* Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au>
1544- Updated version and codepage info.
1545- Release to test name resolve order
1546
1547* Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au>
1548- Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com>
1549- Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb
1550- Compounded make line
1551- Updated smb.init restart mechanism
1552- Use compound mkdir -p line instead of individual calls to mkdir
1553- Fixed smb.conf file path for log files
1554- Fixed smb.conf file path for incoming smb print spool directory
1555- Added a number of options to smb.conf file
1556- Added smbadduser command (missed from all previous RPMs) - Doooh!
1557- Added smbuser file and smb.conf file updates for username map
1558
Note: See TracBrowser for help on using the repository browser.