samba-vl.spec 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814
  1. %bcond_with ja_docs
  2. %bcond_with systemd
  3. %bcond_with tracker
  4. %bcond_without pidl
  5. %define samba_version 4.20.4
  6. #define rc_number rc4
  7. %define samba_release 1
  8. %define doc_version 4.18.0
  9. %define api_version 4.0
  10. %define libwbc_soname 0
  11. %define libwbc_sover 0.16
  12. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  13. %global with_libsmbclient 1
  14. %global with_libwbclient 1
  15. %global with_mitkrb5 0
  16. %global with_dc 1
  17. %define _unpackaged_files_terminate_build 1
  18. %global _libexecdir %{_libdir}
  19. %global libwbc_alternatives_suffix %nil
  20. %if 0%{?__isa_bits} == 64
  21. %global libwbc_alternatives_suffix -64
  22. %endif
  23. %{?rc_number:%define rc_suffix .%{rc_number}}
  24. %define samba_includedir %{_includedir}/samba-%{api_version}
  25. %define samba_source source3
  26. %global __perl_requires %{SOURCE999}
  27. %global __perllib_requires %{SOURCE999}
  28. %global __perllib_provides %{SOURCE999}
  29. Summary: The Samba Suite of programs
  30. Summary(ja): Samba スイート
  31. Name: samba
  32. Version: %{samba_version}
  33. Release: %{samba_release}%{?rc_suffix}%{?_dist_release}%{?with_systemd:.systemd}
  34. Group: servers
  35. Vendor: Project Vine
  36. Distribution: Vine Linux
  37. License: GPLv3+
  38. URL: http://www.samba.org/
  39. Source: https://download.samba.org/pub/samba/stable/samba-%{version}%{?rc_number}.tar.gz
  40. # Vine specific replacement-files
  41. Source1: samba.log
  42. %if %{with ja_docs}
  43. # https://ja.osdn.net/projects/samba-jp/releases/
  44. Source2: https://ja.osdn.net/dl/samba-jp/samba-ja-docs-%{doc_version}.tar.gz
  45. %endif
  46. Source5: pam_winbind.conf
  47. Source6: samba.pamd
  48. Source100: nmb.init
  49. Source101: smb.init
  50. Source102: winbind.init
  51. Source103: smb.conf
  52. Source104: samba.sysconfig
  53. Source200: samba4.init
  54. Source201: named.conf.dlz
  55. Source999: perl-requires.sh
  56. BuildRoot: %{_tmppath}/%{name}-%{samba_version}-%{release}-root
  57. Requires: /sbin/chkconfig /bin/mktemp /usr/bin/killall
  58. Requires: fileutils sed /etc/init.d
  59. Requires: logrotate
  60. Requires: libaio
  61. Requires: %{name}-common = %{samba_version}-%{release}
  62. Requires: %{name}-libs = %{samba_version}-%{release}
  63. Requires(pre): %{name}-common = %{samba_version}-%{release}
  64. Conflicts: samba < %{version}
  65. Provides: samba = %{version}
  66. Obsoletes: ctdb <= 2.5.5
  67. %if ! %{with pidl}
  68. Obsoletes: samba-pidl < %{version}-%{release}
  69. %endif
  70. %if %{with systemd}
  71. BuildRequires: systemd-devel
  72. %{?systemd_requires}
  73. %else
  74. Requires(post): /sbin/chkconfig, /sbin/service
  75. Requires(preun): /sbin/chkconfig, /sbin/service
  76. Requires(postun): /sbin/chkconfig, /sbin/service
  77. %endif
  78. BuildRequires: avahi-devel
  79. BuildRequires: bison
  80. #BuildRequires: ctdb-devel
  81. BuildRequires: coreutils
  82. BuildRequires: cups-devel
  83. BuildRequires: cyrus-sasl-devel
  84. BuildRequires: dbus-devel
  85. BuildRequires: docbook-style-xsl
  86. BuildRequires: docbook-utils
  87. BuildRequires: e2fsprogs-devel
  88. BuildRequires: flex
  89. BuildRequires: gdb
  90. BuildRequires: gettext
  91. BuildRequires: gnutls-devel
  92. BuildRequires: gpgme-devel
  93. BuildRequires: jansson-devel
  94. BuildRequires: keyutils-libs-devel
  95. BuildRequires: krb5-devel
  96. BuildRequires: krb5-workstation
  97. #BuildRequires: ldb-tools
  98. BuildRequires: libacl-devel
  99. BuildRequires: libaio-devel
  100. BuildRequires: libarchive-devel
  101. BuildRequires: libattr-devel
  102. BuildRequires: libblkid-devel
  103. BuildConflicts: libbsd-devel
  104. BuildRequires: libcap-devel
  105. BuildRequires: libicu-devel
  106. #BuildRequires: libldb-devel >= 1.1.25
  107. BuildRequires: libpcap-devel
  108. BuildRequires: libtasn1-devel
  109. BuildRequires: libtdb-devel
  110. #BuildRequires: libtevent-devel
  111. BuildRequires: libtirpc-devel
  112. BuildRequires: libuuid-devel
  113. BuildRequires: libxcrypt-devel
  114. BuildRequires: libxml2-devel
  115. BuildRequires: libxslt
  116. BuildRequires: ncurses-devel
  117. BuildRequires: net-tools
  118. BuildRequires: openldap-devel
  119. BuildRequires: pam-devel
  120. BuildRequires: perl(ExtUtils::MakeMaker)
  121. BuildRequires: perl(Parse::Yapp)
  122. BuildRequires: perl(JSON)
  123. BuildRequires: pkgconfig
  124. BuildRequires: popt-devel
  125. BuildRequires: python3-devel
  126. BuildRequires: python3-rpm-macros
  127. BuildRequires: python3-dns
  128. BuildRequires: python3-gpg
  129. BuildRequires: python3-markdown
  130. BuildRequires: python3-tdb
  131. #BuildRequires: python3-ldb-devel
  132. #BuildRequires: python3-talloc-devel
  133. #BuildRequires: python3-tevent
  134. BuildRequires: rpcgen
  135. BuildRequires: readline-devel
  136. BuildRequires: sqlite-devel
  137. %if %{with tracker}
  138. BuildRequires: tracker-devel
  139. %endif
  140. BuildRequires: xz
  141. BuildRequires: pkgconfig(zlib)
  142. #BuildRequires: libuuid-devel
  143. BuildConflicts: compat32-zlib-devel.32bit
  144. BuildConflicts: compat32-libuuid.32bit
  145. BuildConflicts: compat32-libuuid-devel.32bit
  146. # Working around perl dependency problem from docs
  147. #define __perl_requires %{SOURCE999}
  148. %description
  149. Samba is the standard Windows interoperability suite of programs
  150. for Linux and Unix.
  151. %description -l ja
  152. SambaはLinux・UNIX用の、Windowsとの標準的な相互運用性ソフトウェア群です。
  153. ## --------------------------------------------------------------------
  154. %package client-libs
  155. Summary: Samba client libraries
  156. Summary(ja): Samba クライアントライブラリ
  157. Group: system
  158. Requires: samba-common = %{samba_version}-%{release}
  159. Requires: samba-common-libs = %{samba_version}-%{release}
  160. Requires: libwbclient = %{samba_version}-%{release}
  161. Requires: krb5-libs
  162. %description client-libs
  163. The samba-client-libs package contains internal libraries needed by the
  164. SMB/CIFS clients.
  165. %description client-libs -l ja
  166. samba-client-libs パッケージは SMB/CIFS クライアントに必要とされる内部ライブラリを
  167. 含有しています。
  168. ## --------------------------------------------------------------------
  169. %package client
  170. Summary: Samba client programs
  171. Summary(ja): Samba クライアントプログラム
  172. Group: network
  173. Requires: samba-common = %{samba_version}-%{release}
  174. Obsoletes: smbfs
  175. Conflicts: %{name}-client < %{samba_version}
  176. Provides: samba-client = %{samba_version}
  177. %description client
  178. The samba-client package provides some SMB/CIFS clients to complement
  179. the built-in SMB/CIFS filesystem in Linux. These clients allow access
  180. of SMB/CIFS shares and printing to SMB/CIFS printers.
  181. %description client -l ja
  182. samba-client は Linux カーネルがサポートしている SMB ファイルシステム
  183. 機能を操作する SMB クライアントを提供します。
  184. これらは SMB 共有のアクセスと SMB プリンタへの印刷を実現します。
  185. ## --------------------------------------------------------------------
  186. %package libs
  187. Summary: Samba libraries
  188. Summary(ja): Samba ライブラリ
  189. Group: system
  190. Requires: samba-common-libs = %{samba_version}-%{release}
  191. %if %with_libwbclient
  192. Requires: libwbclient
  193. %endif
  194. Obsoletes: libtalloc <= 2.1.14
  195. Obsoletes: libtevent <= 0.9.37
  196. Obsoletes: libldb <= 1.4.6
  197. %description libs
  198. The samba4-libs package contains the libraries needed by programs that
  199. link against the SMB, RPC and other protocols provided by the Samba suite.
  200. ## --------------------------------------------------------------------
  201. %package python
  202. Summary: Samba Python libraries
  203. Summary(ja): Python 向け Samba ライブラリ
  204. Group: system
  205. Requires: %{name}-libs = %{samba_version}
  206. Provides: %{name}-python3 = %{version}-%{release}
  207. %description python
  208. The samba4-python package contains the Python libraries needed by programs
  209. that use SMB, RPC and other Samba provided protocols in Python programs.
  210. ## --------------------------------------------------------------------
  211. %package devel
  212. Summary: Developer tools for Samba libraries
  213. Summary(ja): Samba ライブラリの開発用ファイル
  214. Group: programming
  215. Requires: %{name}-libs = %{samba_version}-%{release}
  216. Conflicts: samba-devel < %{samba_version}
  217. Provides: samba-devel = %{samba_version}
  218. %description devel
  219. The samba4-devel package contains the header files for the libraries
  220. needed to develop programs that link against the SMB, RPC and other
  221. libraries in the Samba suite.
  222. ## --------------------------------------------------------------------
  223. %if %{with pidl}
  224. %package pidl
  225. Summary: Perl IDL compiler
  226. Group: programming
  227. Requires: perl >= 2:5.34.0
  228. %description pidl
  229. The samba4-pidl package contains the Perl IDL compiler used by Samba
  230. and Wireshark to parse IDL and similar protocols
  231. %endif
  232. ## --------------------------------------------------------------------
  233. %package common
  234. Summary: Files used by both Samba servers and clients
  235. Summary(ja): Samba サーバーとクライアントの両方に使用されるファイル
  236. Group: system
  237. Conflicts: samba-common < %{samba_version}
  238. Provides: samba-common = %{samba_version}-%{release}
  239. Requires: %{name}-libs = %{samba_version}-%{release}
  240. Requires: pam
  241. Requires(pre): /usr/sbin/groupadd
  242. Requires(post): /sbin/chkconfig, /sbin/service, coreutils, acl
  243. Requires(preun): /sbin/chkconfig, /sbin/service
  244. Obsoletes: samba-swat < 4.1.0
  245. %description common
  246. Samba-common provides files necessary for both the server and client
  247. packages of Samba.
  248. %description common -l ja
  249. samba-common は Samba のサーバーとクライアントの両方のパッケージで
  250. 使用される共通のファイルを提供します。
  251. ## --------------------------------------------------------------------
  252. %package common-libs
  253. Summary: Libraries used by both Samba servers and clients
  254. Group: system
  255. Requires(pre): samba-common = %{samba_version}-%{release}
  256. Requires: samba-common = %{samba_version}-%{release}
  257. %description common-libs
  258. The samba-common-libs package contains internal libraries needed by the
  259. SMB/CIFS servers and clients.
  260. ## --------------------------------------------------------------------
  261. %package test
  262. Summary: Testing tools for Samba servers and clients
  263. Group: system
  264. %description test
  265. samba4-test provides testing tools for both the server and client
  266. packages of Samba.
  267. ## --------------------------------------------------------------------
  268. %package winbind
  269. Summary: Samba winbind
  270. Group: system
  271. Conflicts: samba-winbind < %{samba_version}
  272. Provides: samba-winbind = %{samba_version}
  273. Requires: samba-common = %{samba_version}-%{release}
  274. Requires(pre): /usr/sbin/groupadd
  275. %if %{with systemd}
  276. %{?systemd_requires}
  277. %else
  278. Requires(post): /sbin/chkconfig, /sbin/service, coreutils
  279. Requires(preun): /sbin/chkconfig, /sbin/service
  280. Requires(postun): /sbin/chkconfig, /sbin/service
  281. %endif
  282. %description winbind
  283. The samba-winbind package provides the winbind daemon, a NSS library, a PAM
  284. module and some client tools. Winbind enables Linux to be a full member in
  285. Windows domains and to use Windows user and group accounts on Linux.
  286. ## --------------------------------------------------------------------
  287. %package winbind-krb5-locator
  288. Summary: Samba winbind krb5 locator
  289. Group: system
  290. Requires: %{name}-winbind-clients = %{samba_version}-%{release}
  291. Conflicts: samba-winbind-krb5-locator < %{samba_version}
  292. Provides: samba-winbind-krb5-locator = %{samba_version}-%{release}
  293. %description winbind-krb5-locator
  294. The winbind krb5 locator is a plugin for the system kerberos library
  295. to allow the local kerberos library to use the same KDC as samba and
  296. winbind use
  297. ## --------------------------------------------------------------------
  298. %package winbind-clients
  299. Summary: Samba winbind clients
  300. Group: admin-tools
  301. Conflicts: samba-winbind-clients < %{samba_version}
  302. Provides: samba-winbind-clients = %{samba_version}
  303. %description winbind-clients
  304. The %{name}-winbind-clients package provides the NSS library and a PAM
  305. module necessary to communicate to the Winbind Daemon
  306. ## --------------------------------------------------------------------
  307. %package -n libsmbclient
  308. Summary: The SMB client library
  309. Summary(ja): SMB クライアントライブラリ
  310. Group: system
  311. Requires: %{name}-common = %{samba_version}
  312. Conflicts: libsmbclient < %{samba_version}
  313. Provides: libsmbclient = %{samba_version}
  314. %description -n libsmbclient
  315. The libsmbclient contains the SMB client library from the Samba suite.
  316. %description -n libsmbclient -l ja
  317. libsmbclient は Samba クライアントの機能を提供するライブラリを
  318. 提供します。
  319. ## --------------------------------------------------------------------
  320. %package -n libsmbclient-devel
  321. Summary: Developer tools for the SMB client library
  322. Summary(ja): SMB クライアントライブラリ開発用ファイル
  323. Group: programming
  324. Requires: libsmbclient = %{samba_version}
  325. Conflicts: libsmbclient-devel < %{samba_version}
  326. Provides: libsmbclient-devel = %{samba_version}
  327. %description -n libsmbclient-devel
  328. The libsmbclient-devel package contains the header files and libraries
  329. needed to develop programs that link against the SMB client library
  330. in the Samba suite.
  331. %description -n libsmbclient-devel -l ja
  332. libsmbclient-devel は Samba クライアントの機能を提供するライブラリを
  333. 使ったアプリケーションを開発するためのファイルを提供します。
  334. ## --------------------------------------------------------------------
  335. %if %with_libwbclient
  336. %package -n libwbclient
  337. Summary: system
  338. Summary(ja): Winbind クライアントライブラリ
  339. Group: System Environment/Libraries
  340. %description -n libwbclient
  341. The libwbclient package contains the winbind client library from
  342. the Samba suite.
  343. ## --------------------------------------------------------------------
  344. %package -n libwbclient-devel
  345. Summary: Developer tools for the winbind library
  346. Summary(ja): Winbind ライブラリの開発用ファイル
  347. Group: programming
  348. Requires: libwbclient = %{samba_version}-%{release}
  349. %description -n libwbclient-devel
  350. The libwbclient-devel package provides developer tools for the wbclient
  351. library.
  352. %endif # with_libwbclient
  353. ## --------------------------------------------------------------------
  354. %package dc
  355. Summary: Samba AD Domain Controller
  356. Group: servers
  357. Requires: %{name} = %{samba_version}-%{release}
  358. Requires: %{name}-winbind = %{samba_version}-%{release}
  359. Requires: %{name}-client = %{samba_version}-%{release}
  360. Requires: %{name}-python = %{samba_version}-%{release}
  361. Requires: python3-dns
  362. Requires(post): acl
  363. %if %{with systemd}
  364. %{?systemd_requires}
  365. %else
  366. Requires(post): /sbin/chkconfig, /sbin/service
  367. Requires(preun): /sbin/chkconfig, /sbin/service
  368. Requires(postun): /sbin/chkconfig, /sbin/service
  369. %endif
  370. %description dc
  371. The %{name}-dc package provides AD Domain Controller functionality
  372. ## --------------------------------------------------------------------
  373. %package dc-libs
  374. Summary: Samba AD Domain Controller Libraries
  375. Summary(ja): Samba AD ドメインコントローラ ライブラリ
  376. Group: system
  377. Requires: %{name}-libs = %{samba_version}-%{release}
  378. Requires: samba-common-libs = %{samba_version}-%{release}
  379. %description dc-libs
  380. The samba-dc-libs package contains the libraries needed by the DC to
  381. link against the SMB, RPC and other protocols.
  382. ## --------------------------------------------------------------------
  383. %if %build_compat32
  384. %package -n compat32-samba-libs
  385. Summary: Samba libraries
  386. Summary(ja): Samba ライブラリ
  387. Group: system,legacy
  388. %if %with_libwbclient
  389. Requires: compat32-libwbclient
  390. %endif
  391. %description -n compat32-samba-libs
  392. The samba4-libs package contains the libraries needed by programs that
  393. link against the SMB, RPC and other protocols provided by the Samba suite.
  394. ## --------------------------------------------------------------------
  395. %package -n compat32-libsmbclient
  396. Summary: The SMB client library
  397. Summary(ja): SMB クライアントライブラリ
  398. Group: system,legacy
  399. Requires: samba-common = %{samba_version}-%{release}
  400. %description -n compat32-libsmbclient
  401. The libsmbclient contains the SMB client library from the Samba suite.
  402. %description -n compat32-libsmbclient -l ja
  403. libsmbclient は Samba クライアントの機能を提供するライブラリを
  404. 提供します。
  405. ## --------------------------------------------------------------------
  406. %package -n compat32-libwbclient
  407. Summary: The winbind client library
  408. Summary(ja): Winbind クライアントライブラリ
  409. Group: system,legacy
  410. Requires: samba-common = %{samba_version}-%{release}
  411. Requires(pre): /usr/sbin/groupadd
  412. Requires(post): /sbin/chkconfig, /sbin/service, coreutils
  413. Requires(preun): /sbin/chkconfig, /sbin/service
  414. %description -n compat32-libwbclient
  415. The libwbclient package contains the winbind client library from
  416. the Samba suite.
  417. %endif
  418. ## --------------------------------------------------------------------
  419. %debug_package
  420. ## ====================================================================
  421. %prep
  422. %setup -q -n samba-%{samba_version}%{?rc_number}
  423. %if %{with ja_docs}
  424. mkdir -p docs-ja
  425. pushd docs-ja
  426. tar zxf %{SOURCE2}
  427. popd
  428. %endif
  429. ## ====================================================================
  430. %build
  431. %global _tdb_lib ,!tdb,!pytdb
  432. %global _talloc_lib ,talloc,pytalloc,pytalloc-util
  433. %global _tevent_lib ,tevent,pytevent
  434. %global _ldb_lib ,ldb,pyldb
  435. %global _samba4_libraries heimdal,!zlib,ctdb,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib}
  436. %global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
  437. %global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
  438. %global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
  439. %global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules}
  440. %global _libsmbclient %nil
  441. %global _libwbclient %nil
  442. %if ! %with_libsmbclient
  443. %global _libsmbclient smbclient,
  444. %endif
  445. %if ! %with_libwbclient
  446. %global _libwbclient wbclient,
  447. %endif
  448. %global _samba4_private_libraries %{_libsmbclient}%{_libwbclient}
  449. sed \
  450. -e 's|@PROG_CMD@|%{_sbindir}\/samba|g' \
  451. -e 's|@SAMBA_PID@|%{_var}\/run\/samba/samba\.pid|g' \
  452. %{SOURCE200} > samba4.init
  453. make distclean
  454. ##export PATH=$PATH:$PWD/buildtools/bin
  455. export PYTHON=%{__python3}
  456. %configure \
  457. --enable-fhs \
  458. --bundled-libraries=%{_samba4_libraries} \
  459. --with-shared-modules=%{_samba4_modules} \
  460. --with-pam \
  461. --without-fam \
  462. --with-pie \
  463. --with-relro \
  464. --disable-rpath-install \
  465. --with-cachedir=/var/lib/samba \
  466. --with-configdir=%{_sysconfdir}/samba \
  467. --with-lockdir=/var/lib/samba \
  468. --with-logfilebase=/var/log/samba \
  469. --with-modulesdir=%{_libdir}/samba \
  470. --with-pammodulesdir=/%{_lib}/security \
  471. --with-privatedir=/var/lib/samba/private \
  472. --without-ldb-lmdb \
  473. %if ! %{with tracker}
  474. --disable-spotlight \
  475. %endif
  476. %if %{with systemd}
  477. --with-systemd \
  478. --systemd-install-services \
  479. --with-systemddir=%{_unitdir} \
  480. --with-piddir=/run/samba \
  481. --with-sockets-dir=/run/samba \
  482. %else
  483. --with-piddir=/var/run/samba \
  484. --with-sockets-dir=/var/run/samba \
  485. %endif
  486. %{nil}
  487. # --bundled-libraries=NONE \
  488. # --with-system-mitkrb5 \
  489. # --with-cluster-support \
  490. # try and build the manpages
  491. #./release-scripts/build-manpages-nogit
  492. make %{?_smp_mflags}
  493. %if %{with pidl}
  494. pushd pidl
  495. %__perl Makefile.PL PREFIX=%{_prefix}
  496. make %{?_smp_mflags}
  497. popd
  498. %endif
  499. # Remove some permission bits to avoid to many dependencies
  500. find examples docs-xml -type f | xargs -r chmod -x
  501. ## ====================================================================
  502. %install
  503. rm -rf %{buildroot}
  504. make %{?_smp_mflags} install DESTDIR=%{buildroot}
  505. %if %{with pidl}
  506. pushd pidl
  507. make DESTDIR=%{buildroot} install_vendor
  508. find %{buildroot}%{perl_archlib} -type f -name perllocal.pod | xargs rm -f
  509. find %{buildroot}%{perl_vendorarch} -type f -name .packlist | xargs rm -f
  510. # Already packaged by perl Parse:Yapp
  511. rm -rf %{buildroot}%{perl_vendorlib}/Parse/Yapp
  512. popd
  513. %endif
  514. # Create the target build directory hierarchy
  515. mkdir -p %{buildroot}%{samba_includedir}
  516. mkdir -p %{buildroot}%{_initrddir}
  517. mkdir -p %{buildroot}%{_sysconfdir}/{pam.d,samba,logrotate.d}
  518. mkdir -p %{buildroot}%{_sysconfdir}/{samba,security,sysconfig}
  519. mkdir -p %{buildroot}%{_sysconfdir}/xinetd.d
  520. mkdir -p %{buildroot}/%{_libdir}/krb5/plugins/libkrb5
  521. install -d -m 0755 %{buildroot}/usr/{sbin,bin}
  522. install -d -m 0755 %{buildroot}%{_libdir}/security
  523. install -d -m 0755 %{buildroot}/var/lib/samba
  524. install -d -m 0755 %{buildroot}/var/lib/samba/msg
  525. install -d -m 0755 %{buildroot}/var/lib/samba/private
  526. install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
  527. install -d -m 0755 %{buildroot}/var/lib/samba/scripts
  528. install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
  529. install -d -m 0755 %{buildroot}/var/log/samba/old
  530. install -d -m 0755 %{buildroot}/var/run/samba
  531. install -d -m 0755 %{buildroot}/var/run/winbindd
  532. install -d -m 0755 %{buildroot}/var/spool/samba
  533. install -d -m 0755 %{buildroot}/%{_libdir}/samba
  534. install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
  535. %if %{with systemd}
  536. install -d -m 0755 %{buildroot}%{_tmpfilesdir}
  537. # Create /run/samba.
  538. echo "d /run/samba 755 root root" > %{buildroot}%{_tmpfilesdir}/samba.conf
  539. # NetworkManager online/offline script
  540. install -d -m 0755 %{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d/
  541. install -m 0755 packaging/NetworkManager/30-winbind-systemd \
  542. %{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d/30-winbind
  543. %else
  544. # initscripts
  545. install -m755 %{SOURCE100} %{buildroot}%{_initrddir}/nmb
  546. install -m755 %{SOURCE101} %{buildroot}%{_initrddir}/smb
  547. install -m755 %{SOURCE102} %{buildroot}%{_initrddir}/winbind
  548. install -m755 samba4.init %{buildroot}%{_initrddir}/samba
  549. %endif
  550. # pam
  551. install -m644 %{SOURCE6} %{buildroot}%{_sysconfdir}/pam.d/samba
  552. # Move libwbclient.so* into private directory, it cannot be just libdir/samba
  553. # because samba uses rpath with this directory.
  554. install -d -m 0755 %{buildroot}/%{_libdir}/samba/wbclient
  555. mv %{buildroot}/%{_libdir}/libwbclient.so* %{buildroot}/%{_libdir}/samba/wbclient
  556. # Install other stuff
  557. install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/samba
  558. install -m644 %{SOURCE103} ./smb.conf.example
  559. install -d -m 0755 %{buildroot}%{_sysconfdir}/security
  560. install -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
  561. echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
  562. # openLDAP database schema
  563. install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
  564. install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
  565. install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint
  566. #install -d -m 0755 %{buildroot}%{_prefix}/lib/tmpfiles.d/
  567. #install -m644 packaging/systemd/samba.conf.tmp %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
  568. # create /var/run/samba too.
  569. #echo "d /var/run/samba 755 root root" >> %{buildroot}%{_prefix}/lib/tmpfiles.d/samba.conf
  570. #echo "d /var/run/ctdb 755 root root" >> %{buildroot}%{_tmpfilesdir}/ctdb.conf
  571. install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
  572. install -m 0644 %{SOURCE104} %{buildroot}%{_sysconfdir}/sysconfig/samba
  573. #install -m 0644 ctdb/config/ctdb.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/ctdb
  574. # winbind krb5 locator
  575. install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
  576. touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
  577. # This makes the right links, as rpmlint requires that
  578. # the ldconfig-created links be recorded in the RPM.
  579. /sbin/ldconfig -N -n %{buildroot}%{_libdir}
  580. %if %{with ja_docs}
  581. rm -rf docs-ja
  582. mkdir -p docs-ja
  583. pushd docs-ja
  584. tar zxf %{SOURCE2}
  585. popd
  586. find docs-ja/docs-xml/output/manpages/ -type f| while read f; do
  587. c=`echo -n $f | sed -e 's,^.*\.,,'`
  588. gzip -9 $f
  589. mkdir -p %{buildroot}%{_mandir}/ja/man$c
  590. cp -f $f.gz %{buildroot}%{_mandir}/ja/man$c/
  591. done
  592. rm -f %{buildroot}%{_mandir}/ja/man1/winexe.1*
  593. %endif
  594. ## ====================================================================
  595. %pre
  596. if [ "$1" -eq "2" ]; then
  597. PREV=`/usr/sbin/smbd -V 2>/dev/null | sed -e 's/^Version \([0-9]*\)\..*$/\1/'`
  598. if [ "x$PREV" == "x3" ]; then
  599. /sbin/service smb stop >/dev/null 2>&1 || :
  600. /sbin/service nmb stop >/dev/null 2>&1 || :
  601. cp -af %{_sysconfdir}/samba/smb.conf %{_sysconfdir}/samba/smb.conf.samba3
  602. cp -af /var/lib/samba /var/lib/samba3
  603. echo "Samba is upgraded from version 3.x to 4.x and daemons are stopped."
  604. echo "Please check and update configurations."
  605. echo
  606. echo "The old files are copied:"
  607. echo " /etc/samba/smb.conf -> /etc/samba/smb.conf.samba3"
  608. echo " /var/lib/samba -> /var/lib/samba3"
  609. echo
  610. fi
  611. fi
  612. ## ====================================================================
  613. %post
  614. %if %{with systemd}
  615. %systemd_post smb.service
  616. %systemd_post nmb.service
  617. %systemd_post samba-bgqd.service
  618. %else
  619. if [ $1 -eq 1 ]; then # Install
  620. # chkconfig
  621. /sbin/chkconfig --add smb
  622. /sbin/chkconfig --add nmb
  623. fi
  624. exit 0
  625. %endif
  626. ## --------------------------------------------------------------------
  627. %preun
  628. %if %{with systemd}
  629. %systemd_preun smb.service
  630. %systemd_preun nmb.service
  631. %systemd_preun samba-bgqd.service
  632. %else
  633. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  634. /sbin/service smb stop >/dev/null 2>&1 || :
  635. /sbin/service nmb stop >/dev/null 2>&1 || :
  636. /sbin/service samba stop >/dev/null 2>&1 || :
  637. /sbin/chkconfig --del smb
  638. /sbin/chkconfig --del nmb
  639. /sbin/chkconfig --del samba
  640. # rm -rf /var/log/samba/* /var/lib/samba/*
  641. fi
  642. exit 0
  643. %endif
  644. ## --------------------------------------------------------------------
  645. %postun
  646. %if %{with systemd}
  647. %systemd_postun_with_restart smb.service
  648. %systemd_postun_with_restart nmb.service
  649. %systemd_postun_with_restart samba-bgqd.service
  650. %else
  651. if [ $1 -ge 0 ]; then # Upgrade
  652. /sbin/service smb condrestart >/dev/null 2>&1 || :
  653. /sbin/service nmb condrestart >/dev/null 2>&1 || :
  654. fi
  655. %endif
  656. ## --------------------------------------------------------------------
  657. %pre winbind
  658. /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
  659. ## --------------------------------------------------------------------
  660. %post winbind
  661. %if %{with systemd}
  662. %systemd_post winbind.service
  663. %else
  664. /sbin/chkconfig --add winbind
  665. %endif
  666. ## --------------------------------------------------------------------
  667. %preun winbind
  668. %if %{with systemd}
  669. %systemd_preun winbind.service
  670. %else
  671. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  672. /sbin/service winbind stop >/dev/null 2>&1 || :
  673. /sbin/chkconfig --del winbind
  674. fi
  675. exit 0
  676. %endif
  677. ## --------------------------------------------------------------------
  678. %postun winbind
  679. %if %{with systemd}
  680. %systemd_postun_with_restart winbind.service
  681. %else
  682. %endif
  683. if [ "$1" -ge 0 ]; then
  684. /sbin/service winbind condrestart >/dev/null 2>&1 || :
  685. fi
  686. ## --------------------------------------------------------------------
  687. %post dc
  688. if [ $1 -eq 1 ]; then # Install
  689. # modify named.conf.dlz for DLZ configuration if version 9.9.0 or later
  690. if [ -f /usr/sbin/named ]; then
  691. bind_minor_ver=$(named -v | sed -e "s|^BIND \([.0-9]*\)|\1|" | cut -d "." -f 2)
  692. if [ $bind_minor_ver -gt 8 ]; then
  693. cat %{_datadir}/samba/setup/named.conf.dlz \
  694. | sed -e "s|\(database.*dlz_bind9.so\)|# \1|" > %{_datadir}/samba/setup/named.conf.dlz9
  695. cat %{_datadir}/samba/setup/named.conf.dlz9 > %{_datadir}/samba/setup/named.conf.dlz
  696. rm %{_datadir}/samba/setup/named.conf.dlz9
  697. fi
  698. fi
  699. %if !%{with systemd}
  700. /sbin/chkconfig --add samba
  701. %endif
  702. # rename original smb.conf for provisioning
  703. if [ -f /etc/samba/smb.conf ]; then
  704. mv -f %{_sysconfdir}/samba/smb.conf %{_sysconfdir}/samba/smb.conf.old
  705. fi
  706. fi
  707. setfacl -m u:named:rwx /var/lib/samba/private >/dev/null 2>/dev/null || :
  708. if [ -d /var/lib/samba/private/tls ]; then
  709. chmod 0700 /var/lib/samba/private/tls
  710. fi
  711. if [ -f /var/lib/samba/private/tls/key.pem ]; then
  712. chmod 0600 /var/lib/samba/private/tls/key.pem
  713. fi
  714. %if %{with systemd}
  715. %systemd_post samba.service
  716. %endif
  717. %preun dc
  718. %if %{with systemd}
  719. %systemd_preun samba.service
  720. %else
  721. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  722. /sbin/service samba stop >/dev/null 2>&1 || :
  723. /sbin/chkconfig --del samba
  724. fi
  725. exit 0
  726. %endif
  727. %postun dc
  728. %if %{with systemd}
  729. %systemd_postun_with_restart samba.service
  730. %else
  731. if [ $1 -ge 0 ]; then # Upgrade
  732. if [ -f /var/run/samba/samba.pid ]; then
  733. /sbin/service samba restart >/dev/null 2>&1 || :
  734. fi
  735. fi
  736. %endif
  737. ## --------------------------------------------------------------------
  738. %post common
  739. setfacl -m u:named:rwx /var/lib/samba/private >/dev/null 2>/dev/null || :
  740. %if %{with systemd}
  741. %tmpfiles_create %{_tmpfilesdir}/samba.conf
  742. %endif
  743. ## --------------------------------------------------------------------
  744. %posttrans -n libwbclient
  745. # It has to be posttrans here to make sure all files of a previous version
  746. # without alternatives support are removed
  747. %{_sbindir}/update-alternatives \
  748. --install \
  749. %{_libdir}/libwbclient.so.%{libwbc_sover} \
  750. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  751. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover} \
  752. 10 \
  753. --slave \
  754. %{_libdir}/libwbclient.so.%{libwbc_soname} \
  755. libwbclient.so.%{libwbc_soname}%{libwbc_alternatives_suffix} \
  756. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_soname}
  757. ## --------------------------------------------------------------------
  758. %preun -n libwbclient
  759. %{_sbindir}/update-alternatives \
  760. --remove \
  761. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  762. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover}
  763. ## --------------------------------------------------------------------
  764. %posttrans -n libwbclient-devel
  765. %{_sbindir}/update-alternatives \
  766. --install \
  767. %{_libdir}/libwbclient.so \
  768. libwbclient.so%{libwbc_alternatives_suffix} \
  769. %{_libdir}/samba/wbclient/libwbclient.so \
  770. 10
  771. ## --------------------------------------------------------------------
  772. %preun -n libwbclient-devel
  773. # alternatives checks if the file which should be removed is a link or not, but
  774. # not if it points to the /etc/alternatives directory or to some other place.
  775. # When downgrading to a version where alternatives is not used and
  776. # libwbclient.so is a link and not a file it will be removed. The following
  777. # check removes the alternatives files manually if that is the case.
  778. if [ "`readlink %{_libdir}/libwbclient.so`" == "libwbclient.so.%{libwbc_sover}" ]; then
  779. /bin/rm -f \
  780. /etc/alternatives/libwbclient.so%{libwbc_alternatives_suffix} \
  781. /var/lib/rpm/alternatives/libwbclient.so%{libwbc_alternatives_suffix} 2> /dev/null
  782. else
  783. %{_sbindir}/update-alternatives \
  784. --remove \
  785. libwbclient.so%{libwbc_alternatives_suffix} \
  786. %{_libdir}/samba/wbclient/libwbclient.so
  787. fi
  788. %if %build_compat32
  789. ## --------------------------------------------------------------------
  790. %posttrans -n compat32-libwbclient
  791. # It has to be posttrans here to make sure all files of a previous version
  792. # without alternatives support are removed
  793. %{_sbindir}/update-alternatives \
  794. --install \
  795. %{_libdir}/libwbclient.so.%{libwbc_sover} \
  796. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  797. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover} \
  798. 10
  799. ## --------------------------------------------------------------------
  800. %preun -n compat32-libwbclient
  801. %{_sbindir}/update-alternatives \
  802. --remove \
  803. libwbclient.so.%{libwbc_sover}%{libwbc_alternatives_suffix} \
  804. %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_sover}
  805. %endif
  806. %files
  807. %defattr(-,root,root,-)
  808. %license COPYING
  809. %doc PFIF.txt README.md README.contributing VERSION WHATSNEW.txt
  810. %if %{with ja_docs}
  811. %doc docs-ja/docs-xml/output/htmldocs
  812. %endif
  813. %{_bindir}/smbstatus
  814. %{_sbindir}/eventlogadm
  815. %{_sbindir}/nmbd
  816. %{_sbindir}/smbd
  817. %dir %{_libdir}/samba/auth
  818. %{_libdir}/samba/auth/unix.so
  819. %dir %{_libdir}/samba/vfs
  820. %{_libdir}/samba/vfs/*
  821. %{_libdir}/samba/samba-bgqd
  822. %{_libdir}/samba/samba-dcerpcd
  823. %{_libdir}/samba/rpcd_*
  824. %exclude %{_libdir}/samba/vfs/posix_eadb.so
  825. %config(noreplace) %{_sysconfdir}/logrotate.d/samba
  826. %config(noreplace) %{_sysconfdir}/pam.d/samba
  827. %dir %{_sysconfdir}/openldap/schema
  828. %config %{_sysconfdir}/openldap/schema/samba.schema
  829. %attr(0700,root,root) %dir /var/log/samba
  830. %attr(0700,root,root) %dir /var/log/samba/old
  831. %attr(1777,root,root) %dir /var/spool/samba
  832. %if %{with systemd}
  833. %{_unitdir}/smb.service
  834. %{_unitdir}/nmb.service
  835. %{_unitdir}/samba-bgqd.service
  836. %else
  837. %{_initrddir}/nmb
  838. %{_initrddir}/smb
  839. %endif
  840. %if %{with tracker}
  841. %dir %{_datadir}/samba/mdssvc
  842. %{_datadir}/samba/mdssvc/*
  843. %endif
  844. %{_mandir}/man1/smbstatus.1*
  845. %{_mandir}/man7/samba.7*
  846. %{_mandir}/man8/eventlogadm.8*
  847. %{_mandir}/man8/nmbd.8*
  848. %{_mandir}/man8/samba-bgqd.8*
  849. %{_mandir}/man8/samba-dcerpcd.8*
  850. %{_mandir}/man8/smbd.8*
  851. %{_mandir}/man8/vfs_acl_tdb.8*
  852. %{_mandir}/man8/vfs_acl_xattr.8*
  853. %{_mandir}/man8/vfs_aio_fork.8*
  854. %{_mandir}/man8/vfs_aio_pthread.8*
  855. %{_mandir}/man8/vfs_audit.8*
  856. %{_mandir}/man8/vfs_btrfs.8*
  857. %{_mandir}/man8/vfs_cap.8*
  858. %{_mandir}/man8/vfs_catia.8*
  859. %{_mandir}/man8/vfs_commit.8*
  860. %{_mandir}/man8/vfs_crossrename.8*
  861. %{_mandir}/man8/vfs_default_quota.8*
  862. %{_mandir}/man8/vfs_dirsort.8*
  863. %{_mandir}/man8/vfs_expand_msdfs.8*
  864. %{_mandir}/man8/vfs_extd_audit.8*
  865. %{_mandir}/man8/vfs_fake_perms.8*
  866. %{_mandir}/man8/vfs_fileid.8*
  867. %{_mandir}/man8/vfs_fruit.8*
  868. %{_mandir}/man8/vfs_full_audit.8*
  869. %{_mandir}/man8/vfs_glusterfs_fuse.8*
  870. %{_mandir}/man8/vfs_gpfs.8*
  871. %{_mandir}/man8/vfs_linux_xfs_sgid.8*
  872. %{_mandir}/man8/vfs_media_harmony.8*
  873. %{_mandir}/man8/vfs_offline.8*
  874. %{_mandir}/man8/vfs_preopen.8*
  875. %{_mandir}/man8/vfs_readahead.8*
  876. %{_mandir}/man8/vfs_readonly.8*
  877. %{_mandir}/man8/vfs_recycle.8*
  878. %{_mandir}/man8/vfs_shadow_copy.8*
  879. %{_mandir}/man8/vfs_shadow_copy2.8*
  880. %{_mandir}/man8/vfs_shell_snap.8*
  881. %{_mandir}/man8/vfs_snapper.8*
  882. %{_mandir}/man8/vfs_streams_depot.8*
  883. %{_mandir}/man8/vfs_streams_xattr.8*
  884. %{_mandir}/man8/vfs_syncops.8*
  885. %{_mandir}/man8/vfs_time_audit.8*
  886. %{_mandir}/man8/vfs_unityed_media.8*
  887. %{_mandir}/man8/vfs_virusfilter.8*
  888. %{_mandir}/man8/vfs_worm.8*
  889. %{_mandir}/man8/vfs_widelinks.8*
  890. %{_mandir}/man8/vfs_xattr_tdb.8*
  891. %if %{with ja_docs}
  892. # ja manuals
  893. %{_mandir}/ja/man1/mvxattr.1*
  894. %{_mandir}/ja/man1/smbstatus.1*
  895. %{_mandir}/ja/man7/samba.7*
  896. %{_mandir}/ja/man8/eventlogadm.8*
  897. %{_mandir}/ja/man8/nmbd.8*
  898. %{_mandir}/ja/man8/samba-bgqd.8*
  899. %{_mandir}/ja/man8/samba-dcerpcd.8*
  900. %{_mandir}/ja/man8/smbd.8*
  901. %{_mandir}/ja/man8/vfs_acl_tdb.8*
  902. %{_mandir}/ja/man8/vfs_acl_xattr.8*
  903. %{_mandir}/ja/man8/vfs_aio_fork.8*
  904. %{_mandir}/ja/man8/vfs_aio_pthread.8*
  905. %{_mandir}/ja/man8/vfs_audit.8*
  906. %{_mandir}/ja/man8/vfs_btrfs.8*
  907. %exclude %{_mandir}/ja/man8/vfs_cacheprime.8*
  908. %{_mandir}/ja/man8/vfs_cap.8*
  909. %{_mandir}/ja/man8/vfs_catia.8*
  910. %exclude %{_mandir}/ja/man8/vfs_ceph.8*
  911. %exclude %{_mandir}/ja/man8/vfs_ceph_snapshots.8.gz
  912. %{_mandir}/ja/man8/vfs_commit.8*
  913. %{_mandir}/ja/man8/vfs_crossrename.8*
  914. %{_mandir}/ja/man8/vfs_default_quota.8*
  915. %{_mandir}/ja/man8/vfs_dirsort.8*
  916. %{_mandir}/ja/man8/vfs_expand_msdfs.8*
  917. %{_mandir}/ja/man8/vfs_extd_audit.8*
  918. %{_mandir}/ja/man8/vfs_fake_perms.8*
  919. %{_mandir}/ja/man8/vfs_fileid.8*
  920. %{_mandir}/ja/man8/vfs_fruit.8*
  921. %{_mandir}/ja/man8/vfs_full_audit.8*
  922. %exclude %{_mandir}/ja/man8/vfs_glusterfs.8*
  923. %{_mandir}/ja/man8/vfs_glusterfs_fuse.8*
  924. %{_mandir}/ja/man8/vfs_gpfs.8*
  925. %{_mandir}/ja/man8/vfs_io_uring.8.gz
  926. %exclude %{_mandir}/ja/man8/vfs_nfs4acl_xattr.8*
  927. %{_mandir}/ja/man8/vfs_linux_xfs_sgid.8*
  928. %{_mandir}/ja/man8/vfs_media_harmony.8*
  929. %{_mandir}/ja/man8/vfs_offline.8*
  930. %exclude %{_mandir}/ja/man8/vfs_prealloc.8*
  931. %{_mandir}/ja/man8/vfs_preopen.8*
  932. %{_mandir}/ja/man8/vfs_readahead.8*
  933. %{_mandir}/ja/man8/vfs_readonly.8*
  934. %{_mandir}/ja/man8/vfs_recycle.8*
  935. %{_mandir}/ja/man8/vfs_shadow_copy.8*
  936. %{_mandir}/ja/man8/vfs_shadow_copy2.8*
  937. %{_mandir}/ja/man8/vfs_shell_snap.8*
  938. %{_mandir}/ja/man8/vfs_snapper.8*
  939. %{_mandir}/ja/man8/vfs_streams_depot.8*
  940. %{_mandir}/ja/man8/vfs_streams_xattr.8*
  941. %{_mandir}/ja/man8/vfs_syncops.8*
  942. %{_mandir}/ja/man8/vfs_time_audit.8*
  943. %exclude %{_mandir}/ja/man8/vfs_tsmsm.8*
  944. %{_mandir}/ja/man8/vfs_unityed_media.8*
  945. %{_mandir}/ja/man8/vfs_virusfilter.8*
  946. %{_mandir}/ja/man8/vfs_worm.8*
  947. %{_mandir}/ja/man8/vfs_widelinks.8*
  948. %{_mandir}/ja/man8/vfs_xattr_tdb.8*
  949. %{_mandir}/ja/man8/vfs_zfsacl.8*
  950. %endif
  951. ## --------------------------------------------------------------------
  952. %files libs
  953. %defattr(-,root,root)
  954. %{_libdir}/libdcerpc-samr.so.*
  955. %{_libdir}/libdcerpc-server-core.so.*
  956. %{_libdir}/libnetapi.so.*
  957. %{_libdir}/libsmbldap.so.*
  958. %dir %{_libdir}/samba
  959. %{_libdir}/samba/libMESSAGING-private-samba.so
  960. %{_libdir}/samba/libREG-FULL-private-samba.so
  961. %{_libdir}/samba/libRPC-SERVER-LOOP-private-samba.so
  962. %{_libdir}/samba/libRPC-WORKER-private-samba.so
  963. %{_libdir}/samba/libads-private-samba.so
  964. %{_libdir}/samba/libauth-private-samba.so
  965. %{_libdir}/samba/libdfs-server-ad-private-samba.so
  966. %{_libdir}/samba/libprinting-migrate-private-samba.so
  967. %{_libdir}/samba/libshares-private-samba.so
  968. %{_libdir}/samba/libsmbd-base-private-samba.so
  969. %{_libdir}/samba/libsmbpasswdparser-private-samba.so
  970. %{_libdir}/samba/libxattr-tdb-private-samba.so
  971. ## --------------------------------------------------------------------
  972. %files common
  973. %defattr(-,root,root)
  974. %doc smb.conf.example
  975. #%{_libdir}/samba/charset ???
  976. #%{_sysconfdir}/tmpfiles.d/samba.conf
  977. %{_bindir}/net
  978. %{_bindir}/pdbedit
  979. %{_bindir}/profiles
  980. %{_bindir}/samba-log-parser
  981. %{_bindir}/smbcontrol
  982. %{_bindir}/smbpasswd
  983. %{_bindir}/testparm
  984. #%{_datadir}/samba/codepages
  985. %dir %{_datadir}/samba
  986. %dir /var/run/samba
  987. %dir /var/run/winbindd
  988. %dir /var/lib/samba
  989. %if %{with systemd}
  990. %{_tmpfilesdir}/samba.conf
  991. %endif
  992. %attr(700,root,root) %dir /var/lib/samba/private
  993. %attr(755,root,root) %dir /var/lib/samba/msg
  994. %attr(755,root,root) %dir %{_sysconfdir}/samba
  995. %ghost %config(noreplace) %{_sysconfdir}/samba/smb.conf
  996. %config(noreplace) %{_sysconfdir}/samba/lmhosts
  997. %config(noreplace) %{_sysconfdir}/sysconfig/samba
  998. %{_mandir}/man1/profiles.1.gz
  999. %{_mandir}/man1/samba-log-parser.1*
  1000. %{_mandir}/man1/smbcontrol.1.gz
  1001. %{_mandir}/man1/testparm.1.gz
  1002. %{_mandir}/man5/lmhosts.5.gz
  1003. %{_mandir}/man5/smb.conf.5.gz
  1004. %{_mandir}/man8/net.8.gz
  1005. %{_mandir}/man8/pdbedit.8.gz
  1006. %{_mandir}/man8/smbpasswd.8.gz
  1007. %if %{with ja_docs}
  1008. # ja manuals
  1009. %{_mandir}/ja/man1/profiles.1.gz
  1010. %{_mandir}/ja/man1/smbcontrol.1.gz
  1011. %{_mandir}/ja/man1/testparm.1.gz
  1012. %{_mandir}/ja/man5/lmhosts.5.gz
  1013. %{_mandir}/ja/man5/smb.conf.5.gz
  1014. %{_mandir}/ja/man8/net.8.gz
  1015. %{_mandir}/ja/man8/pdbedit.8.gz
  1016. %endif
  1017. ## --------------------------------------------------------------------
  1018. %files common-libs
  1019. %{_libdir}/libdcerpc-binding.so.*
  1020. %{_libdir}/libndr-krb5pac.so.*
  1021. %{_libdir}/libndr-nbt.so.*
  1022. %{_libdir}/libndr-standard.so.*
  1023. %{_libdir}/libndr.so.*
  1024. %{_libdir}/libnetapi.so.*
  1025. %{_libdir}/libsamba-credentials.so.*
  1026. %{_libdir}/libsamba-errors.so.*
  1027. %{_libdir}/libsamba-hostconfig.so.*
  1028. %{_libdir}/libsamba-passdb.so.*
  1029. %{_libdir}/libsamba-util.so.*
  1030. %{_libdir}/libsamdb.so.*
  1031. %{_libdir}/libsmbconf.so.*
  1032. %{_libdir}/libtevent-util.so.*
  1033. %{_libdir}/samba/libCHARSET3-private-samba.so
  1034. %{_libdir}/samba/libMESSAGING-SEND-private-samba.so
  1035. %{_libdir}/samba/libaddns-private-samba.so
  1036. %{_libdir}/samba/libasn1-private-samba.so
  1037. %{_libdir}/samba/libasn1util-private-samba.so
  1038. %{_libdir}/samba/libauthkrb5-private-samba.so
  1039. %{_libdir}/samba/libcli-cldap-private-samba.so
  1040. %{_libdir}/samba/libcli-ldap-common-private-samba.so
  1041. %{_libdir}/samba/libcli-ldap-private-samba.so
  1042. %{_libdir}/samba/libcli-nbt-private-samba.so
  1043. %{_libdir}/samba/libcli-smb-common-private-samba.so
  1044. %{_libdir}/samba/libcli-spoolss-private-samba.so
  1045. %{_libdir}/samba/libcliauth-private-samba.so
  1046. %{_libdir}/samba/libclidns-private-samba.so
  1047. %{_libdir}/samba/libcluster-private-samba.so
  1048. %{_libdir}/samba/libcmdline-contexts-private-samba.so
  1049. %{_libdir}/samba/libcmdline-private-samba.so
  1050. %{_libdir}/samba/libcom-err-private-samba.so
  1051. %{_libdir}/samba/libcommon-auth-private-samba.so
  1052. %{_libdir}/samba/libdbwrap-private-samba.so
  1053. %{_libdir}/samba/libdcerpc-pkt-auth-private-samba.so
  1054. %{_libdir}/samba/libdcerpc-samba-private-samba.so
  1055. %{_libdir}/samba/libevents-private-samba.so
  1056. %{_libdir}/samba/libflag-mapping-private-samba.so
  1057. %{_libdir}/samba/libgenrand-private-samba.so
  1058. %{_libdir}/samba/libgensec-private-samba.so
  1059. %{_libdir}/samba/libgse-private-samba.so
  1060. %{_libdir}/samba/libgssapi-private-samba.so
  1061. %{_libdir}/samba/libhcrypto-private-samba.so
  1062. %{_libdir}/samba/libheimbase-private-samba.so
  1063. %{_libdir}/samba/libhx509-private-samba.so
  1064. %{_libdir}/samba/libinterfaces-private-samba.so
  1065. %{_libdir}/samba/libiov-buf-private-samba.so
  1066. %{_libdir}/samba/libkrb5-private-samba.so
  1067. %{_libdir}/samba/libkrb5samba-private-samba.so
  1068. #{_libdir}/samba/libldb-private-samba.so
  1069. %{_libdir}/samba/libldbsamba-private-samba.so
  1070. %{_libdir}/samba/liblibcli-lsa3-private-samba.so
  1071. %{_libdir}/samba/liblibcli-netlogon3-private-samba.so
  1072. %{_libdir}/samba/liblibsmb-private-samba.so
  1073. %{_libdir}/samba/libmessages-dgm-private-samba.so
  1074. %{_libdir}/samba/libmessages-util-private-samba.so
  1075. %{_libdir}/samba/libmsghdr-private-samba.so
  1076. %{_libdir}/samba/libmsrpc3-private-samba.so
  1077. %{_libdir}/samba/libndr-samba-private-samba.so
  1078. %{_libdir}/samba/libndr-samba4-private-samba.so
  1079. %{_libdir}/samba/libnetif-private-samba.so
  1080. %{_libdir}/samba/libnpa-tstream-private-samba.so
  1081. %{_libdir}/samba/libreplace-private-samba.so
  1082. %{_libdir}/samba/libroken-private-samba.so
  1083. %{_libdir}/samba/libsamba-cluster-support-private-samba.so
  1084. %{_libdir}/samba/libsamba-debug-private-samba.so
  1085. %{_libdir}/samba/libsamba-modules-private-samba.so
  1086. %{_libdir}/samba/libsamba-security-private-samba.so
  1087. %{_libdir}/samba/libsamba-sockets-private-samba.so
  1088. %{_libdir}/samba/libsamba3-util-private-samba.so
  1089. %{_libdir}/samba/libsamdb-common-private-samba.so
  1090. %{_libdir}/samba/libsecrets3-private-samba.so
  1091. %{_libdir}/samba/libserver-id-db-private-samba.so
  1092. %{_libdir}/samba/libserver-role-private-samba.so
  1093. %{_libdir}/samba/libsmb-transport-private-samba.so
  1094. %{_libdir}/samba/libsmbd-shim-private-samba.so
  1095. %{_libdir}/samba/libsocket-blocking-private-samba.so
  1096. %{_libdir}/samba/libstable-sort-private-samba.so
  1097. %{_libdir}/samba/libsys-rw-private-samba.so
  1098. %{_libdir}/samba/libtalloc-private-samba.so
  1099. %{_libdir}/samba/libtalloc-report-printf-private-samba.so
  1100. %{_libdir}/samba/libtalloc-report-private-samba.so
  1101. %{_libdir}/samba/libtdb-wrap-private-samba.so
  1102. %{_libdir}/samba/libtevent-private-samba.so
  1103. %{_libdir}/samba/libtime-basic-private-samba.so
  1104. %{_libdir}/samba/libtrusts-util-private-samba.so
  1105. %{_libdir}/samba/libutil-reg-private-samba.so
  1106. %{_libdir}/samba/libutil-setid-private-samba.so
  1107. %{_libdir}/samba/libutil-tdb-private-samba.so
  1108. %{_libdir}/samba/libwind-private-samba.so
  1109. %{_libdir}/samba/libldb-*.so
  1110. %dir %{_libdir}/samba/ldb
  1111. %{_libdir}/samba/ldb/asq.so
  1112. %{_libdir}/samba/ldb/ldb.so
  1113. %{_libdir}/samba/ldb/paged_searches.so
  1114. %{_libdir}/samba/ldb/rdn_name.so
  1115. %{_libdir}/samba/ldb/sample.so
  1116. %{_libdir}/samba/ldb/server_sort.so
  1117. %{_libdir}/samba/ldb/skel.so
  1118. %{_libdir}/samba/ldb/tdb.so
  1119. %dir %{_libdir}/samba/pdb
  1120. %{_libdir}/samba/pdb/*
  1121. ## --------------------------------------------------------------------
  1122. %files dc-libs
  1123. %{_libdir}/libdcerpc-server.so.*
  1124. %dir %{_libdir}/samba
  1125. %{_libdir}/samba/libHDB-SAMBA4-private-samba.so
  1126. %{_libdir}/samba/libLIBWBCLIENT-OLD-private-samba.so
  1127. %{_libdir}/samba/libad-claims-private-samba.so
  1128. %{_libdir}/samba/libauth-unix-token-private-samba.so
  1129. %{_libdir}/samba/libauth4-private-samba.so
  1130. %{_libdir}/samba/libauthn-policy-util-private-samba.so
  1131. %{_libdir}/samba/libdb-glue-private-samba.so
  1132. %{_libdir}/samba/libdcerpc-samba4-private-samba.so
  1133. %{_libdir}/samba/libdnsserver-common-private-samba.so
  1134. %{_libdir}/samba/libdsdb-module-private-samba.so
  1135. %{_libdir}/samba/libdsdb-garbage-collect-tombstones-private-samba.so
  1136. %{_libdir}/samba/libgss-preauth-private-samba.so
  1137. %{_libdir}/samba/libhdb-private-samba.so
  1138. %{_libdir}/samba/libheimntlm-private-samba.so
  1139. %{_libdir}/samba/libkdc-private-samba.so
  1140. %{_libdir}/samba/libnet-keytab-private-samba.so
  1141. %{_libdir}/samba/libpac-private-samba.so
  1142. %{_libdir}/samba/libprocess-model-private-samba.so
  1143. %{_libdir}/samba/libscavenge-dns-records-private-samba.so
  1144. %{_libdir}/samba/libservice-private-samba.so
  1145. %dir %{_libdir}/samba/process_model
  1146. %{_libdir}/samba/process_model/*
  1147. %dir %{_libdir}/samba/service
  1148. %{_libdir}/samba/service/*
  1149. ## --------------------------------------------------------------------
  1150. %files dc
  1151. %{_bindir}/samba-tool
  1152. %{_sbindir}/samba
  1153. %{_sbindir}/samba_dnsupdate
  1154. %{_sbindir}/samba_downgrade_db
  1155. %{_sbindir}/samba-gpupdate
  1156. %{_sbindir}/samba_kcc
  1157. %{_sbindir}/samba_spnupdate
  1158. %{_sbindir}/samba_upgradedns
  1159. %dir %{_libdir}/samba
  1160. %{_libdir}/samba/libposix-eadb-private-samba.so
  1161. %{_libdir}/samba/auth/samba4.so
  1162. %{_libdir}/samba/vfs/posix_eadb.so
  1163. %{_libdir}/samba/bind9
  1164. %dir %{_libdir}/samba/gensec/
  1165. %{_libdir}/samba/gensec/*
  1166. %dir %{_libdir}/samba/ldb
  1167. %{_libdir}/samba/ldb/*
  1168. %exclude %{_libdir}/samba/ldb/asq.so
  1169. %exclude %{_libdir}/samba/ldb/ldb.so
  1170. %exclude %{_libdir}/samba/ldb/paged_searches.so
  1171. %exclude %{_libdir}/samba/ldb/rdn_name.so
  1172. %exclude %{_libdir}/samba/ldb/sample.so
  1173. %exclude %{_libdir}/samba/ldb/server_sort.so
  1174. %exclude %{_libdir}/samba/ldb/skel.so
  1175. %exclude %{_libdir}/samba/ldb/tdb.so
  1176. %dir /var/lib/samba/sysvol
  1177. %{_datadir}/samba/admx
  1178. %{_datadir}/samba/setup
  1179. %if %{with systemd}
  1180. %{_unitdir}/samba.service
  1181. %else
  1182. %{_initrddir}/samba
  1183. %endif
  1184. %{_mandir}/man8/samba.8*
  1185. %{_mandir}/man8/samba-tool.8*
  1186. %{_mandir}/man8/samba_downgrade_db.8.gz
  1187. %{_mandir}/man8/samba-gpupdate.8*
  1188. %if %{with ja_docs}
  1189. # ja manuals
  1190. %{_mandir}/ja/man8/samba.8*
  1191. %{_mandir}/ja/man8/samba-tool.8*
  1192. %{_mandir}/ja/man8/samba_downgrade_db.8.gz
  1193. %endif
  1194. ## --------------------------------------------------------------------
  1195. %files winbind
  1196. %defattr(-,root,root)
  1197. %{_libdir}/samba/idmap
  1198. %{_libdir}/samba/nss_info
  1199. %{_libdir}/samba/libnss-info-private-samba.so
  1200. %{_libdir}/samba/libidmap-private-samba.so
  1201. %{_sbindir}/winbindd
  1202. %attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
  1203. %config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
  1204. %{_mandir}/man5/pam_winbind.conf.5*
  1205. %{_mandir}/man8/winbindd.8*
  1206. %{_mandir}/man8/idmap_*.8*
  1207. %if %{with systemd}
  1208. %dir %{_prefix}/lib/NetworkManager
  1209. %dir %{_prefix}/lib/NetworkManager/dispatcher.d
  1210. %{_prefix}/lib/NetworkManager/dispatcher.d/*
  1211. %{_unitdir}/winbind.service
  1212. %else
  1213. %{_initrddir}/winbind
  1214. %endif
  1215. %if %{with ja_docs}
  1216. # ja manuals
  1217. %{_mandir}/ja/man5/pam_winbind.conf.5*
  1218. %{_mandir}/ja/man8/winbindd.8*
  1219. %{_mandir}/ja/man8/idmap_*.8*
  1220. %endif
  1221. ## --------------------------------------------------------------------
  1222. %files winbind-krb5-locator
  1223. %defattr(-,root,root)
  1224. %ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
  1225. %dir %{_libdir}/samba/krb5
  1226. %{_libdir}/samba/krb5/async_dns_krb5_locator.so
  1227. %{_libdir}/samba/krb5/winbind_krb5_locator.so
  1228. %{_mandir}/man8/winbind_krb5_locator.8*
  1229. %if %{with ja_docs}
  1230. # ja manual
  1231. %{_mandir}/ja/man8/winbind_krb5_locator.8*
  1232. %endif
  1233. ## --------------------------------------------------------------------
  1234. %files winbind-clients
  1235. %defattr(-,root,root)
  1236. %{_bindir}/ntlm_auth
  1237. %{_bindir}/wbinfo
  1238. #{_libdir}/samba/krb5/winbind_krb5_localauth.so
  1239. %{_libdir}/libnss_winbind.so*
  1240. %{_libdir}/libnss_wins.so*
  1241. /%{_lib}/security/pam_winbind.so
  1242. %{_mandir}/man1/ntlm_auth.1.gz
  1243. %{_mandir}/man1/wbinfo.1.gz
  1244. %{_mandir}/man8/pam_winbind.8.gz
  1245. %if %{with ja_docs}
  1246. # ja manuals
  1247. %{_mandir}/ja/man1/ntlm_auth.1.gz
  1248. %{_mandir}/ja/man1/wbinfo.1.gz
  1249. %{_mandir}/ja/man8/pam_winbind.8.gz
  1250. %endif
  1251. ## --------------------------------------------------------------------
  1252. %files client-libs
  1253. %{_libdir}/libdcerpc.so.*
  1254. %dir %{_libdir}/samba
  1255. %{_libdir}/samba/libgpext-private-samba.so
  1256. %{_libdir}/samba/libgpo-private-samba.so
  1257. %{_libdir}/samba/libhttp-private-samba.so
  1258. %{_libdir}/samba/libldb-cmdline-private-samba.so
  1259. %{_libdir}/samba/libmscat-private-samba.so
  1260. %{_libdir}/samba/libprinter-driver-private-samba.so
  1261. %{_libdir}/samba/libregistry-private-samba.so
  1262. %{_libdir}/samba/libsmbclient-raw-private-samba.so
  1263. %{_libdir}/samba/libsmbldaphelper-private-samba.so
  1264. %{_libdir}/samba/libtorture-private-samba.so
  1265. ## --------------------------------------------------------------------
  1266. %files client
  1267. %defattr(-,root,root)
  1268. %{_bindir}/cifsdd
  1269. %{_bindir}/dbwrap_tool
  1270. %{_bindir}/dumpmscat
  1271. %{_bindir}/mdsearch
  1272. %{_bindir}/mvxattr
  1273. %{_bindir}/nmblookup
  1274. %{_bindir}/oLschema2ldif
  1275. %{_bindir}/regdiff
  1276. %{_bindir}/regpatch
  1277. %{_bindir}/regshell
  1278. %{_bindir}/regtree
  1279. %{_bindir}/rpcclient
  1280. %{_bindir}/samba-regedit
  1281. %{_bindir}/sharesec
  1282. %{_bindir}/smbcacls
  1283. %{_bindir}/smbclient
  1284. %{_bindir}/smbcquotas
  1285. %{_bindir}/smbget
  1286. %{_bindir}/smbprint
  1287. %{_bindir}/smbspool
  1288. %{_bindir}/smbtar
  1289. %{_bindir}/smbtree
  1290. %{_bindir}/wspsearch
  1291. %{_libexecdir}/samba/smbspool_krb5_wrapper
  1292. %{_mandir}/man1/dbwrap_tool.1.gz
  1293. %{_mandir}/man1/nmblookup.1.gz
  1294. %{_mandir}/man1/log2pcap.1.gz
  1295. %{_mandir}/man1/mdsearch.1.gz
  1296. %{_mandir}/man1/mvxattr.1*
  1297. %{_mandir}/man1/oLschema2ldif.1.gz
  1298. %{_mandir}/man1/regdiff.1.gz
  1299. %{_mandir}/man1/regpatch.1.gz
  1300. %{_mandir}/man1/regshell.1.gz
  1301. %{_mandir}/man1/regtree.1.gz
  1302. %{_mandir}/man1/rpcclient.1.gz
  1303. %{_mandir}/man1/sharesec.1.gz
  1304. %{_mandir}/man1/smbcacls.1.gz
  1305. %{_mandir}/man1/smbclient.1.gz
  1306. %{_mandir}/man1/smbcquotas.1.gz
  1307. %{_mandir}/man1/smbget.1.gz
  1308. %{_mandir}/man1/smbtar.1.gz
  1309. %{_mandir}/man1/smbtree.1.gz
  1310. %{_mandir}/man1/wspsearch.1*
  1311. %{_mandir}/man5/smbpasswd.5.gz
  1312. %{_mandir}/man7/traffic_learner.7.gz
  1313. %{_mandir}/man7/traffic_replay.7.gz
  1314. %{_mandir}/man8/cifsdd.8.gz
  1315. %{_mandir}/man8/samba-regedit.8.gz
  1316. %{_mandir}/man8/smbspool.8.gz
  1317. %{_mandir}/man8/smbspool_krb5_wrapper.8.gz
  1318. %if %{with ja_docs}
  1319. #ja manuals
  1320. %{_mandir}/ja/man1/dbwrap_tool.1.gz
  1321. %{_mandir}/ja/man1/log2pcap.1.gz
  1322. %{_mandir}/ja/man1/mdsearch.1.gz
  1323. %{_mandir}/ja/man1/nmblookup.1.gz
  1324. %{_mandir}/ja/man1/rpcclient.1.gz
  1325. %{_mandir}/ja/man1/sharesec.1.gz
  1326. %{_mandir}/ja/man1/smbcacls.1.gz
  1327. %{_mandir}/ja/man1/smbclient.1.gz
  1328. %{_mandir}/ja/man1/smbcquotas.1.gz
  1329. %{_mandir}/ja/man1/smbget.1.gz
  1330. %{_mandir}/ja/man1/smbtar.1.gz
  1331. %{_mandir}/ja/man1/smbtree.1.gz
  1332. %{_mandir}/ja/man5/smbpasswd.5.gz
  1333. %{_mandir}/ja/man7/traffic_learner.7.gz
  1334. %{_mandir}/ja/man7/traffic_replay.7.gz
  1335. %{_mandir}/ja/man8/cifsdd.8.gz
  1336. %{_mandir}/ja/man8/samba-regedit.8.gz
  1337. %{_mandir}/ja/man8/smbpasswd.8.gz
  1338. %{_mandir}/ja/man8/smbspool.8.gz
  1339. %{_mandir}/ja/man8/smbspool_krb5_wrapper.8.gz
  1340. %endif
  1341. %{_bindir}/ldbadd
  1342. %{_bindir}/ldbdel
  1343. %{_bindir}/ldbedit
  1344. %{_bindir}/ldbmodify
  1345. %{_bindir}/ldbrename
  1346. %{_bindir}/ldbsearch
  1347. %{_mandir}/man1/ldbadd.1*
  1348. %{_mandir}/man1/ldbdel.1*
  1349. %{_mandir}/man1/ldbedit.1*
  1350. %{_mandir}/man1/ldbmodify.1*
  1351. %{_mandir}/man1/ldbrename.1*
  1352. %{_mandir}/man1/ldbsearch.1*
  1353. ## --------------------------------------------------------------------
  1354. %files test
  1355. %{_bindir}/gentest
  1356. %{_bindir}/locktest
  1357. %{_bindir}/masktest
  1358. %{_bindir}/ndrdump
  1359. %{_bindir}/smbtorture
  1360. %dir %{_libdir}/samba
  1361. %{_libdir}/samba/libcmocka-private-samba.so
  1362. %{_libdir}/samba/libdlz-bind9-for-torture-private-samba.so
  1363. %{_mandir}/man1/gentest.1*
  1364. %{_mandir}/man1/locktest.1*
  1365. %{_mandir}/man1/masktest.1*
  1366. %{_mandir}/man1/ndrdump.1*
  1367. %{_mandir}/man1/smbtorture.1*
  1368. %if %{with ja_docs}
  1369. # ja manual
  1370. %{_mandir}/ja/man1/vfstest.1*
  1371. %endif
  1372. ## --------------------------------------------------------------------
  1373. %files devel
  1374. %{samba_includedir}/charset.h
  1375. %{samba_includedir}/core/doserr.h
  1376. %{samba_includedir}/core/error.h
  1377. %{samba_includedir}/core/hresult.h
  1378. %{samba_includedir}/core/ntstatus.h
  1379. %{samba_includedir}/core/ntstatus_gen.h
  1380. %{samba_includedir}/core/werror.h
  1381. %{samba_includedir}/core/werror_gen.h
  1382. %{samba_includedir}/credentials.h
  1383. %{samba_includedir}/dcerpc.h
  1384. %{samba_includedir}/dcerpc_server.h
  1385. %{samba_includedir}/dcesrv_core.h
  1386. %{samba_includedir}/domain_credentials.h
  1387. %{samba_includedir}/gen_ndr/atsvc.h
  1388. %{samba_includedir}/gen_ndr/auth.h
  1389. %{samba_includedir}/gen_ndr/claims.h
  1390. %{samba_includedir}/gen_ndr/dcerpc.h
  1391. %{samba_includedir}/gen_ndr/krb5pac.h
  1392. %{samba_includedir}/gen_ndr/lsa.h
  1393. %{samba_includedir}/gen_ndr/misc.h
  1394. %{samba_includedir}/gen_ndr/nbt.h
  1395. %{samba_includedir}/gen_ndr/drsblobs.h
  1396. %{samba_includedir}/gen_ndr/drsuapi.h
  1397. %{samba_includedir}/gen_ndr/ndr_drsblobs.h
  1398. %{samba_includedir}/gen_ndr/ndr_drsuapi.h
  1399. %{samba_includedir}/gen_ndr/ndr_atsvc.h
  1400. %{samba_includedir}/gen_ndr/ndr_dcerpc.h
  1401. %{samba_includedir}/gen_ndr/ndr_krb5pac.h
  1402. %{samba_includedir}/gen_ndr/ndr_misc.h
  1403. %{samba_includedir}/gen_ndr/ndr_nbt.h
  1404. %{samba_includedir}/gen_ndr/ndr_samr.h
  1405. %{samba_includedir}/gen_ndr/ndr_samr_c.h
  1406. %{samba_includedir}/gen_ndr/ndr_svcctl.h
  1407. %{samba_includedir}/gen_ndr/ndr_svcctl_c.h
  1408. %{samba_includedir}/gen_ndr/netlogon.h
  1409. %{samba_includedir}/gen_ndr/samr.h
  1410. %{samba_includedir}/gen_ndr/security.h
  1411. %{samba_includedir}/gen_ndr/server_id.h
  1412. %{samba_includedir}/gen_ndr/svcctl.h
  1413. %{samba_includedir}/ldb_wrap.h
  1414. %{samba_includedir}/lookup_sid.h
  1415. %{samba_includedir}/machine_sid.h
  1416. %{samba_includedir}/ndr.h
  1417. %dir %{samba_includedir}/ndr
  1418. %{samba_includedir}/ndr/ndr_dcerpc.h
  1419. %{samba_includedir}/ndr/ndr_drsblobs.h
  1420. %{samba_includedir}/ndr/ndr_drsuapi.h
  1421. %{samba_includedir}/ndr/ndr_krb5pac.h
  1422. %{samba_includedir}/ndr/ndr_svcctl.h
  1423. %{samba_includedir}/ndr/ndr_nbt.h
  1424. %{samba_includedir}/netapi.h
  1425. %{samba_includedir}/param.h
  1426. %{samba_includedir}/passdb.h
  1427. %{samba_includedir}/policy.h
  1428. %{samba_includedir}/rpc_common.h
  1429. %{samba_includedir}/samba/session.h
  1430. %{samba_includedir}/samba/version.h
  1431. %{samba_includedir}/share.h
  1432. %{samba_includedir}/smb2_lease_struct.h
  1433. %{samba_includedir}/smb3posix.h
  1434. %{samba_includedir}/smbconf.h
  1435. %{samba_includedir}/smb_ldap.h
  1436. %{samba_includedir}/smbldap.h
  1437. %{samba_includedir}/tdr.h
  1438. %{samba_includedir}/tsocket.h
  1439. %{samba_includedir}/tsocket_internal.h
  1440. %dir %{samba_includedir}/util
  1441. %{samba_includedir}/util/attr.h
  1442. %{samba_includedir}/util/blocking.h
  1443. # %{samba_includedir}/util/byteorder.h
  1444. %{samba_includedir}/util/data_blob.h
  1445. %{samba_includedir}/util/debug.h
  1446. %{samba_includedir}/util/discard.h
  1447. %{samba_includedir}/util/fault.h
  1448. %{samba_includedir}/util/genrand.h
  1449. %{samba_includedir}/util/idtree.h
  1450. %{samba_includedir}/util/idtree_random.h
  1451. #%{samba_includedir}/util/memory.h
  1452. #%{samba_includedir}/util/safe_string.h
  1453. %{samba_includedir}/util/signal.h
  1454. %{samba_includedir}/util/substitute.h
  1455. #%{samba_includedir}/util/talloc_stack.h
  1456. %{samba_includedir}/util/tevent_ntstatus.h
  1457. %{samba_includedir}/util/tevent_unix.h
  1458. %{samba_includedir}/util/tevent_werror.h
  1459. %{samba_includedir}/util/tfork.h
  1460. %{samba_includedir}/util/time.h
  1461. %{samba_includedir}/util_ldb.h
  1462. %{_libdir}/libdcerpc-binding.so
  1463. %{_libdir}/libdcerpc-samr.so
  1464. %{_libdir}/libdcerpc.so
  1465. %{_libdir}/libndr-krb5pac.so
  1466. %{_libdir}/libndr-nbt.so
  1467. %{_libdir}/libndr-standard.so
  1468. %{_libdir}/libndr.so
  1469. %{_libdir}/libnetapi.so
  1470. %{_libdir}/libsamba-credentials.so
  1471. %{_libdir}/libsamba-errors.so
  1472. %{_libdir}/libsamba-hostconfig.so
  1473. %{_libdir}/libsamba-passdb.so
  1474. %{_libdir}/libsamba-policy.*.so
  1475. %{_libdir}/libsamba-util.so
  1476. %{_libdir}/libsamdb.so
  1477. %{_libdir}/libsmbconf.so
  1478. %{_libdir}/libsmbldap.so
  1479. %{_libdir}/libtevent-util.so
  1480. %{_libdir}/pkgconfig/dcerpc.pc
  1481. %{_libdir}/pkgconfig/dcerpc_samr.pc
  1482. %{_libdir}/pkgconfig/ndr.pc
  1483. %{_libdir}/pkgconfig/ndr_krb5pac.pc
  1484. %{_libdir}/pkgconfig/ndr_nbt.pc
  1485. %{_libdir}/pkgconfig/ndr_standard.pc
  1486. %{_libdir}/pkgconfig/netapi.pc
  1487. %{_libdir}/pkgconfig/samba-credentials.pc
  1488. %{_libdir}/pkgconfig/samba-hostconfig.pc
  1489. %{_libdir}/pkgconfig/samba-policy.*.pc
  1490. %{_libdir}/pkgconfig/samba-util.pc
  1491. %{_libdir}/pkgconfig/samdb.pc
  1492. %{_libdir}/libdcerpc-server.so
  1493. %{_libdir}/libdcerpc-server-core.so
  1494. %{_libdir}/pkgconfig/dcerpc_server.pc
  1495. %{_mandir}/man3/ldb.3*
  1496. %{_mandir}/man3/talloc.3.gz
  1497. ## --------------------------------------------------------------------
  1498. %files python
  1499. %{python3_sitearch}/*
  1500. %{_libdir}/libsamba-policy.cpython*.so*
  1501. %dir %{_libdir}/samba
  1502. %{_libdir}/samba/libpyldb-util.*.so
  1503. %{_libdir}/samba/libpytalloc-util.*.so
  1504. %{_libdir}/samba/libsamba-net.cpython*.so
  1505. %{_libdir}/samba/libsamba-python.cpython*.so
  1506. ## --------------------------------------------------------------------
  1507. %if %{with pidl}
  1508. %files pidl
  1509. %dir %{perl_vendorlib}/Parse
  1510. %{perl_vendorlib}/Parse/*
  1511. %{_mandir}/man1/pidl.1.gz
  1512. %{_mandir}/man3/Parse::Pidl::Wireshark::NDR.3pm.gz
  1513. %{_mandir}/man3/Parse::Pidl::Wireshark::Conformance.3pm.gz
  1514. %{_mandir}/man3/Parse::Pidl::Dump.3pm.gz
  1515. %{_mandir}/man3/Parse::Pidl::NDR.3pm.gz
  1516. %{_mandir}/man3/Parse::Pidl::Util.3pm.gz
  1517. %attr(755,root,root) %{_bindir}/pidl
  1518. %endif
  1519. ## --------------------------------------------------------------------
  1520. %if %with_libsmbclient
  1521. %files -n libsmbclient
  1522. %{_libdir}/libsmbclient.so.*
  1523. ## --------------------------------------------------------------------
  1524. %files -n libsmbclient-devel
  1525. %{samba_includedir}/libsmbclient.h
  1526. %{_libdir}/libsmbclient.so
  1527. %{_libdir}/pkgconfig/smbclient.pc
  1528. %{_mandir}/man7/libsmbclient.7*
  1529. %if %{with ja_docs}
  1530. # ja manual
  1531. %{_mandir}/ja/man7/libsmbclient.7*
  1532. %endif
  1533. %endif # with_libsmbclient
  1534. ## --------------------------------------------------------------------
  1535. %if %with_libwbclient
  1536. %files -n libwbclient
  1537. %dir %{_libdir}/samba
  1538. %dir %{_libdir}/samba/wbclient
  1539. %{_libdir}/samba/wbclient/libwbclient.so.*
  1540. ## --------------------------------------------------------------------
  1541. %files -n libwbclient-devel
  1542. %{samba_includedir}/wbclient.h
  1543. %{_libdir}/samba/wbclient/libwbclient.so
  1544. %{_libdir}/pkgconfig/wbclient.pc
  1545. %endif # with_libwbclient
  1546. %if %build_compat32
  1547. ## --------------------------------------------------------------------
  1548. %files -n compat32-samba-libs
  1549. %{_libdir}/libdcerpc-binding.so.*
  1550. %{_libdir}/libndr-krb5pac.so.*
  1551. %{_libdir}/libndr-nbt.so.*
  1552. %{_libdir}/libndr-standard.so.*
  1553. %{_libdir}/libndr.so.*
  1554. %{_libdir}/libsamba-credentials.so.*
  1555. %{_libdir}/libsamba-errors.so.*
  1556. %{_libdir}/libsamba-hostconfig.so.*
  1557. %{_libdir}/libsamba-util.so.*
  1558. %{_libdir}/libsamdb.so.*
  1559. %{_libdir}/libsmbconf.so.*
  1560. %{_libdir}/libtevent-util.so.*
  1561. %dir %{_libdir}/samba
  1562. %{_libdir}/samba/libCHARSET3-private-samba.so
  1563. %{_libdir}/samba/libMESSAGING-SEND-private-samba.so
  1564. %{_libdir}/samba/libaddns-private-samba.so
  1565. %{_libdir}/samba/libasn1-private-samba.so
  1566. %{_libdir}/samba/libasn1util-private-samba.so
  1567. %{_libdir}/samba/libauthkrb5-private-samba.so
  1568. %{_libdir}/samba/libcli-cldap-private-samba.so
  1569. %{_libdir}/samba/libcli-ldap-common-private-samba.so
  1570. %{_libdir}/samba/libcli-nbt-private-samba.so
  1571. %{_libdir}/samba/libcli-smb-common-private-samba.so
  1572. %{_libdir}/samba/libcliauth-private-samba.so
  1573. %{_libdir}/samba/libclidns-private-samba.so
  1574. %{_libdir}/samba/libcluster-private-samba.so
  1575. %{_libdir}/samba/libcom-err-private-samba.so
  1576. %{_libdir}/samba/libcommon-auth-private-samba.so
  1577. %{_libdir}/samba/libdbwrap-private-samba.so
  1578. %{_libdir}/samba/libdcerpc-samba-private-samba.so
  1579. %{_libdir}/samba/libflag-mapping-private-samba.so
  1580. %{_libdir}/samba/libgenrand-private-samba.so
  1581. %{_libdir}/samba/libgensec-private-samba.so
  1582. %{_libdir}/samba/libgse-private-samba.so
  1583. %{_libdir}/samba/libgssapi-private-samba.so
  1584. %{_libdir}/samba/libhcrypto-private-samba.so
  1585. %{_libdir}/samba/libheimbase-private-samba.so
  1586. %{_libdir}/samba/libhx509-private-samba.so
  1587. %{_libdir}/samba/libinterfaces-private-samba.so
  1588. %{_libdir}/samba/libiov-buf-private-samba.so
  1589. %{_libdir}/samba/libkrb5-private-samba.so
  1590. %{_libdir}/samba/libkrb5samba-private-samba.so
  1591. %{_libdir}/samba/libldb-private-samba.so
  1592. %{_libdir}/samba/libldbsamba-private-samba.so
  1593. %{_libdir}/samba/liblibcli-lsa3-private-samba.so
  1594. %{_libdir}/samba/liblibsmb-private-samba.so
  1595. %{_libdir}/samba/libmessages-dgm-private-samba.so
  1596. %{_libdir}/samba/libmessages-util-private-samba.so
  1597. %{_libdir}/samba/libmsghdr-private-samba.so
  1598. %{_libdir}/samba/libmsrpc3-private-samba.so
  1599. %{_libdir}/samba/libndr-samba-private-samba.so
  1600. %{_libdir}/samba/libndr-samba4-private-samba.so
  1601. %{_libdir}/samba/libnpa-tstream-private-samba.so
  1602. %{_libdir}/samba/libreplace-private-samba.so
  1603. %{_libdir}/samba/libroken-private-samba.so
  1604. %{_libdir}/samba/libsamba-cluster-support-private-samba.so
  1605. %{_libdir}/samba/libsamba-debug-private-samba.so
  1606. %{_libdir}/samba/libsamba-modules-private-samba.so
  1607. %{_libdir}/samba/libsamba-security-private-samba.so
  1608. %{_libdir}/samba/libsamba-sockets-private-samba.so
  1609. %{_libdir}/samba/libsamba3-util-private-samba.so
  1610. %{_libdir}/samba/libsamdb-common-private-samba.so
  1611. %{_libdir}/samba/libsecrets3-private-samba.so
  1612. %{_libdir}/samba/libserver-id-db-private-samba.so
  1613. %{_libdir}/samba/libserver-role-private-samba.so
  1614. %{_libdir}/samba/libsmb-transport-private-samba.so
  1615. %{_libdir}/samba/libsmbd-shim-private-samba.so
  1616. %{_libdir}/samba/libsocket-blocking-private-samba.so
  1617. %{_libdir}/samba/libstable-sort-private-samba.so
  1618. %{_libdir}/samba/libsys-rw-private-samba.so
  1619. %{_libdir}/samba/libtalloc-private-samba.so
  1620. %{_libdir}/samba/libtalloc-report-printf-private-samba.so
  1621. %{_libdir}/samba/libtalloc-report-private-samba.so
  1622. %{_libdir}/samba/libtdb-wrap-private-samba.so
  1623. %{_libdir}/samba/libtevent-private-samba.so
  1624. %{_libdir}/samba/libtime-basic-private-samba.so
  1625. %{_libdir}/samba/libutil-reg-private-samba.so
  1626. %{_libdir}/samba/libutil-setid-private-samba.so
  1627. %{_libdir}/samba/libutil-tdb-private-samba.so
  1628. %{_libdir}/samba/libwind-private-samba.so
  1629. %dir %{_libdir}/samba/ldb
  1630. %{_libdir}/samba/ldb/*
  1631. ## --------------------------------------------------------------------
  1632. %files -n compat32-libwbclient
  1633. %dir %{_libdir}/samba
  1634. %dir %{_libdir}/samba/wbclient
  1635. %{_libdir}/samba/wbclient/libwbclient.so.*
  1636. ## --------------------------------------------------------------------
  1637. %files -n compat32-libsmbclient
  1638. %{_libdir}/libsmbclient.so.*
  1639. %endif
  1640. %changelog
  1641. * Tue Aug 06 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.20.4-1
  1642. - new upstream release.
  1643. * Sat Aug 03 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.20.3-1
  1644. - new upstream release.
  1645. * Thu Jun 20 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.20.2-1
  1646. - new upstream release.
  1647. * Tue Jun 11 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.7-1
  1648. - new upstream release.
  1649. * Mon Feb 19 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.5-1
  1650. - new upstream release.
  1651. * Tue Jan 09 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.4-1
  1652. - new upstream release.
  1653. * Tue Nov 28 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.3-1
  1654. - new upstream release.
  1655. * Tue Oct 17 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.2-1
  1656. - new upstream release.
  1657. * Wed Oct 11 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.19.1-1
  1658. - new upstream release.
  1659. * Thu Sep 28 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.18.7-1
  1660. - new upstream release.
  1661. * Fri Aug 18 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.18.6-1
  1662. - new upstream release.
  1663. * Wed Aug 02 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.18.5-1
  1664. - new upstream release.
  1665. * Wed Jul 05 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.18.4-1
  1666. - new upstream release.
  1667. * Fri Apr 21 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.18.2-1
  1668. - new upstream release.
  1669. * Fri Jan 27 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.17.5-1
  1670. - new upstream release.
  1671. * Fri Dec 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.17.4-1
  1672. - new upstream release.
  1673. * Wed Nov 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.17.3-1
  1674. - new upstream release.
  1675. * Fri Nov 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.17.2-1
  1676. - new upstream release.
  1677. * Fri Oct 28 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.11-1
  1678. - new upstream release.
  1679. * Wed Oct 19 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.10-1
  1680. - new upstream release.
  1681. * Wed Jul 27 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.9-1
  1682. - new upstream release.
  1683. * Tue Feb 01 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.5-1
  1684. - new upstream release.
  1685. * Sat Jan 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.4-1
  1686. - new upstream release.
  1687. * Thu Dec 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.3-1
  1688. - new upstream release.
  1689. * Sun Nov 14 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.2-1
  1690. - new upstream release.
  1691. * Thu Nov 04 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.15.1-1
  1692. - new upstream release.
  1693. * Fri Oct 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.9-1
  1694. - new upstream release.
  1695. - built with icu-70.1.
  1696. * Thu Oct 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.8-1
  1697. - new upstream release.
  1698. * Tue Aug 24 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.7-1
  1699. - new upstream release.
  1700. * Tue Jul 13 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.6-1
  1701. - new upstream release.
  1702. * Tue Jun 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.5-1
  1703. - new upstream release.
  1704. * Fri Apr 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.4-1
  1705. - new upstream release.
  1706. * Wed Apr 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.3-1
  1707. - new upstream release.
  1708. * Fri Apr 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.2-1
  1709. - new upstream release.
  1710. * Tue Mar 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.7-2
  1711. - rebuilt without tracker.
  1712. * Thu Mar 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.7-1
  1713. - new upstream release.
  1714. * Tue Mar 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.5-1
  1715. - new upstream release.
  1716. * Tue Jan 26 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.4-1
  1717. - new upstream release.
  1718. * Wed Dec 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.3-1
  1719. - new upstream release.
  1720. * Fri Dec 11 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.2-1
  1721. - new upstream release.
  1722. * Mon Nov 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.1-1
  1723. - new upstream release.
  1724. * Fri Oct 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.0-2
  1725. - fixed dependency.
  1726. * Fri Oct 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13.0-1
  1727. - new upstream release.
  1728. * Sat Sep 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.7-1
  1729. - new upstream release.
  1730. * Sun Aug 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.6-2
  1731. - rebuilt with python-3.8.
  1732. * Thu Aug 13 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.6-1
  1733. - new upstream release.
  1734. * Thu Jul 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.5-1
  1735. - new upstream release.
  1736. * Thu Jul 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.4-1
  1737. - new upstream release.
  1738. * Tue May 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.3-1
  1739. - new upstream release.
  1740. * Tue Apr 28 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.2-1
  1741. - new upstream release.
  1742. * Fri Apr 24 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.1-2
  1743. - rebuilt with icu-67.
  1744. * Tue Apr 07 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.1-1
  1745. - new upstream release.
  1746. - added systemd support (disabled as default).
  1747. - fixed %%post, %%preun and %%postun.
  1748. * Tue Mar 31 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.0-2
  1749. - re-enabled pidl.
  1750. - enabled tracker/Spotlight support.
  1751. * Mon Mar 30 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.12.0-1
  1752. - new upstream release.
  1753. * Wed Nov 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.10-1
  1754. - new upstream release.
  1755. * Thu Oct 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.9-1
  1756. - new upstream release.
  1757. * Thu Oct 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.8-2
  1758. - fixed Obsoletes:.
  1759. - fixed dependency of compat32-samba-libs.
  1760. * Wed Sep 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.8-1
  1761. - new upstream release.
  1762. * Thu Aug 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.7-1
  1763. - new upstream release.
  1764. - updated samba-ja-docs.
  1765. * Tue May 14 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.3-1
  1766. - new upstream release.
  1767. * Sat May 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.2-1
  1768. - new upstream release.
  1769. - switched to python3.
  1770. - made to use bundled lib{talloc,tevent,ldb} and ctdb.
  1771. * Fri Jan 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.4-1
  1772. - new upstream release.
  1773. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.3-1
  1774. - new upstream release.
  1775. - updated samba-ja-docs.
  1776. * Wed Mar 14 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.8.0-1
  1777. - new upstream release.
  1778. * Thu Mar 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.8.0-0.2.rc4
  1779. - new upstream release.
  1780. - fixed %%files for compat32-samba-libs.
  1781. * Mon Jul 17 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.6-1
  1782. - new upstream release.
  1783. - updated samba-ja-docs.
  1784. * Mon May 29 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.4-1
  1785. - new upstream release.
  1786. * Mon May 1 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.3-1
  1787. - new upstream release.
  1788. * Thu Mar 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.6.0-1
  1789. - new upstream release.
  1790. * Tue Dec 20 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.5.3-1
  1791. - new upstream release.
  1792. * Sun Dec 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.5.2-1
  1793. - new upstream release.
  1794. - updated samba-ja-docs.
  1795. * Fri Jul 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.5-1
  1796. - new upstream release.
  1797. - updated samba-ja-docs.
  1798. * Wed Jun 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.4-1
  1799. - new upstream release.
  1800. - updated samba-ja-docs.
  1801. * Tue May 3 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.3-1
  1802. - new upstream release.
  1803. - updated samba-ja-docs.
  1804. * Wed Apr 13 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.2-1
  1805. - new upstream release.
  1806. * Wed Apr 13 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4.0-1
  1807. - new upstream release.
  1808. * Thu Mar 10 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.6-1
  1809. - new upstream release.
  1810. - updated samba-ja-docs.
  1811. * Wed Feb 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.5-1
  1812. - new upstream release.
  1813. * Sat Jan 16 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.4-1
  1814. - new upstream release.
  1815. * Wed Dec 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-3
  1816. - built with gnutls-3.4.x.
  1817. * Sun Dec 20 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-2
  1818. - built with libldb-1.1.25.
  1819. * Thu Dec 17 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.3-1
  1820. - new upstream release.
  1821. - fixed missing %%changelog.
  1822. * Wed Dec 2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.2-1
  1823. - new upstream release.
  1824. * Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.1-1
  1825. - new upstream release.
  1826. * Sat Sep 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.0-1
  1827. - new upstream release.
  1828. - built without libbsd.
  1829. * Sat Sep 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.4-1
  1830. - new upstream release.
  1831. * Fri Jul 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.3-1
  1832. - new upstream release.
  1833. * Sat Jun 13 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.2-1
  1834. - new upstream release.
  1835. * Fri Apr 17 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.1-1
  1836. - new upstream release.
  1837. * Thu Apr 16 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.0-2
  1838. - added subpackage compat32-samba-libs and samba-dc-libs.
  1839. - fixed %%files.
  1840. * Sat Mar 7 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.0-1
  1841. - new upstream release.
  1842. * Tue Feb 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.17-1
  1843. - new upstream release.
  1844. * Sun Jan 25 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.16-1
  1845. - new upstream release.
  1846. * Mon Jan 12 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.15-1
  1847. - new upstream release.
  1848. * Wed Dec 3 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.14-1
  1849. - new upstream release.
  1850. - re-enabled samba-ja-docs.
  1851. * Tue Dec 2 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.1.11-3
  1852. - fixed Group typo involved by previous release
  1853. * Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.1.11-2
  1854. - moved common, libs, python, liibsmbclient and libwbclient packages to System Environment/Libraries Group
  1855. * Tue Aug 19 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.11-1
  1856. - new upstream release.
  1857. * Wed Mar 12 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.6-1
  1858. - new upstream release.
  1859. - removed samba-ja-docs (docs-ja for 4.1.x has not released yet).
  1860. * Mon Dec 09 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.3-1
  1861. - new upstream release.
  1862. * Thu Nov 28 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.2-1
  1863. - new upstream release.
  1864. - removed a sub package "samba-swat" (removed in upstream).
  1865. - %%post was made to fix the permission of TLS key (CVE-2013-4476).
  1866. * Wed Oct 09 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.10-1
  1867. - new upstream release.
  1868. * Tue Oct 08 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.9-1
  1869. - new upstream release.
  1870. * Tue Mar 26 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.4-1
  1871. - new upstream release.
  1872. - fixed dependency.
  1873. - added documents from samba-docs-ja-4.0.0-1.
  1874. * Mon Mar 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.3-2
  1875. - fixed directory to place private data.
  1876. * Sun Mar 03 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.3-1
  1877. - new upstream release.
  1878. - fixed dates of %%changelog.
  1879. * Mon Dec 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.0-1
  1880. - new upstream release.
  1881. * Wed May 02 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.15-1
  1882. - new upstream release. (to fix CVE-2012-2111)
  1883. - added charset options to smb.conf.
  1884. * Sat Apr 14 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.14-1
  1885. - new upstream release. (to fix CVE-2012-1182)
  1886. * Tue Aug 09 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.11-1
  1887. - new upstream release. (to fix BTS:1189)
  1888. * Sat Jul 30 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.10-1
  1889. - new upstream release. (to fix CVE-2011-2522 and CVE-2011-2694)
  1890. * Mon Jul 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-3
  1891. - updated Source6.
  1892. * Fri Mar 25 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-2
  1893. - fix smb.conf(5).
  1894. * Thu Mar 24 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.8-1
  1895. - new upstream release.
  1896. - updated patches.
  1897. - added subpackages 'winbind-krb5-locator' and 'winbind-client'.
  1898. - dropped tdb and talloc subpackages became independent packages.
  1899. - dropped {,u}mount.cifs were included in cifs-utils.
  1900. * Sat Oct 02 2010 Shu KONNO <owa@bg.wakwak.com> 3.3.10-13
  1901. - rebuilt with rpm-4.8.1 for pkg-config
  1902. - changed spec file name as vine style
  1903. - dropt script lines in %%build that no work
  1904. * Sun Feb 7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.10-12
  1905. - add patch1000 for fix CVE-2010-0547 (cifs.mount)
  1906. * Sat Jan 30 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.10-11
  1907. - new upstream release.
  1908. * Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-10
  1909. - added 'Packager' tag.
  1910. * Sun Oct 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.9-9
  1911. - new upstream release.
  1912. - added '--disable-fam' option.
  1913. - added 'compat32-*' subpackages.
  1914. - added 'libuuid-devel' to 'BuildRequires:'.
  1915. * Thu Jul 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.7-7
  1916. - new upstream release.
  1917. * Thu Jun 25 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.6-6
  1918. - new upstream release.
  1919. * Thu Jun 4 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-5
  1920. - increased release number for libtalloc/libtdb.
  1921. * Tue Jun 2 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-2
  1922. - fixed dependency.
  1923. - fixed modulepath.
  1924. * Fri May 29 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.4-1
  1925. - new upstream release.
  1926. * Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 3.2.5-4
  1927. - rebuilt with openldap-2.4.11
  1928. * Sat Jan 17 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 3.2.5-3
  1929. - samba-doc: changed Group to Applications/Documentation
  1930. - samba-winbind-devel: changed Group to Development/Libraries
  1931. - libsmbclient: changed Group to System Environment/Libraries
  1932. - libsmbclient-devel: changed Group to Development/Libraries
  1933. - libtalloc: changed Group to System Environment/Libraries
  1934. - libtalloc-devel: changed Group to Development/Libraries
  1935. - libtdb: fixed summary
  1936. changed Group to System Environment/Libraries
  1937. - libtdb-devel: changed Group to Development/Libraries
  1938. * Thu Dec 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.5-2
  1939. - new upstream release
  1940. * Sat Nov 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.3-1
  1941. - new upstream release
  1942. - drop jp patch
  1943. - use UTF-8 as default charset
  1944. - rename samba-libsmbclient to libsmbclient
  1945. * Fri Apr 11 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 3.0.28a-1
  1946. - new upstream release.
  1947. - remove gamin-devel from BuildRequires: (no longer needed).
  1948. * Sat Sep 15 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.24-0vl4
  1949. - BuildRequires: gamin-devel (see [wishes:0127])
  1950. * Wed May 16 2007 KAZUKI SHIMURA <ksh753@gmail.com> 3.0.24-0vl3
  1951. - [SECURITY FIX] add security patches (#50-52)
  1952. - CVE-2007-2444: local SID/Name translation bug (user privilege elevation)
  1953. - CVE-2007-2446: multiple heap overflows allow remote code execution
  1954. - CVE-2007-2447: remote command injection vulnerability
  1955. * Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl2
  1956. - apply upstream patches (#0-5)
  1957. - fix an issues with servers set to "security = share" and Vista clients
  1958. that send NTLMv2 responses
  1959. - fixe several point-n-print bugs with Vista clients
  1960. - fix failure when using the Vista backup utility
  1961. - fix expansion of the %a smb.conf variable for Vista clients
  1962. - fix MS-DFS referrals with Windows Vista clients
  1963. - fix for Vista failing to delete directories on a Samba share
  1964. - display service start/stop messages ([VineSeed:13299])
  1965. * Wed Feb 14 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.24-0vl1
  1966. - [SECURITY FIX] new upstream release
  1967. - CVE-2007-0452: potential denial of service bug in smbd
  1968. - CVE-2007-0453: buffer overrun in NSS host lookup winbind library on Solaris
  1969. - CVE-2007-0454: format string bug in afsacl.so vfs plugin
  1970. * Thu Dec 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23d-0vl1
  1971. - new upstream release
  1972. * Sat Nov 25 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl3
  1973. - disable swat (via inetd) by default
  1974. - fix code for editing %%{_sysconfdir}/inetd.conf
  1975. * Sun Sep 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl2
  1976. - fix dependencies:
  1977. - move PreReq: mktemp, psmisc, fileutils, sed, gawk, grep to -swat
  1978. - drop PreReq: gawk from -client
  1979. - drop PreReq: inetd from -swat
  1980. - drop Requires: tcp_wrappers from -swat (is needed by inetd)
  1981. - fix %%post etc...
  1982. - drop code for editing /etc/services: no more needed
  1983. - move code for editing %%{_sysconfdir}/{hosts.*,inetd.conf}
  1984. from %%triggerin swat -- inetd to %%post swat
  1985. - check if %%{_sysconfdir}/inetd.conf exist before updating at %%postun
  1986. * Fri Sep 08 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23c-0vl1
  1987. - new upstream release
  1988. * Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.0.23b-0vl2
  1989. - rebuilt with openldap-2.3.27-0vl1
  1990. * Mon Aug 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23b-0vl1
  1991. - new upstream release
  1992. * Fri Jul 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23a-0vl1
  1993. - new upstream release
  1994. * Sat Jul 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.23-0vl1
  1995. - [SECURITY] new upstream release
  1996. - Memory exhaustion DoS against smbd (CVE-2006-3403)
  1997. - update patches
  1998. - buildroot.patch (#100)
  1999. - logfiles.patch (#103)
  2000. - smb.conf.patch (#106)
  2001. - update filter-requires-samba.sh (source999)
  2002. - get rid of bogus dependency on perl(Unicode::MapUTF8)
  2003. * Fri Jun 23 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.22-0vl1
  2004. - new upstream release
  2005. - renumber patches
  2006. - 000- for upstream patches
  2007. - 050- for security patches
  2008. - 100- for generic patches
  2009. - update logfiles.patch (#103)
  2010. - drop warning.patch (#104)
  2011. - not apply hex.patch (#105)
  2012. - add smb.conf.patch (#106)
  2013. - drop samba.log (source1), smb.conf (source2)
  2014. - use samba.pamd.stack instead of samba.pamd
  2015. - define macro: pkgingdir
  2016. - add files:
  2017. - samba-client
  2018. - %%{_bindir}/{smbget,eventlogadm}
  2019. - samba-common:
  2020. - %%{_bindir}/tdbtool
  2021. - separate development files to samba-libsmbclient-devel
  2022. - change groups
  2023. * Sat Apr 15 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl5
  2024. - remove unneeded dependencies
  2025. - update filter-requires-samba.sh (source999)
  2026. - overwrite __find_requires instead of __perl_requires
  2027. * Tue Mar 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl4
  2028. - rebuild with readline-5.1
  2029. * Sat Aug 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl3
  2030. - separate doc package with %%docpkg
  2031. - use %%htmlview instead of %%browser
  2032. * Sat Jul 16 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl2
  2033. - add %%config(noreplace) against %%{_sysconfdir}/xinetd.d/swat
  2034. * Fri Jul 15 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.14a-0vl1
  2035. - new upstream release
  2036. - install %%{_sysconfdir}/xinetd.d/swat
  2037. - update filter-requires-samba.sh
  2038. - add swat.desktop.in instead of swat.desktop
  2039. - switch browser by %%browser
  2040. - drop i18n patches
  2041. - update logfiles.patch (#3)
  2042. - add warning.patch (#4)
  2043. * Sun Jul 10 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl2
  2044. - fix samba.log
  2045. - thanks, K. Moriyama [VinePlus:02606]
  2046. - remove docs/manpages from %%doc
  2047. * Mon Dec 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.10-0vl1
  2048. - new upstream release
  2049. - update struplower_m_i18n.patch (#102)
  2050. - drop obsolete patch (#10)
  2051. * Fri Dec 17 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl2
  2052. - [SECURITY FIX] fix possible remote code execution (CAN-2004-1154)
  2053. - add samba-3.0.9-CAN-2004-1154.patch (#10)
  2054. - update patch (#102)
  2055. * Fri Nov 26 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.9-0vl1
  2056. - new upstream release
  2057. - drop obsolete patches (#10,11,110)
  2058. - update patches (#3,102)
  2059. * Sun Nov 21 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl6
  2060. - [SECURITY FIX] fix smbd buffer overrun (CAN-2004-0882)
  2061. - add samba-3.0.7-CAN-2004-0882.patch (patch11)
  2062. - update Source URL
  2063. * Tue Nov 09 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl5
  2064. - [SECURITY FIX] fix smbd remote DoS vulnerability (CAN-2004-0930)
  2065. - add samba-3.0.7-CAN-2004-0930.patch (patch10)
  2066. * Fri Oct 15 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl4
  2067. - update samba.log, {smb,winbind}.init
  2068. - use *.log as logfile name instead of log.* (patch3)
  2069. * Wed Oct 06 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl3
  2070. - change directories from %%{_localstatedir}/lock/samba
  2071. - LOCKDIR: %%{_localstatedir}/cache/samba
  2072. - PIDDIR: %%{_localstatedir}/run
  2073. - restart {smb,winbind} at postun (upgrade)
  2074. - samba-common
  2075. - convert smbpasswd at triggerpostun -- samba < 3.0.7
  2076. - add convert_smbpasswd
  2077. - add PreReq: gawk
  2078. * Sat Sep 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl2
  2079. - add docs_ja (source101) from 3.0.5-16ml
  2080. * Wed Sep 22 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.0.7-0vl1
  2081. - new upstream release (shift to 3.0 series)
  2082. - refer to 3.0.6-3 (Fedora Core), 3.0.5-16ml (MIRACLE)
  2083. - drop obsolete paches, configure options
  2084. - update buildroot.patch
  2085. - add I18N patches (#101-)
  2086. - update smb.conf
  2087. - add URL
  2088. - use more macros
  2089. - change LIBDIR from %%{_sysconfdir}/samba to %%{_libdir}/samba
  2090. - move %%{_localstatedir}/log/samba, smbpasswd to samba-common
  2091. - move smbspool, smbcacls, rpcclient to samba-client
  2092. - update descriptions
  2093. * Wed Sep 08 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl1
  2094. - new upstream release
  2095. * Wed Sep 01 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.11.ja.1.0-0vl0.beta1
  2096. - 2.2.11-ja-1.0beta1
  2097. - drop patch10
  2098. - add BuildPreReq: openssl-devel
  2099. - swat
  2100. - add PreReq/Requires: inetd
  2101. - add swat.desktop
  2102. * Sun Jul 25 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl3
  2103. - fix changelog
  2104. * Sat Jul 24 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl2
  2105. - [SECURITY FIX] fix buffer overflow (CAN-2004-0686)
  2106. - add samba-2.2.9-ja-1.0-mangle.patch (Patch10)
  2107. - add BuildPreReq: cups-devel
  2108. - add Prereq: chkconfig mktemp psmisc (instead of each files)
  2109. * Thu Jun 03 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl1
  2110. - new upstream release
  2111. * Thu May 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9.ja.1.0-0vl0.beta1
  2112. - 2.2.9-ja-1.0beta1
  2113. - add BuildPreReq: readline-devel
  2114. * Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl3
  2115. - add ldconfig in %%post/%%postun script for libsmbclient
  2116. * Sat Jan 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8a.ja.1.1-0vl2
  2117. - add libsmbclient subpackage.
  2118. * Thu Sep 11 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja.1.1-0vl1
  2119. - new upstream release.
  2120. * Sat Aug 09 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.8a.ja-1.0vl3
  2121. - fix smb.conf (SAMBADOC's path)
  2122. * Tue May 27 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.8a.ja-1.0vl2
  2123. - tentatively skip to build examples/VFS on alpha
  2124. * Tue May 27 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.8a.ja-1.0vl1
  2125. - new upstream release.
  2126. * Mon May 19 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.2.7b.ja-1.0vl2
  2127. - fix smb.conf
  2128. - fix smbadduser
  2129. * Thu Apr 17 2003 KAZUKI SHIMURA <rito@pos.to> 2.2.7b.ja-1.0vl1
  2130. - new upstream version
  2131. * Sun Mar 23 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl2
  2132. - added smbinit-vine.patch
  2133. -- added '-D' option in smbd and nmbd
  2134. * Thu Mar 20 2003 Satoshi MACHINO <machino@vinelinux.org> 2.2.7a.ja-1.1vl1
  2135. - New upstream version
  2136. -- security fix.
  2137. * Wed Feb 26 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2138. - 2.2.7a.ja-1.0vl5
  2139. - merged from SPEC for RH60 by samba-jp.
  2140. * Mon Feb 17 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2141. - 2.2.7a.ja-1.0vl4.beta1
  2142. - fix 'Requires:'.
  2143. * Tue Jan 28 2003 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2144. - 2.2.7a.ja-1.0vl3.alpha1
  2145. - disable --with-tdbsam.
  2146. * Sat Dec 28 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2147. - 2.2.7a.ja-1.0vl2.alpha1
  2148. - modify %%post script for new password database.
  2149. * Fri Dec 27 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2150. - 2.2.7a.ja-1.0vl1.alpha1
  2151. * Tue Nov 19 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2152. - 2.2.6.ja-1.0vl1.alpha2
  2153. - apply alpha2 patch.
  2154. * Fri Nov 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2155. - 2.2.6.ja-1.0vl1.alpha1
  2156. - remove swat from package 'samba'.
  2157. * Thu Nov 14 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2158. - 2.2.6.ja-1.0vl0.alpha1
  2159. - enable winbind modules.
  2160. - change numbering rule.
  2161. * Thu Oct 24 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2162. - 2.2.6_ja_0.alpha1-0vl1
  2163. * Tue Jun 11 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2164. - 2.2.4_ja_0.alpha1.3-0vl1
  2165. * Sun Mar 17 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2166. - 2.2.2_ja_1.1-0vl1
  2167. - disable winbind modules (2.2.2 or earlier has critical bugs).
  2168. - modify 'Requires:'.
  2169. * Fri Mar 15 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  2170. - 2.2.2_ja_1.1-0vl0
  2171. - shift sources to 2.2.x.
  2172. - add debugging mode for '%%files' section.
  2173. - modify spec largely because of too many difference between 2.0.x and 2.2.x.
  2174. - . exchange %%prep, %%build, %%install section with samba-jp's spec.
  2175. - . create a package 'samba-swat'.
  2176. - . move smbclient and nmblookup to samba-common.
  2177. - . move testprns to package 'samba' because it's checking tool for
  2178. - server on LOCALHOST.
  2179. - . move '%%post' to '%%post swat'.
  2180. - . disable '%%post common'.
  2181. * Sun Dec 02 2001 Toru Sagami <sagami@vinelinux.org>
  2182. - 2.0.10_ja_1.2
  2183. * Mon Sep 03 2001 Toru Sagami <sagami@vinelinux.org>
  2184. - 2.0.10_ja_1.1-0vl4
  2185. - eliminate executable bit in %%doc to erase perl/sh requirement
  2186. * Thu Aug 23 2001 Toru Sagami <sagami@vinelinux.org>
  2187. - 2.0.10_ja_1.1-0vl3: s/$RPM_BUILD_ROOT/%%{buildroot}/
  2188. - patch swat/ja/help/welcome.html to hide some missing matter
  2189. - also remove docs/zh_{CN,TW} files in %%doc
  2190. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl2
  2191. - for VineSeed
  2192. - deleted %%define _syssbindir and _localedir (defined in rpmmacros in rpm-3.0.6-0vl14)
  2193. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 2.0.10_ja_1.1-0vl1
  2194. - 2.0.10_ja_1.1
  2195. - for 2.1.x update
  2196. * Fri Aug 17 2001 <sagami@vinelinux.org>
  2197. - 2.0.10_ja_1.0-0vl2
  2198. - remove almost duplicated docs/{,ja/}{manpages,yodldocs} files in %%doc
  2199. * Mon Jul 09 2001 <sagami@vinelinux.org>
  2200. - 2.0.10_ja_1.0-0vl1: includes secrity fix
  2201. (http://www.samba.org/samba/whatsnew/macroexploit.html)
  2202. - remove using_samba, HowToUseSamba and docs/ja_JP.SJIS directory from %%doc
  2203. * Thu May 31 2001 <sagami@vinelinux.org>
  2204. - 2.0.9_ja_1.0-0vl1: added swat/ja/help/HowToUseSamba
  2205. - added BuildPreReq = pam-devel for Vine 2.1.5+
  2206. - fixed init script to match our current/old style
  2207. - eliminate CVS related files from %%doc
  2208. * Thu Apr 19 2001 <sagami@vinelinux.org>
  2209. - 2.0.7_ja_2.2-0vl1
  2210. * Thu Dec 21 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  2211. - 2.0.7_ja_1.3-0vl2
  2212. - rebuilt with readline2
  2213. - use better macros (although not almost complete... needs comfirmation)
  2214. * Tue Sep 19 2000 Jun Nishii <jun@vinelinux.org>
  2215. - 2.0.7_ja_1.3-0vl1
  2216. * Tue Sep 12 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  2217. - 2.0.7_ja_1.2.1-0vl2
  2218. - fixed missing Changelog.ja (was Chagelog.ja)
  2219. * Tue Sep 12 2000 Jun Nishii <jun@vinelinux.org>
  2220. - updated to 2.0.7-ja-1.2.1
  2221. * Wed Jul 19 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2222. - updated to 2.0.7-ja-1.2
  2223. * Tue Jul 11 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2224. - added some Japanese documents to %doc
  2225. * Mon Jul 10 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2226. - updated to 2.0.7-ja-1.0
  2227. * Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2228. - updated to 2.0.7-ja-0.99
  2229. * Mon May 29 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2230. - added rpccilent
  2231. - modified tcpdconf for stability.
  2232. * Fri May 26 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  2233. - first test release for Vine based on RH6.2 spec file.
  2234. - activated swat in default for only localhost.
  2235. * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
  2236. - fix trigger, again.
  2237. * Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
  2238. - fix trigger.
  2239. * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
  2240. - turn on quota support
  2241. * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
  2242. - rebuild to fox dependencies
  2243. - man pages are compressed
  2244. * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
  2245. - munge post scripts slightly
  2246. * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
  2247. - turn on mmap again. Wheee.
  2248. - ship smbmount on alpha
  2249. * Mon Dec 6 1999 Bill Nottingham <notting@redhat.com>
  2250. - turn off mmap. ;)
  2251. * Wed Dec 1 1999 Bill Nottingham <notting@redhat.com>
  2252. - change /var/log/samba to 0700
  2253. - turn on mmap support
  2254. * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com>
  2255. - update to 2.0.6
  2256. * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com>
  2257. - add a %defattr for -common
  2258. * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
  2259. - shift some files into -client
  2260. - remove /home/samba from package.
  2261. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
  2262. - initscript oopsie. killproc <name> -HUP, not other way around.
  2263. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com>
  2264. - script cleanups. Again.
  2265. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
  2266. - add a patch to fix dropped reconnection attempts
  2267. * Mon Sep 6 1999 Jeff Johnson <jbj@redhat.com>
  2268. - use cp rather than mv to preserve /etc/services perms (#4938 et al).
  2269. - use mktemp to generate /etc/tmp.XXXXXX file name.
  2270. - add prereqs on sed/mktemp/killall (need to move killall to /bin).
  2271. - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7")
  2272. * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
  2273. - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd
  2274. * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
  2275. - fix typo in mount.smb
  2276. * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
  2277. - add a %trigger to work around (sort of) broken scripts in
  2278. previous releases
  2279. * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
  2280. - initscript munging
  2281. * Mon Aug 9 1999 Bill Nottingham <notting@redhat.com>
  2282. - add domain parsing to mount.smb
  2283. * Fri Aug 6 1999 Bill Nottingham <notting@redhat.com>
  2284. - add a -common package, shuffle files around.
  2285. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com>
  2286. - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable
  2287. * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com>
  2288. - update to 2.0.5
  2289. - fix mount.smb - smbmount options changed again.........
  2290. - fix postun. oops.
  2291. - update some stuff from the samba team's spec file.
  2292. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
  2293. - split off clients into separate package
  2294. - don't run samba by default
  2295. * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
  2296. - fix one problem with mount.smb script
  2297. - fix smbpasswd on sparc with a really ugly kludge
  2298. * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com>
  2299. - fixed logrotate script
  2300. * Tue May 25 1999 Bill Nottingham <notting@redhat.com>
  2301. - turn of 64-bit locking on 32-bit platforms
  2302. * Thu May 20 1999 Bill Nottingham <notting@redhat.com>
  2303. - so many releases, so little time
  2304. - explicitly uncomment 'printing = bsd' in sample config
  2305. * Tue May 18 1999 Bill Nottingham <notting@redhat.com>
  2306. - update to 2.0.4a
  2307. - fix mount.smb arg ordering
  2308. * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com>
  2309. - go back to stop/start for restart (-HUP didn't work in testing)
  2310. * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
  2311. - add a mount.smb to make smb mounting a little easier.
  2312. - smb filesystems apparently don't work on alpha. Oops.
  2313. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
  2314. - always create codepages
  2315. * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
  2316. - logrotate changes
  2317. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  2318. - auto rebuild in the new build environment (release 3)
  2319. * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
  2320. - updated init script to use graceful restart (not stop/start)
  2321. * Tue Mar 9 1999 Bill Nottingham <notting@redhat.com>
  2322. - update to 2.0.3
  2323. * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
  2324. - update to 2.0.2
  2325. * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com>
  2326. - swat swat
  2327. * Tue Feb 9 1999 Bill Nottingham <notting@redhat.com>
  2328. - fix bash2 breakage in post script
  2329. * Fri Feb 5 1999 Bill Nottingham <notting@redhat.com>
  2330. - update to 2.0.0
  2331. * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
  2332. - make sure all binaries are stripped
  2333. * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com>
  2334. - update to 1.9.18p10.
  2335. - fix %triggerpostun.
  2336. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com>
  2337. - updated postun triggerscript to check $0
  2338. - clear /etc/codepages from %preun instead of %postun
  2339. * Mon Jun 08 1998 Erik Troan <ewt@redhat.com>
  2340. - made the %postun script a tad less agressive; no reason to remove
  2341. the logs or lock file (after all, if the lock file is still there,
  2342. samba is still running)
  2343. - the %postun and %preun should only exectute if this is the final
  2344. removal
  2345. - migrated %triggerpostun from Red Hat's samba package to work around
  2346. packaging problems in some Red Hat samba releases
  2347. * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au>
  2348. - minor tidy up in preparation for release of 1.9.18p5
  2349. - added findsmb utility from SGI package
  2350. * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au>
  2351. - Updated version and codepage info.
  2352. - Release to test name resolve order
  2353. * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au>
  2354. - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com>
  2355. - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb
  2356. - Compounded make line
  2357. - Updated smb.init restart mechanism
  2358. - Use compound mkdir -p line instead of individual calls to mkdir
  2359. - Fixed smb.conf file path for log files
  2360. - Fixed smb.conf file path for incoming smb print spool directory
  2361. - Added a number of options to smb.conf file
  2362. - Added smbadduser command (missed from all previous RPMs) - Doooh!
  2363. - Added smbuser file and smb.conf file updates for username map