1 |
vip-ire |
1.1 |
# rpmbuild --rebuild --with testsuite --without clustering samba.src.rpm |
2 |
|
|
# |
3 |
unnilennium |
1.3 |
# The testsuite is disabled by default. Set --with testsuite or bcond_without |
4 |
vip-ire |
1.1 |
# to run the Samba torture testsuite. |
5 |
|
|
%bcond_with testsuite |
6 |
|
|
# ctdb is enabled by default, you can disable it with: --without clustering |
7 |
|
|
%bcond_without clustering |
8 |
|
|
|
9 |
jpp |
1.11 |
%define main_release 12.2 |
10 |
vip-ire |
1.1 |
|
11 |
jpp |
1.9 |
%define samba_version 4.6.2 |
12 |
|
|
%define talloc_version 2.1.9 |
13 |
|
|
%define tdb_version 1.3.12 |
14 |
|
|
%define tevent_version 0.9.31 |
15 |
|
|
%define ldb_version 1.1.29 |
16 |
vip-ire |
1.1 |
# This should be rc1 or nil |
17 |
|
|
%define pre_release %nil |
18 |
|
|
|
19 |
|
|
%if "x%{?pre_release}" != "x" |
20 |
|
|
%define samba_release 0.%{main_release}.%{pre_release}%{?dist} |
21 |
|
|
%else |
22 |
|
|
%define samba_release %{main_release}%{?dist} |
23 |
|
|
%endif |
24 |
|
|
|
25 |
unnilennium |
1.3 |
# This is a network daemon, do a hardened build |
26 |
vip-ire |
1.1 |
# Enables PIE and full RELRO protection |
27 |
|
|
%global _hardened_build 1 |
28 |
|
|
|
29 |
|
|
%global with_libsmbclient 1 |
30 |
|
|
%global with_libwbclient 1 |
31 |
|
|
|
32 |
|
|
%global with_internal_talloc 0 |
33 |
|
|
%global with_internal_tevent 0 |
34 |
|
|
%global with_internal_tdb 0 |
35 |
jpp |
1.10 |
%global with_internal_ldb 1 |
36 |
vip-ire |
1.1 |
|
37 |
|
|
%global with_profiling 1 |
38 |
|
|
|
39 |
|
|
%global with_vfs_cephfs 1 |
40 |
|
|
%if 0%{?rhel} |
41 |
|
|
%global with_vfs_cephfs 0 |
42 |
|
|
%endif |
43 |
|
|
|
44 |
|
|
%global with_vfs_glusterfs 1 |
45 |
|
|
%if 0%{?rhel} |
46 |
|
|
%global with_vfs_glusterfs 0 |
47 |
|
|
# Only enable on x86_64 |
48 |
|
|
%ifarch x86_64 |
49 |
|
|
%global with_vfs_glusterfs 1 |
50 |
|
|
%endif |
51 |
|
|
%endif |
52 |
|
|
|
53 |
jpp |
1.9 |
%global libwbc_alternatives_version 0.13 |
54 |
vip-ire |
1.1 |
%global libwbc_alternatives_suffix %nil |
55 |
|
|
%if 0%{?__isa_bits} == 64 |
56 |
|
|
%global libwbc_alternatives_suffix -64 |
57 |
|
|
%endif |
58 |
|
|
|
59 |
jpp |
1.10 |
%global with_mitkrb5 0 |
60 |
|
|
%global with_dc 1 |
61 |
vip-ire |
1.1 |
|
62 |
|
|
%if %{with testsuite} |
63 |
|
|
# The testsuite only works with a full build right now. |
64 |
|
|
%global with_mitkrb5 0 |
65 |
|
|
%global with_dc 1 |
66 |
|
|
%endif |
67 |
|
|
|
68 |
jpp |
1.9 |
%global required_mit_krb5 1.15.1 |
69 |
|
|
|
70 |
vip-ire |
1.1 |
%global with_clustering_support 0 |
71 |
|
|
|
72 |
|
|
%if %{with clustering} |
73 |
|
|
%global with_clustering_support 1 |
74 |
|
|
%endif |
75 |
|
|
|
76 |
|
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} |
77 |
|
|
|
78 |
|
|
Name: samba |
79 |
|
|
Version: %{samba_version} |
80 |
|
|
Release: %{samba_release} |
81 |
|
|
|
82 |
|
|
%if 0%{?rhel} |
83 |
|
|
Epoch: 0 |
84 |
|
|
%else |
85 |
|
|
Epoch: 2 |
86 |
|
|
%endif |
87 |
|
|
|
88 |
|
|
%if 0%{?epoch} > 0 |
89 |
|
|
%define samba_depver %{epoch}:%{version}-%{release} |
90 |
|
|
%else |
91 |
|
|
%define samba_depver %{version}-%{release} |
92 |
|
|
%endif |
93 |
|
|
|
94 |
|
|
Summary: Server and Client software to interoperate with Windows machines |
95 |
|
|
License: GPLv3+ and LGPLv3+ |
96 |
|
|
URL: http://www.samba.org/ |
97 |
|
|
|
98 |
|
|
Source0: samba-%{version}%{pre_release}.tar.xz |
99 |
jpp |
1.9 |
Source1: samba-%{version}%{pre_release}.tar.asc |
100 |
|
|
Source2: gpgkey-52FBC0B86D954B0843324CDC6F33915B6568B7EA.gpg |
101 |
vip-ire |
1.1 |
|
102 |
|
|
# Red Hat specific replacement-files |
103 |
jpp |
1.9 |
Source10: samba.log |
104 |
|
|
Source11: smb.conf.vendor |
105 |
|
|
Source12: smb.conf.example |
106 |
|
|
Source13: pam_winbind.conf |
107 |
|
|
Source14: samba.pamd |
108 |
vip-ire |
1.1 |
|
109 |
|
|
Source200: README.dc |
110 |
|
|
Source201: README.downgrade |
111 |
|
|
|
112 |
jpp |
1.9 |
Patch0: samba-v4.6-gss_krb5_import_cred.patch |
113 |
|
|
Patch1: samba-v4.6-credentials-fix-realm.patch |
114 |
|
|
Patch2: samba-v4.6-lib-crypto-implement-samba.crypto-Python-module-for-.patch |
115 |
|
|
Patch3: samba-v4-6-fix-building-with-new-glibc.patch |
116 |
|
|
Patch4: samba-v4-6-fix-cross-realm-refferals.patch |
117 |
|
|
Patch5: samba-v4-6-fix-kerberos-debug-message.patch |
118 |
|
|
Patch6: samba-v4-6-fix-net-ads-keytab-handling.patch |
119 |
|
|
Patch7: samba-v4-6-fix_winbind_child_crash.patch |
120 |
|
|
Patch8: samba-v4-6-fix_path_substitutions.patch |
121 |
|
|
Patch9: samba-v4-6-fix-spoolss-32bit-driver-upload.patch |
122 |
|
|
Patch10: CVE-2017-7494.patch |
123 |
|
|
Patch11: samba-v4-6-fix-vfs-expand-msdfs.patch |
124 |
|
|
Patch12: samba-v4.7-config-dynamic-rpc-port-range.patch |
125 |
|
|
Patch13: samba-v4-6-fix_smbclient_session_setup_info.patch |
126 |
|
|
Patch14: samba-v4-6-fix_smbclient_username_parsing.patch |
127 |
|
|
Patch15: samba-v4-6-fix_winbind_normalize_names.patch |
128 |
|
|
Patch16: samba-v4-6-fix_net_ads_changetrustpw.patch |
129 |
|
|
Patch17: samba-v4.6-fix_smbpasswd_user_pwd_change.patch |
130 |
|
|
Patch18: samba-v4.6-graceful_fsctl_validate_negotiate_info.patch |
131 |
|
|
Patch19: CVE-2017-12150.patch |
132 |
|
|
Patch20: CVE-2017-12151.patch |
133 |
|
|
Patch21: CVE-2017-12163.patch |
134 |
|
|
Patch22: CVE-2017-14746.patch |
135 |
|
|
Patch23: CVE-2017-15275.patch |
136 |
vip-ire |
1.1 |
|
137 |
|
|
Requires(pre): /usr/sbin/groupadd |
138 |
|
|
Requires(post): systemd |
139 |
|
|
Requires(preun): systemd |
140 |
|
|
Requires(postun): systemd |
141 |
|
|
|
142 |
|
|
Requires(pre): %{name}-common = %{samba_depver} |
143 |
jpp |
1.9 |
Requires: %{name}-common = %{samba_depver} |
144 |
vip-ire |
1.1 |
Requires: %{name}-common-libs = %{samba_depver} |
145 |
|
|
Requires: %{name}-common-tools = %{samba_depver} |
146 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
147 |
|
|
Requires: %{name}-libs = %{samba_depver} |
148 |
|
|
%if %with_libwbclient |
149 |
|
|
Requires: libwbclient = %{samba_depver} |
150 |
|
|
%endif |
151 |
|
|
|
152 |
|
|
Requires: pam |
153 |
|
|
|
154 |
|
|
Provides: samba4 = %{samba_depver} |
155 |
|
|
Obsoletes: samba4 < %{samba_depver} |
156 |
|
|
|
157 |
|
|
# We don't build it outdated docs anymore |
158 |
unnilennium |
1.3 |
Provides: samba-doc = %{samba_depver} |
159 |
|
|
Obsoletes: samba-doc < %{samba_depver} |
160 |
|
|
|
161 |
vip-ire |
1.1 |
# Is not supported yet |
162 |
unnilennium |
1.3 |
Provides: samba-domainjoin-gui = %{samba_depver} |
163 |
|
|
Obsoletes: samba-domainjoin-gui < %{samba_depver} |
164 |
|
|
|
165 |
vip-ire |
1.1 |
# SWAT been deprecated and removed from samba |
166 |
unnilennium |
1.3 |
Provides: samba-swat = %{samba_depver} |
167 |
|
|
Obsoletes: samba-swat < %{samba_depver} |
168 |
|
|
|
169 |
|
|
Provides: samba4-swat = %{samba_depver} |
170 |
|
|
Obsoletes: samba4-swat < %{samba_depver} |
171 |
vip-ire |
1.1 |
|
172 |
|
|
BuildRequires: cups-devel |
173 |
|
|
BuildRequires: dbus-devel |
174 |
|
|
BuildRequires: docbook-style-xsl |
175 |
|
|
BuildRequires: e2fsprogs-devel |
176 |
|
|
BuildRequires: gawk |
177 |
jpp |
1.9 |
BuildRequires: gnupg2 |
178 |
|
|
BuildRequires: krb5-devel >= %{required_mit_krb5} |
179 |
vip-ire |
1.1 |
BuildRequires: libacl-devel |
180 |
|
|
BuildRequires: libaio-devel |
181 |
|
|
BuildRequires: libarchive-devel |
182 |
|
|
BuildRequires: libattr-devel |
183 |
|
|
BuildRequires: libcap-devel |
184 |
|
|
BuildRequires: libuuid-devel |
185 |
|
|
BuildRequires: libxslt |
186 |
|
|
BuildRequires: ncurses-devel |
187 |
|
|
BuildRequires: openldap-devel |
188 |
|
|
BuildRequires: pam-devel |
189 |
jpp |
1.9 |
#BuildRequires: perl-generators |
190 |
|
|
BuildRequires: perl(Test::More) |
191 |
vip-ire |
1.1 |
BuildRequires: perl(ExtUtils::MakeMaker) |
192 |
|
|
BuildRequires: perl(Parse::Yapp) |
193 |
|
|
BuildRequires: popt-devel |
194 |
|
|
BuildRequires: python-devel |
195 |
jpp |
1.9 |
#BuildRequires: python2-pygpgme |
196 |
|
|
#BuildRequires: python2-subunit |
197 |
vip-ire |
1.1 |
BuildRequires: python-tevent |
198 |
|
|
BuildRequires: quota-devel |
199 |
|
|
BuildRequires: readline-devel |
200 |
|
|
BuildRequires: sed |
201 |
|
|
BuildRequires: xfsprogs-devel |
202 |
jpp |
1.9 |
BuildRequires: xz |
203 |
vip-ire |
1.1 |
BuildRequires: zlib-devel >= 1.2.3 |
204 |
|
|
|
205 |
|
|
BuildRequires: pkgconfig(libsystemd) |
206 |
|
|
|
207 |
|
|
%if %{with_vfs_glusterfs} |
208 |
|
|
BuildRequires: glusterfs-api-devel >= 3.4.0.16 |
209 |
|
|
BuildRequires: glusterfs-devel >= 3.4.0.16 |
210 |
|
|
%endif |
211 |
|
|
%if %{with_vfs_cephfs} |
212 |
|
|
BuildRequires: libcephfs1-devel |
213 |
|
|
%endif |
214 |
jpp |
1.9 |
%if %{with_dc} |
215 |
|
|
BuildRequires: gnutls-devel >= 3.4.7 |
216 |
|
|
# Required by samba-tool to run tests |
217 |
|
|
BuildRequires: python-crypto |
218 |
|
|
%endif |
219 |
vip-ire |
1.1 |
|
220 |
|
|
# pidl requirements |
221 |
|
|
BuildRequires: perl(Parse::Yapp) |
222 |
|
|
|
223 |
|
|
%if ! %with_internal_talloc |
224 |
jpp |
1.9 |
%global libtalloc_version 2.1.9 |
225 |
vip-ire |
1.1 |
|
226 |
|
|
BuildRequires: libtalloc-devel >= %{libtalloc_version} |
227 |
|
|
BuildRequires: pytalloc-devel >= %{libtalloc_version} |
228 |
|
|
%endif |
229 |
|
|
|
230 |
|
|
%if ! %with_internal_tevent |
231 |
jpp |
1.9 |
%global libtevent_version 0.9.31 |
232 |
vip-ire |
1.1 |
|
233 |
|
|
BuildRequires: libtevent-devel >= %{libtevent_version} |
234 |
|
|
BuildRequires: python-tevent >= %{libtevent_version} |
235 |
|
|
%endif |
236 |
|
|
|
237 |
|
|
%if ! %with_internal_ldb |
238 |
jpp |
1.9 |
%global libldb_version 1.1.29 |
239 |
vip-ire |
1.1 |
|
240 |
|
|
BuildRequires: libldb-devel >= %{libldb_version} |
241 |
|
|
BuildRequires: pyldb-devel >= %{libldb_version} |
242 |
|
|
%endif |
243 |
|
|
|
244 |
|
|
%if ! %with_internal_tdb |
245 |
jpp |
1.9 |
%global libtdb_version 1.3.12 |
246 |
vip-ire |
1.1 |
|
247 |
|
|
BuildRequires: libtdb-devel >= %{libtdb_version} |
248 |
|
|
BuildRequires: python-tdb >= %{libtdb_version} |
249 |
|
|
%endif |
250 |
|
|
|
251 |
|
|
%if %{with testsuite} |
252 |
|
|
BuildRequires: ldb-tools |
253 |
jpp |
1.9 |
BuildRequires: libcmocka-devel |
254 |
|
|
BuildRequires: python2-pygpgme |
255 |
vip-ire |
1.1 |
%endif |
256 |
|
|
|
257 |
|
|
# filter out perl requirements pulled in from examples in the docdir. |
258 |
|
|
%{?filter_setup: |
259 |
|
|
%filter_provides_in %{_docdir} |
260 |
|
|
%filter_requires_in %{_docdir} |
261 |
|
|
%filter_setup |
262 |
|
|
} |
263 |
|
|
|
264 |
|
|
### SAMBA |
265 |
|
|
%description |
266 |
unnilennium |
1.3 |
Samba is the standard Windows interoperability suite of programs for Linux and |
267 |
|
|
Unix. |
268 |
vip-ire |
1.1 |
|
269 |
|
|
### CLIENT |
270 |
|
|
%package client |
271 |
|
|
Summary: Samba client programs |
272 |
|
|
Requires(pre): %{name}-common = %{samba_depver} |
273 |
jpp |
1.9 |
Requires: %{name}-common = %{samba_depver} |
274 |
vip-ire |
1.1 |
Requires: %{name}-common-libs = %{samba_depver} |
275 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
276 |
|
|
%if %with_libsmbclient |
277 |
|
|
Requires: libsmbclient = %{samba_depver} |
278 |
|
|
%endif |
279 |
|
|
|
280 |
|
|
Provides: samba4-client = %{samba_depver} |
281 |
|
|
Obsoletes: samba4-client < %{samba_depver} |
282 |
|
|
|
283 |
unnilennium |
1.3 |
Requires(post): %{_sbindir}/update-alternatives |
284 |
|
|
Requires(postun): %{_sbindir}/update-alternatives |
285 |
|
|
|
286 |
vip-ire |
1.1 |
%description client |
287 |
unnilennium |
1.3 |
The %{name}-client package provides some SMB/CIFS clients to complement |
288 |
vip-ire |
1.1 |
the built-in SMB/CIFS filesystem in Linux. These clients allow access |
289 |
|
|
of SMB/CIFS shares and printing to SMB/CIFS printers. |
290 |
|
|
|
291 |
|
|
### CLIENT-LIBS |
292 |
|
|
%package client-libs |
293 |
|
|
Summary: Samba client libraries |
294 |
|
|
Requires(pre): %{name}-common = %{samba_depver} |
295 |
jpp |
1.9 |
Requires: %{name}-common = %{samba_depver} |
296 |
vip-ire |
1.1 |
%if %with_libwbclient |
297 |
|
|
Requires: libwbclient = %{samba_depver} |
298 |
|
|
%endif |
299 |
jpp |
1.9 |
Requires: krb5-libs >= %{required_mit_krb5} |
300 |
vip-ire |
1.1 |
|
301 |
|
|
%description client-libs |
302 |
|
|
The samba-client-libs package contains internal libraries needed by the |
303 |
|
|
SMB/CIFS clients. |
304 |
|
|
|
305 |
|
|
### COMMON |
306 |
|
|
%package common |
307 |
|
|
Summary: Files used by both Samba servers and clients |
308 |
|
|
BuildArch: noarch |
309 |
|
|
|
310 |
|
|
Requires(post): systemd |
311 |
|
|
|
312 |
|
|
Provides: samba4-common = %{samba_depver} |
313 |
|
|
Obsoletes: samba4-common < %{samba_depver} |
314 |
|
|
|
315 |
|
|
%description common |
316 |
|
|
samba-common provides files necessary for both the server and client |
317 |
|
|
packages of Samba. |
318 |
|
|
|
319 |
|
|
### COMMON-LIBS |
320 |
|
|
%package common-libs |
321 |
|
|
Summary: Libraries used by both Samba servers and clients |
322 |
|
|
Requires(pre): samba-common = %{samba_depver} |
323 |
jpp |
1.9 |
Requires: samba-common = %{samba_depver} |
324 |
vip-ire |
1.1 |
Requires: %{name}-client-libs = %{samba_depver} |
325 |
|
|
%if %with_libwbclient |
326 |
|
|
Requires: libwbclient = %{samba_depver} |
327 |
|
|
%endif |
328 |
|
|
|
329 |
|
|
%description common-libs |
330 |
|
|
The samba-common-libs package contains internal libraries needed by the |
331 |
|
|
SMB/CIFS clients. |
332 |
|
|
|
333 |
|
|
### COMMON-TOOLS |
334 |
|
|
%package common-tools |
335 |
|
|
Summary: Tools for Samba servers and clients |
336 |
|
|
Requires: samba-common-libs = %{samba_depver} |
337 |
|
|
Requires: samba-client-libs = %{samba_depver} |
338 |
|
|
Requires: samba-libs = %{samba_depver} |
339 |
|
|
%if %with_libwbclient |
340 |
|
|
Requires: libwbclient = %{samba_depver} |
341 |
|
|
%endif |
342 |
|
|
|
343 |
|
|
%description common-tools |
344 |
|
|
The samba-common-tools package contains tools for Samba servers and |
345 |
|
|
SMB/CIFS clients. |
346 |
|
|
|
347 |
|
|
### DC |
348 |
|
|
%package dc |
349 |
|
|
Summary: Samba AD Domain Controller |
350 |
unnilennium |
1.3 |
Requires: %{name} = %{samba_depver} |
351 |
vip-ire |
1.1 |
Requires: %{name}-libs = %{samba_depver} |
352 |
|
|
Requires: %{name}-dc-libs = %{samba_depver} |
353 |
|
|
Requires: %{name}-python = %{samba_depver} |
354 |
unnilennium |
1.3 |
Requires: %{name}-winbind = %{samba_depver} |
355 |
|
|
%if %{with_dc} |
356 |
|
|
# samba-tool requirements |
357 |
|
|
Requires: python-crypto |
358 |
|
|
%endif |
359 |
vip-ire |
1.1 |
|
360 |
|
|
Provides: samba4-dc = %{samba_depver} |
361 |
|
|
Obsoletes: samba4-dc < %{samba_depver} |
362 |
|
|
|
363 |
|
|
%description dc |
364 |
|
|
The samba-dc package provides AD Domain Controller functionality |
365 |
|
|
|
366 |
|
|
### DC-LIBS |
367 |
|
|
%package dc-libs |
368 |
|
|
Summary: Samba AD Domain Controller Libraries |
369 |
|
|
Requires: %{name}-common-libs = %{samba_depver} |
370 |
|
|
Requires: %{name}-libs = %{samba_depver} |
371 |
|
|
|
372 |
|
|
Provides: samba4-dc-libs = %{samba_depver} |
373 |
|
|
Obsoletes: samba4-dc-libs < %{samba_depver} |
374 |
|
|
|
375 |
|
|
%description dc-libs |
376 |
unnilennium |
1.3 |
The %{name}-dc-libs package contains the libraries needed by the DC to |
377 |
vip-ire |
1.1 |
link against the SMB, RPC and other protocols. |
378 |
|
|
|
379 |
|
|
### DEVEL |
380 |
|
|
%package devel |
381 |
|
|
Summary: Developer tools for Samba libraries |
382 |
|
|
Requires: %{name}-libs = %{samba_depver} |
383 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
384 |
|
|
|
385 |
|
|
Provides: samba4-devel = %{samba_depver} |
386 |
|
|
Obsoletes: samba4-devel < %{samba_depver} |
387 |
|
|
|
388 |
|
|
%description devel |
389 |
unnilennium |
1.3 |
The %{name}-devel package contains the header files for the libraries |
390 |
vip-ire |
1.1 |
needed to develop programs that link against the SMB, RPC and other |
391 |
|
|
libraries in the Samba suite. |
392 |
|
|
|
393 |
|
|
### CEPH |
394 |
|
|
%if %{with_vfs_cephfs} |
395 |
|
|
%package vfs-cephfs |
396 |
|
|
Summary: Samba VFS module for Ceph distributed storage system |
397 |
|
|
Requires: libcephfs1 |
398 |
jpp |
1.10 |
Requires: libldb |
399 |
vip-ire |
1.1 |
Requires: %{name} = %{samba_depver} |
400 |
|
|
Requires: %{name}-libs = %{samba_depver} |
401 |
|
|
|
402 |
|
|
%description vfs-cephfs |
403 |
|
|
Samba VFS module for Ceph distributed storage system integration. |
404 |
|
|
%endif |
405 |
|
|
|
406 |
|
|
### GLUSTER |
407 |
|
|
%if %{with_vfs_glusterfs} |
408 |
|
|
%package vfs-glusterfs |
409 |
|
|
Summary: Samba VFS module for GlusterFS |
410 |
|
|
Requires: glusterfs-api >= 3.4.0.16 |
411 |
|
|
Requires: glusterfs >= 3.4.0.16 |
412 |
|
|
Requires: %{name} = %{samba_depver} |
413 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
414 |
|
|
Requires: %{name}-libs = %{samba_depver} |
415 |
|
|
|
416 |
unnilennium |
1.3 |
Obsoletes: samba-glusterfs < %{samba_depver} |
417 |
|
|
Provides: samba-glusterfs = %{samba_depver} |
418 |
vip-ire |
1.1 |
|
419 |
|
|
%description vfs-glusterfs |
420 |
|
|
Samba VFS module for GlusterFS integration. |
421 |
|
|
%endif |
422 |
|
|
|
423 |
unnilennium |
1.3 |
### KRB5-PRINTING |
424 |
|
|
%package krb5-printing |
425 |
|
|
Summary: Samba CUPS backend for printing with Kerberos |
426 |
|
|
Requires(pre): %{name}-client |
427 |
jpp |
1.9 |
Requires: %{name}-client |
428 |
unnilennium |
1.3 |
|
429 |
|
|
Requires(post): %{_sbindir}/update-alternatives |
430 |
|
|
Requires(postun): %{_sbindir}/update-alternatives |
431 |
|
|
|
432 |
|
|
%description krb5-printing |
433 |
|
|
If you need Kerberos for print jobs to a printer connection to cups via the SMB |
434 |
|
|
backend, then you need to install that package. It will allow cups to access |
435 |
|
|
the Kerberos credentials cache of the user issuing the print job. |
436 |
|
|
|
437 |
vip-ire |
1.1 |
### LIBS |
438 |
|
|
%package libs |
439 |
|
|
Summary: Samba libraries |
440 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
441 |
|
|
%if %with_libwbclient |
442 |
|
|
Requires: libwbclient = %{samba_depver} |
443 |
|
|
%endif |
444 |
|
|
|
445 |
|
|
Provides: samba4-libs = %{samba_depver} |
446 |
|
|
Obsoletes: samba4-libs < %{samba_depver} |
447 |
|
|
|
448 |
|
|
%description libs |
449 |
unnilennium |
1.3 |
The %{name}-libs package contains the libraries needed by programs that link |
450 |
|
|
against the SMB, RPC and other protocols provided by the Samba suite. |
451 |
vip-ire |
1.1 |
|
452 |
|
|
### LIBSMBCLIENT |
453 |
|
|
%if %with_libsmbclient |
454 |
|
|
%package -n libsmbclient |
455 |
|
|
Summary: The SMB client library |
456 |
|
|
Requires(pre): %{name}-common = %{samba_depver} |
457 |
jpp |
1.9 |
Requires: %{name}-common = %{samba_depver} |
458 |
vip-ire |
1.1 |
Requires: %{name}-client-libs = %{samba_depver} |
459 |
|
|
|
460 |
|
|
%description -n libsmbclient |
461 |
|
|
The libsmbclient contains the SMB client library from the Samba suite. |
462 |
|
|
|
463 |
|
|
%package -n libsmbclient-devel |
464 |
|
|
Summary: Developer tools for the SMB client library |
465 |
|
|
Requires: libsmbclient = %{samba_depver} |
466 |
|
|
|
467 |
|
|
%description -n libsmbclient-devel |
468 |
unnilennium |
1.3 |
The libsmbclient-devel package contains the header files and libraries needed |
469 |
|
|
to develop programs that link against the SMB client library in the Samba |
470 |
|
|
suite. |
471 |
vip-ire |
1.1 |
%endif # with_libsmbclient |
472 |
|
|
|
473 |
|
|
### LIBWBCLIENT |
474 |
|
|
%if %with_libwbclient |
475 |
|
|
%package -n libwbclient |
476 |
|
|
Summary: The winbind client library |
477 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
478 |
|
|
|
479 |
|
|
%description -n libwbclient |
480 |
unnilennium |
1.3 |
The libwbclient package contains the winbind client library from the Samba |
481 |
|
|
suite. |
482 |
vip-ire |
1.1 |
|
483 |
|
|
%package -n libwbclient-devel |
484 |
|
|
Summary: Developer tools for the winbind library |
485 |
|
|
Requires: libwbclient = %{samba_depver} |
486 |
unnilennium |
1.3 |
|
487 |
|
|
Provides: samba-winbind-devel = %{samba_depver} |
488 |
|
|
Obsoletes: samba-winbind-devel < %{samba_depver} |
489 |
vip-ire |
1.1 |
|
490 |
|
|
%description -n libwbclient-devel |
491 |
unnilennium |
1.3 |
The libwbclient-devel package provides developer tools for the wbclient |
492 |
|
|
library. |
493 |
vip-ire |
1.1 |
%endif # with_libwbclient |
494 |
|
|
|
495 |
|
|
### PYTHON |
496 |
|
|
%package python |
497 |
|
|
Summary: Samba Python libraries |
498 |
|
|
Requires: %{name} = %{samba_depver} |
499 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
500 |
|
|
Requires: %{name}-libs = %{samba_depver} |
501 |
|
|
Requires: python-tevent |
502 |
|
|
Requires: python-tdb |
503 |
jpp |
1.10 |
#Requires: pyldb |
504 |
vip-ire |
1.1 |
Requires: pytalloc |
505 |
|
|
|
506 |
|
|
Provides: samba4-python = %{samba_depver} |
507 |
|
|
Obsoletes: samba4-python < %{samba_depver} |
508 |
|
|
|
509 |
|
|
%description python |
510 |
unnilennium |
1.3 |
The %{name}-python package contains the Python libraries needed by programs |
511 |
vip-ire |
1.1 |
that use SMB, RPC and other Samba provided protocols in Python programs. |
512 |
|
|
|
513 |
|
|
### PIDL |
514 |
|
|
%package pidl |
515 |
|
|
Summary: Perl IDL compiler |
516 |
|
|
Requires: perl(Parse::Yapp) |
517 |
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
518 |
|
|
BuildArch: noarch |
519 |
|
|
|
520 |
|
|
Provides: samba4-pidl = %{samba_depver} |
521 |
|
|
Obsoletes: samba4-pidl < %{samba_depver} |
522 |
|
|
|
523 |
|
|
%description pidl |
524 |
|
|
The %{name}-pidl package contains the Perl IDL compiler used by Samba |
525 |
|
|
and Wireshark to parse IDL and similar protocols |
526 |
|
|
|
527 |
|
|
### TEST |
528 |
|
|
%package test |
529 |
|
|
Summary: Testing tools for Samba servers and clients |
530 |
|
|
Requires: %{name} = %{samba_depver} |
531 |
|
|
Requires: %{name}-common = %{samba_depver} |
532 |
|
|
Requires: %{name}-winbind = %{samba_depver} |
533 |
|
|
|
534 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
535 |
|
|
Requires: %{name}-libs = %{samba_depver} |
536 |
|
|
Requires: %{name}-test-libs = %{samba_depver} |
537 |
|
|
%if %with_dc |
538 |
|
|
Requires: %{name}-dc-libs = %{samba_depver} |
539 |
|
|
%endif |
540 |
|
|
Requires: %{name}-libs = %{samba_depver} |
541 |
|
|
%if %with_libsmbclient |
542 |
|
|
Requires: libsmbclient = %{samba_depver} |
543 |
|
|
%endif |
544 |
|
|
%if %with_libwbclient |
545 |
|
|
Requires: libwbclient = %{samba_depver} |
546 |
|
|
%endif |
547 |
|
|
|
548 |
|
|
Provides: samba4-test = %{samba_depver} |
549 |
|
|
Obsoletes: samba4-test < %{samba_depver} |
550 |
|
|
|
551 |
|
|
%description test |
552 |
|
|
%{name}-test provides testing tools for both the server and client |
553 |
|
|
packages of Samba. |
554 |
|
|
|
555 |
|
|
### TEST-LIBS |
556 |
|
|
%package test-libs |
557 |
unnilennium |
1.3 |
Summary: Libraries need by the testing tools for Samba servers and clients |
558 |
vip-ire |
1.1 |
Requires: %{name}-client-libs = %{samba_depver} |
559 |
|
|
Requires: %{name}-libs = %{samba_depver} |
560 |
|
|
|
561 |
unnilennium |
1.3 |
Provides: %{name}-test-devel = %{samba_depver} |
562 |
|
|
Obsoletes: %{name}-test-devel < %{samba_depver} |
563 |
|
|
|
564 |
vip-ire |
1.1 |
%description test-libs |
565 |
|
|
%{name}-test-libs provides libraries required by the testing tools. |
566 |
|
|
|
567 |
|
|
### WINBIND |
568 |
|
|
%package winbind |
569 |
|
|
Summary: Samba winbind |
570 |
|
|
Requires(pre): %{name}-common = %{samba_depver} |
571 |
jpp |
1.9 |
Requires: %{name}-common = %{samba_depver} |
572 |
vip-ire |
1.1 |
Requires: %{name}-common-libs = %{samba_depver} |
573 |
|
|
Requires: %{name}-common-tools = %{samba_depver} |
574 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
575 |
|
|
Requires: %{name}-libs = %{samba_depver} |
576 |
|
|
Requires: %{name}-winbind-modules = %{samba_depver} |
577 |
|
|
|
578 |
|
|
Provides: samba4-winbind = %{samba_depver} |
579 |
|
|
Obsoletes: samba4-winbind < %{samba_depver} |
580 |
|
|
|
581 |
|
|
%description winbind |
582 |
unnilennium |
1.3 |
The samba-winbind package provides the winbind NSS library, and some client |
583 |
|
|
tools. Winbind enables Linux to be a full member in Windows domains and to use |
584 |
|
|
Windows user and group accounts on Linux. |
585 |
vip-ire |
1.1 |
|
586 |
|
|
### WINBIND-CLIENTS |
587 |
|
|
%package winbind-clients |
588 |
|
|
Summary: Samba winbind clients |
589 |
|
|
Requires: %{name}-common = %{samba_depver} |
590 |
|
|
Requires: %{name}-common-libs = %{samba_depver} |
591 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
592 |
|
|
Requires: %{name}-libs = %{samba_depver} |
593 |
|
|
Requires: %{name}-winbind = %{samba_depver} |
594 |
|
|
%if %with_libwbclient |
595 |
|
|
Requires: libwbclient = %{samba_depver} |
596 |
|
|
%endif |
597 |
|
|
|
598 |
|
|
Provides: samba4-winbind-clients = %{samba_depver} |
599 |
|
|
Obsoletes: samba4-winbind-clients < %{samba_depver} |
600 |
|
|
|
601 |
|
|
%description winbind-clients |
602 |
|
|
The samba-winbind-clients package provides the wbinfo and ntlm_auth |
603 |
|
|
tool. |
604 |
|
|
|
605 |
|
|
### WINBIND-KRB5-LOCATOR |
606 |
|
|
%package winbind-krb5-locator |
607 |
|
|
Summary: Samba winbind krb5 locator |
608 |
|
|
%if %with_libwbclient |
609 |
|
|
Requires: libwbclient = %{samba_depver} |
610 |
|
|
Requires: %{name}-winbind = %{samba_depver} |
611 |
|
|
%else |
612 |
|
|
Requires: %{name}-libs = %{samba_depver} |
613 |
|
|
%endif |
614 |
|
|
|
615 |
|
|
Provides: samba4-winbind-krb5-locator = %{samba_depver} |
616 |
|
|
Obsoletes: samba4-winbind-krb5-locator < %{samba_depver} |
617 |
|
|
|
618 |
|
|
# Handle winbind_krb5_locator.so as alternatives to allow |
619 |
|
|
# IPA AD trusts case where it should not be used by libkrb5 |
620 |
|
|
# The plugin will be diverted to /dev/null by the FreeIPA |
621 |
|
|
# freeipa-server-trust-ad subpackage due to higher priority |
622 |
|
|
# and restored to the proper one on uninstall |
623 |
|
|
Requires(post): %{_sbindir}/update-alternatives |
624 |
|
|
Requires(postun): %{_sbindir}/update-alternatives |
625 |
|
|
Requires(preun): %{_sbindir}/update-alternatives |
626 |
|
|
|
627 |
|
|
%description winbind-krb5-locator |
628 |
|
|
The winbind krb5 locator is a plugin for the system kerberos library to allow |
629 |
|
|
the local kerberos library to use the same KDC as samba and winbind use |
630 |
|
|
|
631 |
|
|
### WINBIND-MODULES |
632 |
|
|
%package winbind-modules |
633 |
|
|
Summary: Samba winbind modules |
634 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
635 |
|
|
Requires: %{name}-libs = %{samba_depver} |
636 |
|
|
%if %with_libwbclient |
637 |
|
|
Requires: libwbclient = %{samba_depver} |
638 |
|
|
%endif |
639 |
|
|
Requires: pam |
640 |
|
|
|
641 |
|
|
%description winbind-modules |
642 |
unnilennium |
1.3 |
The samba-winbind-modules package provides the NSS library and a PAM module |
643 |
|
|
necessary to communicate to the Winbind Daemon |
644 |
vip-ire |
1.1 |
|
645 |
|
|
### CTDB |
646 |
|
|
%if %with_clustering_support |
647 |
|
|
%package -n ctdb |
648 |
|
|
Summary: A Clustered Database based on Samba's Trivial Database (TDB) |
649 |
|
|
|
650 |
|
|
Requires: %{name}-client-libs = %{samba_depver} |
651 |
|
|
|
652 |
|
|
Requires: coreutils |
653 |
|
|
Requires: fileutils |
654 |
|
|
# for ps and killall |
655 |
|
|
Requires: psmisc |
656 |
|
|
Requires: sed |
657 |
|
|
Requires: tdb-tools |
658 |
|
|
Requires: gawk |
659 |
|
|
# for pkill and pidof: |
660 |
|
|
Requires: procps-ng |
661 |
|
|
# for netstat: |
662 |
|
|
Requires: net-tools |
663 |
|
|
Requires: ethtool |
664 |
|
|
# for ip: |
665 |
|
|
Requires: iproute |
666 |
|
|
Requires: iptables |
667 |
|
|
# for flock, getopt, kill: |
668 |
|
|
Requires: util-linux |
669 |
|
|
|
670 |
|
|
Requires(post): systemd-units |
671 |
|
|
Requires(preun): systemd-units |
672 |
|
|
Requires(postun): systemd-units |
673 |
|
|
|
674 |
|
|
%description -n ctdb |
675 |
|
|
CTDB is a cluster implementation of the TDB database used by Samba and other |
676 |
|
|
projects to store temporary data. If an application is already using TDB for |
677 |
|
|
temporary data it is very easy to convert that application to be cluster aware |
678 |
|
|
and use CTDB instead. |
679 |
|
|
|
680 |
|
|
### CTDB-TEST |
681 |
|
|
%package -n ctdb-tests |
682 |
|
|
Summary: CTDB clustered database test suite |
683 |
|
|
|
684 |
|
|
Requires: samba-client-libs = %{samba_depver} |
685 |
|
|
|
686 |
|
|
Requires: ctdb = %{samba_depver} |
687 |
|
|
Requires: nc |
688 |
|
|
|
689 |
unnilennium |
1.3 |
Provides: ctdb-devel = %{samba_depver} |
690 |
|
|
Obsoletes: ctdb-devel < %{samba_depver} |
691 |
|
|
|
692 |
vip-ire |
1.1 |
%description -n ctdb-tests |
693 |
|
|
Test suite for CTDB. |
694 |
|
|
CTDB is a cluster implementation of the TDB database used by Samba and other |
695 |
|
|
projects to store temporary data. If an application is already using TDB for |
696 |
|
|
temporary data it is very easy to convert that application to be cluster aware |
697 |
|
|
and use CTDB instead. |
698 |
|
|
%endif # with_clustering_support |
699 |
|
|
|
700 |
|
|
|
701 |
|
|
|
702 |
|
|
%prep |
703 |
jpp |
1.9 |
xzcat %{SOURCE0} | gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} - |
704 |
|
|
%autosetup -n samba-%{version}%{pre_release} -p1 |
705 |
vip-ire |
1.1 |
|
706 |
|
|
%build |
707 |
|
|
%global _talloc_lib ,talloc,pytalloc,pytalloc-util |
708 |
|
|
%global _tevent_lib ,tevent,pytevent |
709 |
|
|
%global _tdb_lib ,tdb,pytdb |
710 |
unnilennium |
1.3 |
%global _ldb_lib ,ldb,pyldb,pyldb-util |
711 |
vip-ire |
1.1 |
|
712 |
|
|
%if ! %{with_internal_talloc} |
713 |
|
|
%global _talloc_lib ,!talloc,!pytalloc,!pytalloc-util |
714 |
|
|
%endif |
715 |
|
|
|
716 |
|
|
%if ! %{with_internal_tevent} |
717 |
|
|
%global _tevent_lib ,!tevent,!pytevent |
718 |
|
|
%endif |
719 |
|
|
|
720 |
|
|
%if ! %{with_internal_tdb} |
721 |
|
|
%global _tdb_lib ,!tdb,!pytdb |
722 |
|
|
%endif |
723 |
|
|
|
724 |
|
|
%if ! %{with_internal_ldb} |
725 |
unnilennium |
1.3 |
%global _ldb_lib ,!ldb,!pyldb,!pyldb-util |
726 |
vip-ire |
1.1 |
%endif |
727 |
|
|
|
728 |
|
|
%global _samba4_libraries heimdal,!zlib,!popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}%{_ldb_lib} |
729 |
|
|
|
730 |
|
|
%global _samba4_idmap_modules idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2 |
731 |
|
|
%global _samba4_pdb_modules pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4 |
732 |
|
|
%global _samba4_auth_modules auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4 |
733 |
|
|
|
734 |
|
|
%global _samba4_modules %{_samba4_idmap_modules},%{_samba4_pdb_modules},%{_samba4_auth_modules} |
735 |
|
|
|
736 |
|
|
%global _libsmbclient %nil |
737 |
|
|
%global _libwbclient %nil |
738 |
|
|
|
739 |
|
|
%if ! %with_libsmbclient |
740 |
|
|
%global _libsmbclient smbclient, |
741 |
|
|
%endif |
742 |
|
|
|
743 |
|
|
%if ! %with_libwbclient |
744 |
|
|
%global _libwbclient wbclient, |
745 |
|
|
%endif |
746 |
|
|
|
747 |
|
|
%global _samba4_private_libraries %{_libsmbclient}%{_libwbclient} |
748 |
|
|
|
749 |
|
|
%configure \ |
750 |
|
|
--enable-fhs \ |
751 |
|
|
--with-piddir=/run \ |
752 |
|
|
--with-sockets-dir=/run/samba \ |
753 |
|
|
--with-modulesdir=%{_libdir}/samba \ |
754 |
|
|
--with-pammodulesdir=%{_libdir}/security \ |
755 |
unnilennium |
1.3 |
--with-lockdir=/var/lib/samba/lock \ |
756 |
|
|
--with-statedir=/var/lib/samba \ |
757 |
vip-ire |
1.1 |
--with-cachedir=/var/lib/samba \ |
758 |
|
|
--disable-rpath-install \ |
759 |
|
|
--with-shared-modules=%{_samba4_modules} \ |
760 |
|
|
--bundled-libraries=%{_samba4_libraries} \ |
761 |
|
|
--with-pam \ |
762 |
|
|
--with-pie \ |
763 |
|
|
--with-relro \ |
764 |
|
|
--without-fam \ |
765 |
|
|
%if (! %with_libsmbclient) || (! %with_libwbclient) |
766 |
|
|
--private-libraries=%{_samba4_private_libraries} \ |
767 |
|
|
%endif |
768 |
|
|
%if %with_mitkrb5 |
769 |
|
|
--with-system-mitkrb5 \ |
770 |
|
|
%endif |
771 |
|
|
%if ! %with_dc |
772 |
|
|
--without-ad-dc \ |
773 |
|
|
%endif |
774 |
|
|
%if ! %with_vfs_glusterfs |
775 |
|
|
--disable-glusterfs \ |
776 |
|
|
%endif |
777 |
|
|
%if %with_clustering_support |
778 |
|
|
--with-cluster-support \ |
779 |
|
|
%endif |
780 |
|
|
%if %with_profiling |
781 |
|
|
--with-profiling-data \ |
782 |
|
|
%endif |
783 |
|
|
%if %{with testsuite} |
784 |
|
|
--enable-selftest \ |
785 |
|
|
%endif |
786 |
|
|
--with-systemd |
787 |
|
|
|
788 |
|
|
make %{?_smp_mflags} |
789 |
|
|
|
790 |
|
|
%install |
791 |
|
|
rm -rf %{buildroot} |
792 |
|
|
make %{?_smp_mflags} install DESTDIR=%{buildroot} |
793 |
|
|
|
794 |
|
|
install -d -m 0755 %{buildroot}/usr/{sbin,bin} |
795 |
|
|
install -d -m 0755 %{buildroot}%{_libdir}/security |
796 |
|
|
install -d -m 0755 %{buildroot}/var/lib/samba |
797 |
unnilennium |
1.3 |
install -d -m 0755 %{buildroot}/var/lib/samba/drivers |
798 |
|
|
install -d -m 0755 %{buildroot}/var/lib/samba/lock |
799 |
vip-ire |
1.1 |
install -d -m 0755 %{buildroot}/var/lib/samba/private |
800 |
|
|
install -d -m 0755 %{buildroot}/var/lib/samba/scripts |
801 |
|
|
install -d -m 0755 %{buildroot}/var/lib/samba/sysvol |
802 |
unnilennium |
1.3 |
install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged |
803 |
vip-ire |
1.1 |
install -d -m 0755 %{buildroot}/var/log/samba/old |
804 |
|
|
install -d -m 0755 %{buildroot}/var/spool/samba |
805 |
|
|
install -d -m 0755 %{buildroot}/var/run/samba |
806 |
|
|
install -d -m 0755 %{buildroot}/var/run/winbindd |
807 |
|
|
install -d -m 0755 %{buildroot}/%{_libdir}/samba |
808 |
unnilennium |
1.3 |
install -d -m 0755 %{buildroot}/%{_libdir}/samba/ldb |
809 |
vip-ire |
1.1 |
install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig |
810 |
|
|
|
811 |
|
|
# Move libwbclient.so* into private directory, it cannot be just libdir/samba |
812 |
|
|
# because samba uses rpath with this directory. |
813 |
|
|
install -d -m 0755 %{buildroot}/%{_libdir}/samba/wbclient |
814 |
|
|
mv %{buildroot}/%{_libdir}/libwbclient.so* %{buildroot}/%{_libdir}/samba/wbclient |
815 |
|
|
if [ ! -f %{buildroot}/%{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version} ] |
816 |
|
|
then |
817 |
|
|
echo "Expected libwbclient version not found, please check if version has changed." |
818 |
|
|
exit -1 |
819 |
|
|
fi |
820 |
|
|
|
821 |
unnilennium |
1.3 |
|
822 |
|
|
touch %{buildroot}%{_libexecdir}/samba/cups_backend_smb |
823 |
|
|
|
824 |
vip-ire |
1.1 |
# Install other stuff |
825 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/logrotate.d |
826 |
jpp |
1.9 |
install -m 0644 %{SOURCE10} %{buildroot}%{_sysconfdir}/logrotate.d/samba |
827 |
vip-ire |
1.1 |
|
828 |
jpp |
1.9 |
install -m 0644 %{SOURCE11} %{buildroot}%{_sysconfdir}/samba/smb.conf |
829 |
|
|
install -m 0644 %{SOURCE12} %{buildroot}%{_sysconfdir}/samba/smb.conf.example |
830 |
vip-ire |
1.1 |
|
831 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/security |
832 |
jpp |
1.9 |
install -m 0644 %{SOURCE13} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf |
833 |
vip-ire |
1.1 |
|
834 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/pam.d |
835 |
jpp |
1.9 |
install -m 0644 %{SOURCE14} %{buildroot}%{_sysconfdir}/pam.d/samba |
836 |
vip-ire |
1.1 |
|
837 |
|
|
echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts |
838 |
|
|
|
839 |
|
|
# openLDAP database schema |
840 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema |
841 |
|
|
install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema |
842 |
|
|
|
843 |
|
|
install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint |
844 |
|
|
|
845 |
unnilennium |
1.3 |
install -d -m 0755 %{buildroot}%{_tmpfilesdir} |
846 |
|
|
install -m644 packaging/systemd/samba.conf.tmp %{buildroot}%{_tmpfilesdir}/samba.conf |
847 |
vip-ire |
1.1 |
# create /run/samba too. |
848 |
unnilennium |
1.3 |
echo "d /run/samba 755 root root" >> %{buildroot}%{_tmpfilesdir}/samba.conf |
849 |
vip-ire |
1.1 |
%if %with_clustering_support |
850 |
|
|
echo "d /run/ctdb 755 root root" >> %{buildroot}%{_tmpfilesdir}/ctdb.conf |
851 |
|
|
%endif |
852 |
|
|
|
853 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig |
854 |
|
|
install -m 0644 packaging/systemd/samba.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/samba |
855 |
|
|
%if %with_clustering_support |
856 |
jpp |
1.9 |
cat > %{buildroot}%{_sysconfdir}/sysconfig/ctdb <<EOF |
857 |
|
|
# CTDB configuration is now in %{_sysconfdir}/ctdb/ctdbd.conf |
858 |
|
|
EOF |
859 |
|
|
|
860 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/ctdb |
861 |
|
|
install -m 0644 ctdb/config/ctdbd.conf %{buildroot}%{_sysconfdir}/ctdb/ctdbd.conf |
862 |
vip-ire |
1.1 |
%endif |
863 |
|
|
|
864 |
|
|
install -m 0644 %{SOURCE201} packaging/README.downgrade |
865 |
|
|
|
866 |
|
|
%if ! %with_dc |
867 |
|
|
install -m 0644 %{SOURCE200} packaging/README.dc |
868 |
|
|
install -m 0644 %{SOURCE200} packaging/README.dc-libs |
869 |
|
|
%endif |
870 |
|
|
|
871 |
|
|
install -d -m 0755 %{buildroot}%{_unitdir} |
872 |
jpp |
1.10 |
for i in nmb smb winbind samba; do |
873 |
|
|
cat packaging/systemd/$i.service | sed -e 's@\[Service\]@[Service]\nEnvironment=KRB5CCNAME=/run/samba/krb5cc_samba@g' >tmp$i.service |
874 |
vip-ire |
1.1 |
install -m 0644 tmp$i.service %{buildroot}%{_unitdir}/$i.service |
875 |
|
|
done |
876 |
|
|
%if %with_clustering_support |
877 |
jpp |
1.9 |
install -m 0644 ctdb/config/ctdb.service %{buildroot}%{_unitdir} |
878 |
vip-ire |
1.1 |
%endif |
879 |
|
|
|
880 |
|
|
# NetworkManager online/offline script |
881 |
|
|
install -d -m 0755 %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/ |
882 |
|
|
install -m 0755 packaging/NetworkManager/30-winbind-systemd \ |
883 |
|
|
%{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind |
884 |
|
|
|
885 |
|
|
# winbind krb5 locator |
886 |
|
|
install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5 |
887 |
|
|
touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so |
888 |
|
|
|
889 |
vip-ire |
1.2 |
%if ! %with_dc |
890 |
|
|
for i in %{_libdir}/samba/libdfs-server-ad-samba4.so \ |
891 |
unnilennium |
1.3 |
%{_libdir}/samba/libdnsserver-common-samba4.so \ |
892 |
|
|
%{_mandir}/man8/samba.8 \ |
893 |
|
|
%{_mandir}/man8/samba-tool.8 \ |
894 |
|
|
%{_libdir}/samba/ldb/ildap.so \ |
895 |
|
|
%{_libdir}/samba/ldb/ldbsamba_extensions.so ; do |
896 |
vip-ire |
1.2 |
rm -f %{buildroot}$i |
897 |
|
|
done |
898 |
|
|
%endif |
899 |
|
|
|
900 |
vip-ire |
1.1 |
# This makes the right links, as rpmlint requires that |
901 |
|
|
# the ldconfig-created links be recorded in the RPM. |
902 |
|
|
/sbin/ldconfig -N -n %{buildroot}%{_libdir} |
903 |
|
|
|
904 |
|
|
%if %{with testsuite} |
905 |
|
|
%check |
906 |
|
|
TDB_NO_FSYNC=1 make %{?_smp_mflags} test |
907 |
|
|
%endif |
908 |
|
|
|
909 |
|
|
%post |
910 |
|
|
%systemd_post smb.service |
911 |
|
|
%systemd_post nmb.service |
912 |
|
|
|
913 |
|
|
%preun |
914 |
|
|
%systemd_preun smb.service |
915 |
|
|
%systemd_preun nmb.service |
916 |
|
|
|
917 |
|
|
%postun |
918 |
|
|
%systemd_postun_with_restart smb.service |
919 |
|
|
%systemd_postun_with_restart nmb.service |
920 |
|
|
|
921 |
|
|
%post common |
922 |
|
|
/sbin/ldconfig |
923 |
unnilennium |
1.3 |
/usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/samba.conf |
924 |
vip-ire |
1.1 |
if [ -d /var/cache/samba ]; then |
925 |
|
|
mv /var/cache/samba/netsamlogon_cache.tdb /var/lib/samba/ 2>/dev/null |
926 |
|
|
mv /var/cache/samba/winbindd_cache.tdb /var/lib/samba/ 2>/dev/null |
927 |
|
|
rm -rf /var/cache/samba/ |
928 |
|
|
ln -sf /var/cache/samba /var/lib/samba/ |
929 |
|
|
fi |
930 |
|
|
|
931 |
unnilennium |
1.3 |
%post client |
932 |
|
|
%{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \ |
933 |
|
|
cups_backend_smb \ |
934 |
|
|
%{_bindir}/smbspool 10 |
935 |
|
|
|
936 |
|
|
%postun client |
937 |
|
|
if [ $1 -eq 0 ] ; then |
938 |
|
|
%{_sbindir}/update-alternatives --remove cups_backend_smb %{_bindir}/smbspool |
939 |
|
|
fi |
940 |
|
|
|
941 |
|
|
%post client-libs -p /sbin/ldconfig |
942 |
|
|
|
943 |
|
|
%postun client-libs -p /sbin/ldconfig |
944 |
|
|
|
945 |
|
|
%post common-libs -p /sbin/ldconfig |
946 |
|
|
|
947 |
|
|
%postun common-libs -p /sbin/ldconfig |
948 |
vip-ire |
1.1 |
|
949 |
|
|
%if %with_dc |
950 |
|
|
%post dc-libs -p /sbin/ldconfig |
951 |
|
|
|
952 |
|
|
%postun dc-libs -p /sbin/ldconfig |
953 |
unnilennium |
1.3 |
%endif |
954 |
|
|
|
955 |
|
|
%post krb5-printing |
956 |
|
|
%{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \ |
957 |
|
|
cups_backend_smb \ |
958 |
|
|
%{_libexecdir}/samba/smbspool_krb5_wrapper 50 |
959 |
|
|
|
960 |
|
|
%postun krb5-printing |
961 |
|
|
if [ $1 -eq 0 ] ; then |
962 |
|
|
%{_sbindir}/update-alternatives --remove cups_backend_smb %{_libexecdir}/samba/smbspool_krb5_wrapper |
963 |
|
|
fi |
964 |
vip-ire |
1.1 |
|
965 |
|
|
%post libs -p /sbin/ldconfig |
966 |
|
|
|
967 |
|
|
%postun libs -p /sbin/ldconfig |
968 |
|
|
|
969 |
|
|
%if %with_libsmbclient |
970 |
|
|
%post -n libsmbclient -p /sbin/ldconfig |
971 |
|
|
|
972 |
|
|
%postun -n libsmbclient -p /sbin/ldconfig |
973 |
unnilennium |
1.3 |
%endif |
974 |
vip-ire |
1.1 |
|
975 |
|
|
%if %with_libwbclient |
976 |
|
|
%posttrans -n libwbclient |
977 |
|
|
# It has to be posttrans here to make sure all files of a previous version |
978 |
|
|
# without alternatives support are removed |
979 |
|
|
%{_sbindir}/update-alternatives --install %{_libdir}/libwbclient.so.%{libwbc_alternatives_version} \ |
980 |
|
|
libwbclient.so.%{libwbc_alternatives_version}%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version} 10 |
981 |
|
|
/sbin/ldconfig |
982 |
|
|
|
983 |
|
|
%preun -n libwbclient |
984 |
|
|
%{_sbindir}/update-alternatives --remove libwbclient.so.%{libwbc_alternatives_version}%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so.%{libwbc_alternatives_version} |
985 |
|
|
/sbin/ldconfig |
986 |
|
|
|
987 |
|
|
%posttrans -n libwbclient-devel |
988 |
|
|
%{_sbindir}/update-alternatives --install %{_libdir}/libwbclient.so \ |
989 |
|
|
libwbclient.so%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so 10 |
990 |
|
|
|
991 |
|
|
%preun -n libwbclient-devel |
992 |
|
|
# alternatives checks if the file which should be removed is a link or not, but |
993 |
|
|
# not if it points to the /etc/alternatives directory or to some other place. |
994 |
|
|
# When downgrading to a version where alternatives is not used and |
995 |
|
|
# libwbclient.so is a link and not a file it will be removed. The following |
996 |
|
|
# check removes the alternatives files manually if that is the case. |
997 |
|
|
if [ "`readlink %{_libdir}/libwbclient.so`" == "libwbclient.so.%{libwbc_alternatives_version}" ]; then |
998 |
|
|
/bin/rm -f /etc/alternatives/libwbclient.so%{libwbc_alternatives_suffix} /var/lib/alternatives/libwbclient.so%{libwbc_alternatives_suffix} 2> /dev/null |
999 |
|
|
else |
1000 |
|
|
%{_sbindir}/update-alternatives --remove libwbclient.so%{libwbc_alternatives_suffix} %{_libdir}/samba/wbclient/libwbclient.so |
1001 |
|
|
fi |
1002 |
|
|
|
1003 |
|
|
%endif # with_libwbclient |
1004 |
|
|
|
1005 |
|
|
%post test -p /sbin/ldconfig |
1006 |
|
|
|
1007 |
|
|
%postun test -p /sbin/ldconfig |
1008 |
|
|
|
1009 |
|
|
%pre winbind |
1010 |
|
|
/usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || : |
1011 |
|
|
|
1012 |
|
|
%post winbind |
1013 |
|
|
%systemd_post winbind.service |
1014 |
|
|
|
1015 |
|
|
%preun winbind |
1016 |
|
|
%systemd_preun winbind.service |
1017 |
|
|
|
1018 |
|
|
%postun winbind |
1019 |
|
|
%systemd_postun_with_restart smb.service |
1020 |
|
|
%systemd_postun_with_restart nmb.service |
1021 |
|
|
|
1022 |
|
|
%postun winbind-krb5-locator |
1023 |
|
|
if [ "$1" -ge "1" ]; then |
1024 |
|
|
if [ "`readlink %{_sysconfdir}/alternatives/winbind_krb5_locator.so`" == "%{_libdir}/winbind_krb5_locator.so" ]; then |
1025 |
|
|
%{_sbindir}/update-alternatives --set winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so |
1026 |
|
|
fi |
1027 |
|
|
fi |
1028 |
|
|
|
1029 |
|
|
%post winbind-krb5-locator |
1030 |
|
|
%{_sbindir}/update-alternatives --install %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so \ |
1031 |
|
|
winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so 10 |
1032 |
|
|
|
1033 |
|
|
%preun winbind-krb5-locator |
1034 |
|
|
if [ $1 -eq 0 ]; then |
1035 |
|
|
%{_sbindir}/update-alternatives --remove winbind_krb5_locator.so %{_libdir}/winbind_krb5_locator.so |
1036 |
|
|
fi |
1037 |
|
|
|
1038 |
|
|
%post winbind-modules -p /sbin/ldconfig |
1039 |
|
|
|
1040 |
|
|
%postun winbind-modules -p /sbin/ldconfig |
1041 |
|
|
|
1042 |
|
|
%if %with_clustering_support |
1043 |
|
|
%post -n ctdb |
1044 |
unnilennium |
1.3 |
/usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/ctdb.conf |
1045 |
vip-ire |
1.1 |
%systemd_post ctdb.service |
1046 |
|
|
|
1047 |
|
|
%preun -n ctdb |
1048 |
|
|
%systemd_preun ctdb.service |
1049 |
|
|
|
1050 |
|
|
%postun -n ctdb |
1051 |
|
|
%systemd_postun_with_restart ctdb.service |
1052 |
|
|
%endif |
1053 |
|
|
|
1054 |
|
|
|
1055 |
|
|
%clean |
1056 |
|
|
rm -rf %{buildroot} |
1057 |
|
|
|
1058 |
|
|
### SAMBA |
1059 |
|
|
%files |
1060 |
|
|
%defattr(-,root,root,-) |
1061 |
jpp |
1.9 |
%license COPYING |
1062 |
|
|
%doc README WHATSNEW.txt |
1063 |
vip-ire |
1.1 |
%doc examples/autofs examples/LDAP examples/misc |
1064 |
|
|
%doc examples/printer-accounting examples/printing |
1065 |
|
|
%doc packaging/README.downgrade |
1066 |
|
|
%{_bindir}/smbstatus |
1067 |
|
|
%{_bindir}/eventlogadm |
1068 |
|
|
%{_sbindir}/nmbd |
1069 |
|
|
%{_sbindir}/smbd |
1070 |
|
|
%dir %{_libdir}/samba/auth |
1071 |
|
|
%{_libdir}/samba/auth/script.so |
1072 |
|
|
%{_libdir}/samba/auth/unix.so |
1073 |
|
|
%{_libdir}/samba/auth/wbc.so |
1074 |
|
|
%dir %{_libdir}/samba/vfs |
1075 |
|
|
%{_libdir}/samba/vfs/acl_tdb.so |
1076 |
|
|
%{_libdir}/samba/vfs/acl_xattr.so |
1077 |
|
|
%{_libdir}/samba/vfs/aio_fork.so |
1078 |
|
|
%{_libdir}/samba/vfs/aio_linux.so |
1079 |
|
|
%{_libdir}/samba/vfs/aio_pthread.so |
1080 |
|
|
%{_libdir}/samba/vfs/audit.so |
1081 |
|
|
%{_libdir}/samba/vfs/btrfs.so |
1082 |
|
|
%{_libdir}/samba/vfs/cap.so |
1083 |
|
|
%{_libdir}/samba/vfs/catia.so |
1084 |
|
|
%{_libdir}/samba/vfs/commit.so |
1085 |
|
|
%{_libdir}/samba/vfs/crossrename.so |
1086 |
|
|
%{_libdir}/samba/vfs/default_quota.so |
1087 |
|
|
%{_libdir}/samba/vfs/dirsort.so |
1088 |
|
|
%{_libdir}/samba/vfs/expand_msdfs.so |
1089 |
|
|
%{_libdir}/samba/vfs/extd_audit.so |
1090 |
|
|
%{_libdir}/samba/vfs/fake_perms.so |
1091 |
|
|
%{_libdir}/samba/vfs/fileid.so |
1092 |
|
|
%{_libdir}/samba/vfs/fruit.so |
1093 |
|
|
%{_libdir}/samba/vfs/full_audit.so |
1094 |
|
|
%{_libdir}/samba/vfs/linux_xfs_sgid.so |
1095 |
|
|
%{_libdir}/samba/vfs/media_harmony.so |
1096 |
|
|
%{_libdir}/samba/vfs/netatalk.so |
1097 |
unnilennium |
1.3 |
%{_libdir}/samba/vfs/offline.so |
1098 |
vip-ire |
1.1 |
%{_libdir}/samba/vfs/preopen.so |
1099 |
|
|
%{_libdir}/samba/vfs/readahead.so |
1100 |
|
|
%{_libdir}/samba/vfs/readonly.so |
1101 |
|
|
%{_libdir}/samba/vfs/recycle.so |
1102 |
|
|
%{_libdir}/samba/vfs/shadow_copy.so |
1103 |
|
|
%{_libdir}/samba/vfs/shadow_copy2.so |
1104 |
unnilennium |
1.3 |
%{_libdir}/samba/vfs/shell_snap.so |
1105 |
vip-ire |
1.1 |
%{_libdir}/samba/vfs/snapper.so |
1106 |
|
|
%{_libdir}/samba/vfs/streams_depot.so |
1107 |
|
|
%{_libdir}/samba/vfs/streams_xattr.so |
1108 |
|
|
%{_libdir}/samba/vfs/syncops.so |
1109 |
|
|
%{_libdir}/samba/vfs/time_audit.so |
1110 |
unnilennium |
1.3 |
%{_libdir}/samba/vfs/unityed_media.so |
1111 |
vip-ire |
1.1 |
%{_libdir}/samba/vfs/worm.so |
1112 |
|
|
%{_libdir}/samba/vfs/xattr_tdb.so |
1113 |
|
|
|
1114 |
|
|
%{_unitdir}/nmb.service |
1115 |
|
|
%{_unitdir}/smb.service |
1116 |
|
|
%attr(1777,root,root) %dir /var/spool/samba |
1117 |
|
|
%dir %{_sysconfdir}/openldap/schema |
1118 |
unnilennium |
1.3 |
%config %{_sysconfdir}/openldap/schema/samba.schema |
1119 |
|
|
%config(noreplace) %{_sysconfdir}/pam.d/samba |
1120 |
vip-ire |
1.1 |
%{_mandir}/man1/smbstatus.1* |
1121 |
|
|
%{_mandir}/man8/eventlogadm.8* |
1122 |
|
|
%{_mandir}/man8/smbd.8* |
1123 |
|
|
%{_mandir}/man8/nmbd.8* |
1124 |
|
|
%{_mandir}/man8/vfs_acl_tdb.8* |
1125 |
|
|
%{_mandir}/man8/vfs_acl_xattr.8* |
1126 |
|
|
%{_mandir}/man8/vfs_aio_fork.8* |
1127 |
|
|
%{_mandir}/man8/vfs_aio_linux.8* |
1128 |
|
|
%{_mandir}/man8/vfs_aio_pthread.8* |
1129 |
|
|
%{_mandir}/man8/vfs_audit.8* |
1130 |
|
|
%{_mandir}/man8/vfs_btrfs.8* |
1131 |
|
|
%{_mandir}/man8/vfs_cacheprime.8* |
1132 |
|
|
%{_mandir}/man8/vfs_cap.8* |
1133 |
|
|
%{_mandir}/man8/vfs_catia.8* |
1134 |
|
|
%{_mandir}/man8/vfs_commit.8* |
1135 |
|
|
%{_mandir}/man8/vfs_crossrename.8* |
1136 |
|
|
%{_mandir}/man8/vfs_default_quota.8* |
1137 |
|
|
%{_mandir}/man8/vfs_dirsort.8* |
1138 |
|
|
%{_mandir}/man8/vfs_extd_audit.8* |
1139 |
|
|
%{_mandir}/man8/vfs_fake_perms.8* |
1140 |
|
|
%{_mandir}/man8/vfs_fileid.8* |
1141 |
|
|
%{_mandir}/man8/vfs_fruit.8* |
1142 |
|
|
%{_mandir}/man8/vfs_full_audit.8* |
1143 |
|
|
%{_mandir}/man8/vfs_gpfs.8* |
1144 |
|
|
%{_mandir}/man8/vfs_linux_xfs_sgid.8* |
1145 |
|
|
%{_mandir}/man8/vfs_media_harmony.8* |
1146 |
|
|
%{_mandir}/man8/vfs_netatalk.8* |
1147 |
unnilennium |
1.3 |
%{_mandir}/man8/vfs_offline.8* |
1148 |
vip-ire |
1.1 |
%{_mandir}/man8/vfs_prealloc.8* |
1149 |
|
|
%{_mandir}/man8/vfs_preopen.8* |
1150 |
|
|
%{_mandir}/man8/vfs_readahead.8* |
1151 |
|
|
%{_mandir}/man8/vfs_readonly.8* |
1152 |
|
|
%{_mandir}/man8/vfs_recycle.8* |
1153 |
|
|
%{_mandir}/man8/vfs_shadow_copy.8* |
1154 |
|
|
%{_mandir}/man8/vfs_shadow_copy2.8* |
1155 |
unnilennium |
1.3 |
%{_mandir}/man8/vfs_shell_snap.8* |
1156 |
vip-ire |
1.1 |
%{_mandir}/man8/vfs_snapper.8* |
1157 |
|
|
%{_mandir}/man8/vfs_streams_depot.8* |
1158 |
|
|
%{_mandir}/man8/vfs_streams_xattr.8* |
1159 |
|
|
%{_mandir}/man8/vfs_syncops.8* |
1160 |
|
|
%{_mandir}/man8/vfs_time_audit.8* |
1161 |
|
|
%{_mandir}/man8/vfs_tsmsm.8* |
1162 |
unnilennium |
1.3 |
%{_mandir}/man8/vfs_unityed_media.8* |
1163 |
vip-ire |
1.1 |
%{_mandir}/man8/vfs_worm.8* |
1164 |
|
|
%{_mandir}/man8/vfs_xattr_tdb.8* |
1165 |
|
|
|
1166 |
|
|
%if ! %{with_vfs_glusterfs} |
1167 |
|
|
%exclude %{_mandir}/man8/vfs_glusterfs.8* |
1168 |
|
|
%endif |
1169 |
|
|
|
1170 |
|
|
%if ! %{with_vfs_cephfs} |
1171 |
|
|
%exclude %{_mandir}/man8/vfs_ceph.8* |
1172 |
|
|
%endif |
1173 |
|
|
|
1174 |
unnilennium |
1.3 |
%dir /var/lib/samba/drivers |
1175 |
|
|
%dir /var/lib/samba/lock |
1176 |
|
|
|
1177 |
vip-ire |
1.1 |
### CLIENT |
1178 |
|
|
%files client |
1179 |
|
|
%defattr(-,root,root) |
1180 |
|
|
%{_bindir}/cifsdd |
1181 |
|
|
%{_bindir}/dbwrap_tool |
1182 |
jpp |
1.9 |
%{_bindir}/findsmb |
1183 |
vip-ire |
1.1 |
%{_bindir}/nmblookup |
1184 |
|
|
%{_bindir}/oLschema2ldif |
1185 |
jpp |
1.9 |
%{_bindir}/mvxattr |
1186 |
vip-ire |
1.1 |
%{_bindir}/regdiff |
1187 |
|
|
%{_bindir}/regpatch |
1188 |
|
|
%{_bindir}/regshell |
1189 |
|
|
%{_bindir}/regtree |
1190 |
|
|
%{_bindir}/rpcclient |
1191 |
|
|
%{_bindir}/samba-regedit |
1192 |
|
|
%{_bindir}/sharesec |
1193 |
|
|
%{_bindir}/smbcacls |
1194 |
|
|
%{_bindir}/smbclient |
1195 |
|
|
%{_bindir}/smbcquotas |
1196 |
|
|
%{_bindir}/smbget |
1197 |
|
|
%{_bindir}/smbprint |
1198 |
|
|
%{_bindir}/smbspool |
1199 |
|
|
%{_bindir}/smbtar |
1200 |
|
|
%{_bindir}/smbtree |
1201 |
unnilennium |
1.3 |
%dir %{_libexecdir}/samba |
1202 |
|
|
%ghost %{_libexecdir}/samba/cups_backend_smb |
1203 |
vip-ire |
1.1 |
%{_mandir}/man1/dbwrap_tool.1* |
1204 |
|
|
%{_mandir}/man1/nmblookup.1* |
1205 |
|
|
%{_mandir}/man1/oLschema2ldif.1* |
1206 |
|
|
%{_mandir}/man1/regdiff.1* |
1207 |
|
|
%{_mandir}/man1/regpatch.1* |
1208 |
|
|
%{_mandir}/man1/regshell.1* |
1209 |
|
|
%{_mandir}/man1/regtree.1* |
1210 |
jpp |
1.9 |
%{_mandir}/man1/findsmb.1* |
1211 |
vip-ire |
1.1 |
%{_mandir}/man1/log2pcap.1* |
1212 |
jpp |
1.9 |
%{_mandir}/man1/mvxattr.1* |
1213 |
vip-ire |
1.1 |
%{_mandir}/man1/rpcclient.1* |
1214 |
|
|
%{_mandir}/man1/sharesec.1* |
1215 |
|
|
%{_mandir}/man1/smbcacls.1* |
1216 |
|
|
%{_mandir}/man1/smbclient.1* |
1217 |
|
|
%{_mandir}/man1/smbcquotas.1* |
1218 |
|
|
%{_mandir}/man1/smbget.1* |
1219 |
|
|
%{_mandir}/man5/smbgetrc.5* |
1220 |
|
|
%{_mandir}/man1/smbtar.1* |
1221 |
|
|
%{_mandir}/man1/smbtree.1* |
1222 |
unnilennium |
1.3 |
%{_mandir}/man8/cifsdd.8.* |
1223 |
vip-ire |
1.1 |
%{_mandir}/man8/samba-regedit.8* |
1224 |
|
|
%{_mandir}/man8/smbspool.8* |
1225 |
|
|
|
1226 |
|
|
%if %{with_internal_tdb} |
1227 |
|
|
%{_bindir}/tdbbackup |
1228 |
|
|
%{_bindir}/tdbdump |
1229 |
|
|
%{_bindir}/tdbrestore |
1230 |
|
|
%{_bindir}/tdbtool |
1231 |
|
|
%{_mandir}/man8/tdbbackup.8* |
1232 |
|
|
%{_mandir}/man8/tdbdump.8* |
1233 |
|
|
%{_mandir}/man8/tdbrestore.8* |
1234 |
|
|
%{_mandir}/man8/tdbtool.8* |
1235 |
|
|
%endif |
1236 |
|
|
|
1237 |
|
|
%if %with_internal_ldb |
1238 |
|
|
%{_bindir}/ldbadd |
1239 |
|
|
%{_bindir}/ldbdel |
1240 |
|
|
%{_bindir}/ldbedit |
1241 |
|
|
%{_bindir}/ldbmodify |
1242 |
|
|
%{_bindir}/ldbrename |
1243 |
|
|
%{_bindir}/ldbsearch |
1244 |
unnilennium |
1.3 |
%{_libdir}/samba/libldb-cmdline-samba4.so |
1245 |
vip-ire |
1.1 |
%{_libdir}/samba/ldb/asq.so |
1246 |
|
|
%{_libdir}/samba/ldb/paged_results.so |
1247 |
|
|
%{_libdir}/samba/ldb/paged_searches.so |
1248 |
|
|
%{_libdir}/samba/ldb/rdn_name.so |
1249 |
|
|
%{_libdir}/samba/ldb/sample.so |
1250 |
|
|
%{_libdir}/samba/ldb/server_sort.so |
1251 |
|
|
%{_libdir}/samba/ldb/skel.so |
1252 |
|
|
%{_libdir}/samba/ldb/tdb.so |
1253 |
|
|
%{_mandir}/man1/ldbadd.1.gz |
1254 |
|
|
%{_mandir}/man1/ldbdel.1.gz |
1255 |
|
|
%{_mandir}/man1/ldbedit.1.gz |
1256 |
|
|
%{_mandir}/man1/ldbmodify.1.gz |
1257 |
|
|
%{_mandir}/man1/ldbrename.1.gz |
1258 |
|
|
%{_mandir}/man1/ldbsearch.1.gz |
1259 |
|
|
%endif |
1260 |
|
|
|
1261 |
|
|
### CLIENT-LIBS |
1262 |
|
|
%files client-libs |
1263 |
|
|
%defattr(-,root,root) |
1264 |
|
|
%{_libdir}/libdcerpc-binding.so.* |
1265 |
|
|
%{_libdir}/libndr.so.* |
1266 |
|
|
%{_libdir}/libndr-krb5pac.so.* |
1267 |
|
|
%{_libdir}/libndr-nbt.so.* |
1268 |
|
|
%{_libdir}/libndr-standard.so.* |
1269 |
|
|
%{_libdir}/libnetapi.so.* |
1270 |
|
|
%{_libdir}/libsamba-credentials.so.* |
1271 |
unnilennium |
1.3 |
%{_libdir}/libsamba-errors.so.* |
1272 |
vip-ire |
1.1 |
%{_libdir}/libsamba-passdb.so.* |
1273 |
|
|
%{_libdir}/libsamba-util.so.* |
1274 |
|
|
%{_libdir}/libsamba-hostconfig.so.* |
1275 |
|
|
%{_libdir}/libsamdb.so.* |
1276 |
|
|
%{_libdir}/libsmbconf.so.* |
1277 |
|
|
%{_libdir}/libsmbldap.so.* |
1278 |
|
|
%{_libdir}/libtevent-util.so.* |
1279 |
|
|
%{_libdir}/libdcerpc.so.* |
1280 |
|
|
|
1281 |
|
|
%dir %{_libdir}/samba |
1282 |
|
|
%{_libdir}/samba/libCHARSET3-samba4.so |
1283 |
|
|
%{_libdir}/samba/libaddns-samba4.so |
1284 |
|
|
%{_libdir}/samba/libads-samba4.so |
1285 |
|
|
%{_libdir}/samba/libasn1util-samba4.so |
1286 |
|
|
%{_libdir}/samba/libauth-sam-reply-samba4.so |
1287 |
|
|
%{_libdir}/samba/libauth-samba4.so |
1288 |
|
|
%{_libdir}/samba/libauthkrb5-samba4.so |
1289 |
|
|
%{_libdir}/samba/libcli-cldap-samba4.so |
1290 |
|
|
%{_libdir}/samba/libcli-ldap-common-samba4.so |
1291 |
|
|
%{_libdir}/samba/libcli-ldap-samba4.so |
1292 |
|
|
%{_libdir}/samba/libcli-nbt-samba4.so |
1293 |
|
|
%{_libdir}/samba/libcli-smb-common-samba4.so |
1294 |
|
|
%{_libdir}/samba/libcli-spoolss-samba4.so |
1295 |
|
|
%{_libdir}/samba/libcliauth-samba4.so |
1296 |
|
|
%{_libdir}/samba/libcmdline-credentials-samba4.so |
1297 |
|
|
%{_libdir}/samba/libdbwrap-samba4.so |
1298 |
|
|
%{_libdir}/samba/libdcerpc-samba-samba4.so |
1299 |
jpp |
1.9 |
%{_libdir}/samba/libdsdb-garbage-collect-tombstones-samba4.so |
1300 |
vip-ire |
1.1 |
%{_libdir}/samba/libevents-samba4.so |
1301 |
|
|
%{_libdir}/samba/libflag-mapping-samba4.so |
1302 |
unnilennium |
1.3 |
%{_libdir}/samba/libgenrand-samba4.so |
1303 |
|
|
%{_libdir}/samba/libgensec-samba4.so |
1304 |
vip-ire |
1.1 |
%{_libdir}/samba/libgpo-samba4.so |
1305 |
|
|
%{_libdir}/samba/libgse-samba4.so |
1306 |
|
|
%{_libdir}/samba/libhttp-samba4.so |
1307 |
|
|
%{_libdir}/samba/libinterfaces-samba4.so |
1308 |
unnilennium |
1.3 |
%{_libdir}/samba/libiov-buf-samba4.so |
1309 |
vip-ire |
1.1 |
%{_libdir}/samba/libkrb5samba-samba4.so |
1310 |
|
|
%{_libdir}/samba/libldbsamba-samba4.so |
1311 |
|
|
%{_libdir}/samba/liblibcli-lsa3-samba4.so |
1312 |
|
|
%{_libdir}/samba/liblibcli-netlogon3-samba4.so |
1313 |
|
|
%{_libdir}/samba/liblibsmb-samba4.so |
1314 |
unnilennium |
1.3 |
%{_libdir}/samba/libmessages-dgm-samba4.so |
1315 |
|
|
%{_libdir}/samba/libmessages-util-samba4.so |
1316 |
|
|
%{_libdir}/samba/libmsghdr-samba4.so |
1317 |
vip-ire |
1.1 |
%{_libdir}/samba/libmsrpc3-samba4.so |
1318 |
|
|
%{_libdir}/samba/libndr-samba-samba4.so |
1319 |
|
|
%{_libdir}/samba/libndr-samba4.so |
1320 |
|
|
%{_libdir}/samba/libnet-keytab-samba4.so |
1321 |
|
|
%{_libdir}/samba/libnetif-samba4.so |
1322 |
|
|
%{_libdir}/samba/libnpa-tstream-samba4.so |
1323 |
jpp |
1.9 |
%{_libdir}/samba/libposix-eadb-samba4.so |
1324 |
vip-ire |
1.1 |
%{_libdir}/samba/libprinting-migrate-samba4.so |
1325 |
|
|
%{_libdir}/samba/libreplace-samba4.so |
1326 |
unnilennium |
1.3 |
%{_libdir}/samba/libregistry-samba4.so |
1327 |
vip-ire |
1.1 |
%{_libdir}/samba/libsamba-cluster-support-samba4.so |
1328 |
|
|
%{_libdir}/samba/libsamba-debug-samba4.so |
1329 |
|
|
%{_libdir}/samba/libsamba-modules-samba4.so |
1330 |
|
|
%{_libdir}/samba/libsamba-security-samba4.so |
1331 |
|
|
%{_libdir}/samba/libsamba-sockets-samba4.so |
1332 |
|
|
%{_libdir}/samba/libsamba3-util-samba4.so |
1333 |
|
|
%{_libdir}/samba/libsamdb-common-samba4.so |
1334 |
|
|
%{_libdir}/samba/libsecrets3-samba4.so |
1335 |
unnilennium |
1.3 |
%{_libdir}/samba/libserver-id-db-samba4.so |
1336 |
vip-ire |
1.1 |
%{_libdir}/samba/libserver-role-samba4.so |
1337 |
|
|
%{_libdir}/samba/libsmb-transport-samba4.so |
1338 |
unnilennium |
1.3 |
%{_libdir}/samba/libsmbclient-raw-samba4.so |
1339 |
vip-ire |
1.1 |
%{_libdir}/samba/libsmbd-base-samba4.so |
1340 |
|
|
%{_libdir}/samba/libsmbd-conn-samba4.so |
1341 |
|
|
%{_libdir}/samba/libsmbd-shim-samba4.so |
1342 |
|
|
%{_libdir}/samba/libsmbldaphelper-samba4.so |
1343 |
unnilennium |
1.3 |
%{_libdir}/samba/libsys-rw-samba4.so |
1344 |
vip-ire |
1.1 |
%{_libdir}/samba/libsocket-blocking-samba4.so |
1345 |
unnilennium |
1.3 |
%{_libdir}/samba/libtalloc-report-samba4.so |
1346 |
vip-ire |
1.1 |
%{_libdir}/samba/libtdb-wrap-samba4.so |
1347 |
unnilennium |
1.3 |
%{_libdir}/samba/libtime-basic-samba4.so |
1348 |
|
|
%{_libdir}/samba/libtorture-samba4.so |
1349 |
vip-ire |
1.1 |
%{_libdir}/samba/libtrusts-util-samba4.so |
1350 |
|
|
%{_libdir}/samba/libutil-cmdline-samba4.so |
1351 |
|
|
%{_libdir}/samba/libutil-reg-samba4.so |
1352 |
|
|
%{_libdir}/samba/libutil-setid-samba4.so |
1353 |
|
|
%{_libdir}/samba/libutil-tdb-samba4.so |
1354 |
|
|
|
1355 |
|
|
%if ! %with_libwbclient |
1356 |
|
|
%{_libdir}/samba/libwbclient.so.* |
1357 |
|
|
%{_libdir}/samba/libwinbind-client-samba4.so |
1358 |
|
|
%endif # ! with_libwbclient |
1359 |
|
|
|
1360 |
|
|
%if ! %with_libsmbclient |
1361 |
|
|
%{_libdir}/samba/libsmbclient.so.* |
1362 |
|
|
%{_mandir}/man7/libsmbclient.7* |
1363 |
|
|
%endif # ! with_libsmbclient |
1364 |
|
|
|
1365 |
|
|
%if %{with_internal_talloc} |
1366 |
|
|
%{_libdir}/samba/libtalloc.so.2 |
1367 |
|
|
%{_libdir}/samba/libtalloc.so.%{talloc_version} |
1368 |
|
|
%{_libdir}/samba/libpytalloc-util.so.2 |
1369 |
|
|
%{_libdir}/samba/libpytalloc-util.so.%{talloc_version} |
1370 |
|
|
%{_mandir}/man3/talloc.3.gz |
1371 |
|
|
%endif |
1372 |
|
|
|
1373 |
|
|
%if %{with_internal_tevent} |
1374 |
|
|
%{_libdir}/samba/libtevent.so.0 |
1375 |
|
|
%{_libdir}/samba/libtevent.so.%{tevent_version} |
1376 |
|
|
%endif |
1377 |
|
|
|
1378 |
|
|
%if %{with_internal_tdb} |
1379 |
|
|
%{_libdir}/samba/libtdb.so.1 |
1380 |
|
|
%{_libdir}/samba/libtdb.so.%{tdb_version} |
1381 |
|
|
%endif |
1382 |
|
|
|
1383 |
|
|
%if %{with_internal_ldb} |
1384 |
|
|
%{_libdir}/samba/libldb.so.1 |
1385 |
|
|
%{_libdir}/samba/libldb.so.%{ldb_version} |
1386 |
unnilennium |
1.3 |
%{_libdir}/samba/libpyldb-util.so.1 |
1387 |
|
|
%{_libdir}/samba/libpyldb-util.so.%{ldb_version} |
1388 |
vip-ire |
1.1 |
%{_mandir}/man3/ldb.3.gz |
1389 |
|
|
%endif |
1390 |
|
|
|
1391 |
|
|
### COMMON |
1392 |
|
|
%files common |
1393 |
|
|
%defattr(-,root,root) |
1394 |
unnilennium |
1.3 |
%{_tmpfilesdir}/samba.conf |
1395 |
vip-ire |
1.1 |
%dir %{_sysconfdir}/logrotate.d/ |
1396 |
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/samba |
1397 |
|
|
%attr(0700,root,root) %dir /var/log/samba |
1398 |
|
|
%attr(0700,root,root) %dir /var/log/samba/old |
1399 |
|
|
%ghost %dir /var/run/samba |
1400 |
|
|
%ghost %dir /var/run/winbindd |
1401 |
unnilennium |
1.3 |
%dir /var/lib/samba |
1402 |
vip-ire |
1.1 |
%attr(700,root,root) %dir /var/lib/samba/private |
1403 |
|
|
%attr(755,root,root) %dir %{_sysconfdir}/samba |
1404 |
|
|
%config(noreplace) %{_sysconfdir}/samba/smb.conf |
1405 |
unnilennium |
1.3 |
%{_sysconfdir}/samba/smb.conf.example |
1406 |
vip-ire |
1.1 |
%config(noreplace) %{_sysconfdir}/samba/lmhosts |
1407 |
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/samba |
1408 |
|
|
%{_mandir}/man5/lmhosts.5* |
1409 |
|
|
%{_mandir}/man5/smb.conf.5* |
1410 |
|
|
%{_mandir}/man5/smbpasswd.5* |
1411 |
|
|
%{_mandir}/man7/samba.7* |
1412 |
|
|
|
1413 |
|
|
### COMMON-libs |
1414 |
|
|
%files common-libs |
1415 |
|
|
%defattr(-,root,root) |
1416 |
|
|
# common libraries |
1417 |
|
|
%{_libdir}/samba/libpopt-samba3-samba4.so |
1418 |
|
|
|
1419 |
unnilennium |
1.3 |
%dir %{_libdir}/samba/ldb |
1420 |
|
|
|
1421 |
vip-ire |
1.1 |
%dir %{_libdir}/samba/pdb |
1422 |
|
|
%{_libdir}/samba/pdb/ldapsam.so |
1423 |
|
|
%{_libdir}/samba/pdb/smbpasswd.so |
1424 |
|
|
%{_libdir}/samba/pdb/tdbsam.so |
1425 |
|
|
%{_libdir}/samba/pdb/wbc_sam.so |
1426 |
|
|
|
1427 |
|
|
%files common-tools |
1428 |
|
|
%defattr(-,root,root) |
1429 |
|
|
%{_bindir}/net |
1430 |
|
|
%{_bindir}/pdbedit |
1431 |
|
|
%{_bindir}/profiles |
1432 |
|
|
%{_bindir}/smbcontrol |
1433 |
|
|
%{_bindir}/smbpasswd |
1434 |
|
|
%{_bindir}/testparm |
1435 |
|
|
%{_mandir}/man1/profiles.1* |
1436 |
|
|
%{_mandir}/man1/smbcontrol.1* |
1437 |
|
|
%{_mandir}/man1/testparm.1* |
1438 |
|
|
%{_mandir}/man8/net.8* |
1439 |
|
|
%{_mandir}/man8/pdbedit.8* |
1440 |
|
|
%{_mandir}/man8/smbpasswd.8* |
1441 |
|
|
|
1442 |
|
|
### DC |
1443 |
|
|
%files dc |
1444 |
|
|
%defattr(-,root,root) |
1445 |
|
|
|
1446 |
|
|
%if %with_dc |
1447 |
|
|
%{_bindir}/samba-tool |
1448 |
|
|
%{_sbindir}/samba |
1449 |
|
|
%{_sbindir}/samba_kcc |
1450 |
|
|
%{_sbindir}/samba_dnsupdate |
1451 |
|
|
%{_sbindir}/samba_spnupdate |
1452 |
|
|
%{_sbindir}/samba_upgradedns |
1453 |
|
|
%{_libdir}/samba/auth/samba4.so |
1454 |
|
|
%{_libdir}/samba/bind9/dlz_bind9.so |
1455 |
|
|
%{_libdir}/samba/bind9/dlz_bind9_10.so |
1456 |
|
|
%{_libdir}/samba/libheimntlm-samba4.so.1 |
1457 |
|
|
%{_libdir}/samba/libheimntlm-samba4.so.1.0.1 |
1458 |
|
|
%{_libdir}/samba/libkdc-samba4.so.2 |
1459 |
|
|
%{_libdir}/samba/libkdc-samba4.so.2.0.0 |
1460 |
|
|
%{_libdir}/samba/libpac-samba4.so |
1461 |
|
|
%dir %{_libdir}/samba/gensec |
1462 |
|
|
%{_libdir}/samba/gensec/krb5.so |
1463 |
|
|
%{_libdir}/samba/ldb/acl.so |
1464 |
|
|
%{_libdir}/samba/ldb/aclread.so |
1465 |
|
|
%{_libdir}/samba/ldb/anr.so |
1466 |
|
|
%{_libdir}/samba/ldb/descriptor.so |
1467 |
|
|
%{_libdir}/samba/ldb/dirsync.so |
1468 |
unnilennium |
1.3 |
%{_libdir}/samba/ldb/dns_notify.so |
1469 |
vip-ire |
1.1 |
%{_libdir}/samba/ldb/extended_dn_in.so |
1470 |
|
|
%{_libdir}/samba/ldb/extended_dn_out.so |
1471 |
|
|
%{_libdir}/samba/ldb/extended_dn_store.so |
1472 |
|
|
%{_libdir}/samba/ldb/ildap.so |
1473 |
|
|
%{_libdir}/samba/ldb/instancetype.so |
1474 |
|
|
%{_libdir}/samba/ldb/lazy_commit.so |
1475 |
|
|
%{_libdir}/samba/ldb/ldbsamba_extensions.so |
1476 |
|
|
%{_libdir}/samba/ldb/linked_attributes.so |
1477 |
|
|
%{_libdir}/samba/ldb/local_password.so |
1478 |
|
|
%{_libdir}/samba/ldb/new_partition.so |
1479 |
|
|
%{_libdir}/samba/ldb/objectclass.so |
1480 |
|
|
%{_libdir}/samba/ldb/objectclass_attrs.so |
1481 |
|
|
%{_libdir}/samba/ldb/objectguid.so |
1482 |
|
|
%{_libdir}/samba/ldb/operational.so |
1483 |
|
|
%{_libdir}/samba/ldb/partition.so |
1484 |
|
|
%{_libdir}/samba/ldb/password_hash.so |
1485 |
|
|
%{_libdir}/samba/ldb/ranged_results.so |
1486 |
|
|
%{_libdir}/samba/ldb/repl_meta_data.so |
1487 |
jpp |
1.10 |
%{_unitdir}/samba.service |
1488 |
vip-ire |
1.1 |
%{_libdir}/samba/ldb/resolve_oids.so |
1489 |
|
|
%{_libdir}/samba/ldb/rootdse.so |
1490 |
|
|
%{_libdir}/samba/ldb/samba3sam.so |
1491 |
|
|
%{_libdir}/samba/ldb/samba3sid.so |
1492 |
|
|
%{_libdir}/samba/ldb/samba_dsdb.so |
1493 |
|
|
%{_libdir}/samba/ldb/samba_secrets.so |
1494 |
|
|
%{_libdir}/samba/ldb/samldb.so |
1495 |
|
|
%{_libdir}/samba/ldb/schema_data.so |
1496 |
|
|
%{_libdir}/samba/ldb/schema_load.so |
1497 |
|
|
%{_libdir}/samba/ldb/secrets_tdb_sync.so |
1498 |
|
|
%{_libdir}/samba/ldb/show_deleted.so |
1499 |
|
|
%{_libdir}/samba/ldb/simple_dn.so |
1500 |
|
|
%{_libdir}/samba/ldb/simple_ldap_map.so |
1501 |
|
|
%{_libdir}/samba/ldb/subtree_delete.so |
1502 |
|
|
%{_libdir}/samba/ldb/subtree_rename.so |
1503 |
unnilennium |
1.3 |
%{_libdir}/samba/ldb/tombstone_reanimate.so |
1504 |
vip-ire |
1.1 |
%{_libdir}/samba/ldb/update_keytab.so |
1505 |
|
|
%{_libdir}/samba/ldb/wins_ldb.so |
1506 |
|
|
%{_libdir}/samba/vfs/posix_eadb.so |
1507 |
|
|
%dir /var/lib/samba/sysvol |
1508 |
|
|
%{_datadir}/samba/setup |
1509 |
|
|
%{_mandir}/man8/samba.8* |
1510 |
|
|
%{_mandir}/man8/samba-tool.8* |
1511 |
|
|
%else # with_dc |
1512 |
|
|
%doc packaging/README.dc |
1513 |
|
|
%endif # with_dc |
1514 |
|
|
|
1515 |
|
|
### DC-LIBS |
1516 |
|
|
%files dc-libs |
1517 |
|
|
%defattr(-,root,root) |
1518 |
|
|
%if %with_dc |
1519 |
|
|
%{_libdir}/samba/libprocess-model-samba4.so |
1520 |
|
|
%{_libdir}/samba/libservice-samba4.so |
1521 |
|
|
%dir %{_libdir}/samba/process_model |
1522 |
|
|
%{_libdir}/samba/process_model/standard.so |
1523 |
|
|
%dir %{_libdir}/samba/service |
1524 |
|
|
%{_libdir}/samba/service/cldap.so |
1525 |
|
|
%{_libdir}/samba/service/dcerpc.so |
1526 |
|
|
%{_libdir}/samba/service/dns.so |
1527 |
|
|
%{_libdir}/samba/service/dns_update.so |
1528 |
|
|
%{_libdir}/samba/service/drepl.so |
1529 |
|
|
%{_libdir}/samba/service/kcc.so |
1530 |
|
|
%{_libdir}/samba/service/kdc.so |
1531 |
|
|
%{_libdir}/samba/service/ldap.so |
1532 |
|
|
%{_libdir}/samba/service/nbtd.so |
1533 |
|
|
%{_libdir}/samba/service/ntp_signd.so |
1534 |
|
|
%{_libdir}/samba/service/s3fs.so |
1535 |
|
|
%{_libdir}/samba/service/web.so |
1536 |
|
|
%{_libdir}/samba/service/winbindd.so |
1537 |
|
|
%{_libdir}/samba/service/wrepl.so |
1538 |
|
|
%{_libdir}/libdcerpc-server.so.* |
1539 |
|
|
%{_libdir}/samba/libdfs-server-ad-samba4.so |
1540 |
|
|
%{_libdir}/samba/libdnsserver-common-samba4.so |
1541 |
|
|
%{_libdir}/samba/libdsdb-module-samba4.so |
1542 |
|
|
%{_libdir}/samba/libntvfs-samba4.so |
1543 |
|
|
%{_libdir}/samba/bind9/dlz_bind9_9.so |
1544 |
|
|
%else |
1545 |
|
|
%doc packaging/README.dc-libs |
1546 |
|
|
%endif # with_dc |
1547 |
|
|
|
1548 |
|
|
### DEVEL |
1549 |
|
|
%files devel |
1550 |
|
|
%defattr(-,root,root) |
1551 |
|
|
%{_includedir}/samba-4.0/charset.h |
1552 |
|
|
%{_includedir}/samba-4.0/core/doserr.h |
1553 |
|
|
%{_includedir}/samba-4.0/core/error.h |
1554 |
|
|
%{_includedir}/samba-4.0/core/hresult.h |
1555 |
|
|
%{_includedir}/samba-4.0/core/ntstatus.h |
1556 |
|
|
%{_includedir}/samba-4.0/core/werror.h |
1557 |
|
|
%{_includedir}/samba-4.0/credentials.h |
1558 |
|
|
%{_includedir}/samba-4.0/dcerpc.h |
1559 |
|
|
%{_includedir}/samba-4.0/domain_credentials.h |
1560 |
|
|
%{_includedir}/samba-4.0/gen_ndr/atsvc.h |
1561 |
|
|
%{_includedir}/samba-4.0/gen_ndr/auth.h |
1562 |
|
|
%{_includedir}/samba-4.0/gen_ndr/dcerpc.h |
1563 |
|
|
%{_includedir}/samba-4.0/gen_ndr/krb5pac.h |
1564 |
|
|
%{_includedir}/samba-4.0/gen_ndr/lsa.h |
1565 |
|
|
%{_includedir}/samba-4.0/gen_ndr/misc.h |
1566 |
|
|
%{_includedir}/samba-4.0/gen_ndr/nbt.h |
1567 |
|
|
%{_includedir}/samba-4.0/gen_ndr/drsblobs.h |
1568 |
|
|
%{_includedir}/samba-4.0/gen_ndr/drsuapi.h |
1569 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_drsblobs.h |
1570 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_drsuapi.h |
1571 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_atsvc.h |
1572 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_dcerpc.h |
1573 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_krb5pac.h |
1574 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_misc.h |
1575 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_nbt.h |
1576 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_samr.h |
1577 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_samr_c.h |
1578 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_svcctl.h |
1579 |
|
|
%{_includedir}/samba-4.0/gen_ndr/ndr_svcctl_c.h |
1580 |
|
|
%{_includedir}/samba-4.0/gen_ndr/netlogon.h |
1581 |
|
|
%{_includedir}/samba-4.0/gen_ndr/samr.h |
1582 |
|
|
%{_includedir}/samba-4.0/gen_ndr/security.h |
1583 |
|
|
%{_includedir}/samba-4.0/gen_ndr/server_id.h |
1584 |
|
|
%{_includedir}/samba-4.0/gen_ndr/svcctl.h |
1585 |
|
|
%{_includedir}/samba-4.0/ldb_wrap.h |
1586 |
|
|
%{_includedir}/samba-4.0/lookup_sid.h |
1587 |
|
|
%{_includedir}/samba-4.0/machine_sid.h |
1588 |
|
|
%{_includedir}/samba-4.0/ndr.h |
1589 |
|
|
%dir %{_includedir}/samba-4.0/ndr |
1590 |
|
|
%{_includedir}/samba-4.0/ndr/ndr_dcerpc.h |
1591 |
|
|
%{_includedir}/samba-4.0/ndr/ndr_drsblobs.h |
1592 |
|
|
%{_includedir}/samba-4.0/ndr/ndr_drsuapi.h |
1593 |
jpp |
1.9 |
%{_includedir}/samba-4.0/ndr/ndr_krb5pac.h |
1594 |
vip-ire |
1.1 |
%{_includedir}/samba-4.0/ndr/ndr_svcctl.h |
1595 |
|
|
%{_includedir}/samba-4.0/ndr/ndr_nbt.h |
1596 |
|
|
%{_includedir}/samba-4.0/netapi.h |
1597 |
|
|
%{_includedir}/samba-4.0/param.h |
1598 |
|
|
%{_includedir}/samba-4.0/passdb.h |
1599 |
|
|
%{_includedir}/samba-4.0/policy.h |
1600 |
|
|
%{_includedir}/samba-4.0/rpc_common.h |
1601 |
|
|
%{_includedir}/samba-4.0/samba/session.h |
1602 |
|
|
%{_includedir}/samba-4.0/samba/version.h |
1603 |
|
|
%{_includedir}/samba-4.0/share.h |
1604 |
|
|
%{_includedir}/samba-4.0/smb2_lease_struct.h |
1605 |
|
|
%{_includedir}/samba-4.0/smbconf.h |
1606 |
|
|
%{_includedir}/samba-4.0/smb_ldap.h |
1607 |
|
|
%{_includedir}/samba-4.0/smbldap.h |
1608 |
|
|
%{_includedir}/samba-4.0/tdr.h |
1609 |
|
|
%{_includedir}/samba-4.0/tsocket.h |
1610 |
|
|
%{_includedir}/samba-4.0/tsocket_internal.h |
1611 |
|
|
%dir %{_includedir}/samba-4.0/util |
1612 |
|
|
%{_includedir}/samba-4.0/util/attr.h |
1613 |
|
|
%{_includedir}/samba-4.0/util/blocking.h |
1614 |
|
|
%{_includedir}/samba-4.0/util/byteorder.h |
1615 |
|
|
%{_includedir}/samba-4.0/util/data_blob.h |
1616 |
|
|
%{_includedir}/samba-4.0/util/debug.h |
1617 |
|
|
%{_includedir}/samba-4.0/util/fault.h |
1618 |
unnilennium |
1.3 |
%{_includedir}/samba-4.0/util/genrand.h |
1619 |
vip-ire |
1.1 |
%{_includedir}/samba-4.0/util/idtree.h |
1620 |
|
|
%{_includedir}/samba-4.0/util/idtree_random.h |
1621 |
|
|
%{_includedir}/samba-4.0/util/memory.h |
1622 |
|
|
%{_includedir}/samba-4.0/util/safe_string.h |
1623 |
|
|
%{_includedir}/samba-4.0/util/signal.h |
1624 |
|
|
%{_includedir}/samba-4.0/util/string_wrappers.h |
1625 |
|
|
%{_includedir}/samba-4.0/util/substitute.h |
1626 |
|
|
%{_includedir}/samba-4.0/util/talloc_stack.h |
1627 |
|
|
%{_includedir}/samba-4.0/util/tevent_ntstatus.h |
1628 |
|
|
%{_includedir}/samba-4.0/util/tevent_unix.h |
1629 |
|
|
%{_includedir}/samba-4.0/util/tevent_werror.h |
1630 |
|
|
%{_includedir}/samba-4.0/util/time.h |
1631 |
|
|
%{_includedir}/samba-4.0/util_ldb.h |
1632 |
|
|
%{_libdir}/libdcerpc-binding.so |
1633 |
|
|
%{_libdir}/libdcerpc-samr.so |
1634 |
|
|
%{_libdir}/libdcerpc.so |
1635 |
|
|
%{_libdir}/libndr-krb5pac.so |
1636 |
|
|
%{_libdir}/libndr-nbt.so |
1637 |
|
|
%{_libdir}/libndr-standard.so |
1638 |
|
|
%{_libdir}/libndr.so |
1639 |
|
|
%{_libdir}/libnetapi.so |
1640 |
|
|
%{_libdir}/libsamba-credentials.so |
1641 |
unnilennium |
1.3 |
%{_libdir}/libsamba-errors.so |
1642 |
vip-ire |
1.1 |
%{_libdir}/libsamba-hostconfig.so |
1643 |
|
|
%{_libdir}/libsamba-policy.so |
1644 |
|
|
%{_libdir}/libsamba-util.so |
1645 |
|
|
%{_libdir}/libsamdb.so |
1646 |
|
|
%{_libdir}/libsmbconf.so |
1647 |
|
|
%{_libdir}/libtevent-util.so |
1648 |
|
|
%{_libdir}/pkgconfig/dcerpc.pc |
1649 |
|
|
%{_libdir}/pkgconfig/dcerpc_samr.pc |
1650 |
|
|
%{_libdir}/pkgconfig/ndr.pc |
1651 |
|
|
%{_libdir}/pkgconfig/ndr_krb5pac.pc |
1652 |
|
|
%{_libdir}/pkgconfig/ndr_nbt.pc |
1653 |
|
|
%{_libdir}/pkgconfig/ndr_standard.pc |
1654 |
|
|
%{_libdir}/pkgconfig/netapi.pc |
1655 |
|
|
%{_libdir}/pkgconfig/samba-credentials.pc |
1656 |
|
|
%{_libdir}/pkgconfig/samba-hostconfig.pc |
1657 |
|
|
%{_libdir}/pkgconfig/samba-policy.pc |
1658 |
|
|
%{_libdir}/pkgconfig/samba-util.pc |
1659 |
|
|
%{_libdir}/pkgconfig/samdb.pc |
1660 |
|
|
%{_libdir}/libsamba-passdb.so |
1661 |
|
|
%{_libdir}/libsmbldap.so |
1662 |
|
|
|
1663 |
|
|
%if %with_dc |
1664 |
|
|
%{_includedir}/samba-4.0/dcerpc_server.h |
1665 |
|
|
%{_libdir}/libdcerpc-server.so |
1666 |
|
|
%{_libdir}/pkgconfig/dcerpc_server.pc |
1667 |
|
|
%endif |
1668 |
|
|
|
1669 |
|
|
%if ! %with_libsmbclient |
1670 |
|
|
%{_includedir}/samba-4.0/libsmbclient.h |
1671 |
|
|
%endif # ! with_libsmbclient |
1672 |
|
|
|
1673 |
|
|
%if ! %with_libwbclient |
1674 |
|
|
%{_includedir}/samba-4.0/wbclient.h |
1675 |
|
|
%endif # ! with_libwbclient |
1676 |
|
|
|
1677 |
|
|
### VFS-CEPHFS |
1678 |
|
|
%if %{with_vfs_cephfs} |
1679 |
|
|
%files vfs-cephfs |
1680 |
|
|
%{_libdir}/samba/vfs/ceph.so |
1681 |
|
|
%{_mandir}/man8/vfs_ceph.8* |
1682 |
|
|
%endif |
1683 |
|
|
|
1684 |
|
|
### VFS-GLUSTERFS |
1685 |
|
|
%if %{with_vfs_glusterfs} |
1686 |
|
|
%files vfs-glusterfs |
1687 |
|
|
%{_libdir}/samba/vfs/glusterfs.so |
1688 |
|
|
%{_mandir}/man8/vfs_glusterfs.8* |
1689 |
|
|
%endif |
1690 |
|
|
|
1691 |
unnilennium |
1.3 |
### KRB5-PRINTING |
1692 |
|
|
%files krb5-printing |
1693 |
|
|
%defattr(-,root,root) |
1694 |
|
|
%attr(0700,root,root) %{_libexecdir}/samba/smbspool_krb5_wrapper |
1695 |
|
|
%{_mandir}/man8/smbspool_krb5_wrapper.8* |
1696 |
|
|
|
1697 |
vip-ire |
1.1 |
### LIBS |
1698 |
|
|
%files libs |
1699 |
|
|
%defattr(-,root,root) |
1700 |
|
|
%{_libdir}/libdcerpc-samr.so.* |
1701 |
|
|
%{_libdir}/libsamba-policy.so.* |
1702 |
|
|
|
1703 |
|
|
# libraries needed by the public libraries |
1704 |
|
|
%{_libdir}/samba/libMESSAGING-samba4.so |
1705 |
|
|
%{_libdir}/samba/libLIBWBCLIENT-OLD-samba4.so |
1706 |
|
|
%{_libdir}/samba/libauth4-samba4.so |
1707 |
|
|
%{_libdir}/samba/libauth-unix-token-samba4.so |
1708 |
|
|
%{_libdir}/samba/libcluster-samba4.so |
1709 |
|
|
%{_libdir}/samba/libdcerpc-samba4.so |
1710 |
|
|
%{_libdir}/samba/libnon-posix-acls-samba4.so |
1711 |
|
|
%{_libdir}/samba/libsamba-net-samba4.so |
1712 |
|
|
%{_libdir}/samba/libsamba-python-samba4.so |
1713 |
|
|
%{_libdir}/samba/libshares-samba4.so |
1714 |
|
|
%{_libdir}/samba/libsmbpasswdparser-samba4.so |
1715 |
|
|
%{_libdir}/samba/libxattr-tdb-samba4.so |
1716 |
|
|
|
1717 |
|
|
%if %with_dc |
1718 |
|
|
%{_libdir}/samba/libdb-glue-samba4.so |
1719 |
|
|
%{_libdir}/samba/libHDB-SAMBA4-samba4.so |
1720 |
|
|
%{_libdir}/samba/libasn1-samba4.so.8 |
1721 |
|
|
%{_libdir}/samba/libasn1-samba4.so.8.0.0 |
1722 |
unnilennium |
1.3 |
%{_libdir}/samba/libcom_err-samba4.so.0 |
1723 |
|
|
%{_libdir}/samba/libcom_err-samba4.so.0.25 |
1724 |
vip-ire |
1.1 |
%{_libdir}/samba/libgssapi-samba4.so.2 |
1725 |
|
|
%{_libdir}/samba/libgssapi-samba4.so.2.0.0 |
1726 |
|
|
%{_libdir}/samba/libhcrypto-samba4.so.5 |
1727 |
|
|
%{_libdir}/samba/libhcrypto-samba4.so.5.0.1 |
1728 |
|
|
%{_libdir}/samba/libhdb-samba4.so.11 |
1729 |
|
|
%{_libdir}/samba/libhdb-samba4.so.11.0.2 |
1730 |
|
|
%{_libdir}/samba/libheimbase-samba4.so.1 |
1731 |
|
|
%{_libdir}/samba/libheimbase-samba4.so.1.0.0 |
1732 |
|
|
%{_libdir}/samba/libhx509-samba4.so.5 |
1733 |
|
|
%{_libdir}/samba/libhx509-samba4.so.5.0.0 |
1734 |
|
|
%{_libdir}/samba/libkrb5-samba4.so.26 |
1735 |
|
|
%{_libdir}/samba/libkrb5-samba4.so.26.0.0 |
1736 |
|
|
%{_libdir}/samba/libroken-samba4.so.19 |
1737 |
|
|
%{_libdir}/samba/libroken-samba4.so.19.0.1 |
1738 |
|
|
%{_libdir}/samba/libwind-samba4.so.0 |
1739 |
|
|
%{_libdir}/samba/libwind-samba4.so.0.0.0 |
1740 |
|
|
%endif |
1741 |
|
|
|
1742 |
|
|
### LIBSMBCLIENT |
1743 |
|
|
%if %with_libsmbclient |
1744 |
|
|
%files -n libsmbclient |
1745 |
|
|
%defattr(-,root,root) |
1746 |
|
|
%{_libdir}/libsmbclient.so.* |
1747 |
|
|
|
1748 |
|
|
### LIBSMBCLIENT-DEVEL |
1749 |
|
|
%files -n libsmbclient-devel |
1750 |
|
|
%defattr(-,root,root) |
1751 |
|
|
%{_includedir}/samba-4.0/libsmbclient.h |
1752 |
|
|
%{_libdir}/libsmbclient.so |
1753 |
|
|
%{_libdir}/pkgconfig/smbclient.pc |
1754 |
|
|
%{_mandir}/man7/libsmbclient.7* |
1755 |
|
|
%endif # with_libsmbclient |
1756 |
|
|
|
1757 |
|
|
### LIBWBCLIENT |
1758 |
|
|
%if %with_libwbclient |
1759 |
|
|
%files -n libwbclient |
1760 |
|
|
%defattr(-,root,root) |
1761 |
|
|
%{_libdir}/samba/wbclient/libwbclient.so.* |
1762 |
|
|
%{_libdir}/samba/libwinbind-client-samba4.so |
1763 |
|
|
|
1764 |
|
|
### LIBWBCLIENT-DEVEL |
1765 |
|
|
%files -n libwbclient-devel |
1766 |
|
|
%defattr(-,root,root) |
1767 |
|
|
%{_includedir}/samba-4.0/wbclient.h |
1768 |
|
|
%{_libdir}/samba/wbclient/libwbclient.so |
1769 |
|
|
%{_libdir}/pkgconfig/wbclient.pc |
1770 |
|
|
%endif # with_libwbclient |
1771 |
|
|
|
1772 |
|
|
### PIDL |
1773 |
|
|
%files pidl |
1774 |
|
|
%defattr(-,root,root,-) |
1775 |
|
|
%attr(755,root,root) %{_bindir}/pidl |
1776 |
|
|
%dir %{perl_vendorlib}/Parse |
1777 |
|
|
%{perl_vendorlib}/Parse/Pidl.pm |
1778 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl |
1779 |
|
|
%{perl_vendorlib}/Parse/Pidl/CUtil.pm |
1780 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4.pm |
1781 |
|
|
%{perl_vendorlib}/Parse/Pidl/Expr.pm |
1782 |
|
|
%{perl_vendorlib}/Parse/Pidl/ODL.pm |
1783 |
|
|
%{perl_vendorlib}/Parse/Pidl/Typelist.pm |
1784 |
|
|
%{perl_vendorlib}/Parse/Pidl/IDL.pm |
1785 |
|
|
%{perl_vendorlib}/Parse/Pidl/Compat.pm |
1786 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl/Wireshark |
1787 |
|
|
%{perl_vendorlib}/Parse/Pidl/Wireshark/Conformance.pm |
1788 |
|
|
%{perl_vendorlib}/Parse/Pidl/Wireshark/NDR.pm |
1789 |
|
|
%{perl_vendorlib}/Parse/Pidl/Dump.pm |
1790 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl/Samba3 |
1791 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba3/ServerNDR.pm |
1792 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba3/ClientNDR.pm |
1793 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl/Samba4 |
1794 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/Header.pm |
1795 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl/Samba4/COM |
1796 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/COM/Header.pm |
1797 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/COM/Proxy.pm |
1798 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/COM/Stub.pm |
1799 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/Python.pm |
1800 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/Template.pm |
1801 |
|
|
%dir %{perl_vendorlib}/Parse/Pidl/Samba4/NDR |
1802 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Server.pm |
1803 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Client.pm |
1804 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Parser.pm |
1805 |
|
|
%{perl_vendorlib}/Parse/Pidl/Samba4/TDR.pm |
1806 |
|
|
%{perl_vendorlib}/Parse/Pidl/NDR.pm |
1807 |
|
|
%{perl_vendorlib}/Parse/Pidl/Util.pm |
1808 |
|
|
%{_mandir}/man1/pidl* |
1809 |
|
|
%{_mandir}/man3/Parse::Pidl* |
1810 |
|
|
|
1811 |
|
|
### PYTHON |
1812 |
|
|
%files python |
1813 |
|
|
%defattr(-,root,root,-) |
1814 |
|
|
%{python_sitearch}/* |
1815 |
|
|
|
1816 |
|
|
### TEST |
1817 |
|
|
%files test |
1818 |
|
|
%defattr(-,root,root) |
1819 |
|
|
%{_bindir}/gentest |
1820 |
|
|
%{_bindir}/locktest |
1821 |
|
|
%{_bindir}/masktest |
1822 |
|
|
%{_bindir}/ndrdump |
1823 |
|
|
%{_bindir}/smbtorture |
1824 |
|
|
%{_mandir}/man1/gentest.1* |
1825 |
|
|
%{_mandir}/man1/locktest.1* |
1826 |
|
|
%{_mandir}/man1/masktest.1* |
1827 |
|
|
%{_mandir}/man1/ndrdump.1* |
1828 |
|
|
%{_mandir}/man1/smbtorture.1* |
1829 |
|
|
%{_mandir}/man1/vfstest.1* |
1830 |
|
|
|
1831 |
|
|
%if %{with testsuite} |
1832 |
|
|
# files to ignore in testsuite mode |
1833 |
|
|
%{_libdir}/samba/libnss-wrapper.so |
1834 |
|
|
%{_libdir}/samba/libsocket-wrapper.so |
1835 |
|
|
%{_libdir}/samba/libuid-wrapper.so |
1836 |
|
|
%endif |
1837 |
|
|
|
1838 |
|
|
### TEST-LIBS |
1839 |
|
|
%files test-libs |
1840 |
|
|
%defattr(-,root,root) |
1841 |
|
|
%if %with_dc |
1842 |
|
|
%{_libdir}/samba/libdlz-bind9-for-torture-samba4.so |
1843 |
|
|
%else |
1844 |
|
|
%{_libdir}/samba/libdsdb-module-samba4.so |
1845 |
|
|
%endif |
1846 |
|
|
|
1847 |
|
|
### WINBIND |
1848 |
|
|
%files winbind |
1849 |
|
|
%defattr(-,root,root) |
1850 |
|
|
%{_libdir}/samba/idmap |
1851 |
|
|
%{_libdir}/samba/nss_info |
1852 |
|
|
%{_libdir}/samba/libnss-info-samba4.so |
1853 |
|
|
%{_libdir}/samba/libidmap-samba4.so |
1854 |
|
|
%{_sbindir}/winbindd |
1855 |
|
|
%attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged |
1856 |
|
|
%{_unitdir}/winbind.service |
1857 |
|
|
%{_sysconfdir}/NetworkManager/dispatcher.d/30-winbind |
1858 |
|
|
%{_mandir}/man8/winbindd.8* |
1859 |
|
|
%{_mandir}/man8/idmap_*.8* |
1860 |
|
|
|
1861 |
|
|
### WINBIND-CLIENTS |
1862 |
|
|
%files winbind-clients |
1863 |
|
|
%defattr(-,root,root) |
1864 |
|
|
%{_bindir}/ntlm_auth |
1865 |
|
|
%{_bindir}/wbinfo |
1866 |
|
|
%{_mandir}/man1/ntlm_auth.1.gz |
1867 |
|
|
%{_mandir}/man1/wbinfo.1* |
1868 |
|
|
|
1869 |
|
|
### WINBIND-KRB5-LOCATOR |
1870 |
|
|
%files winbind-krb5-locator |
1871 |
|
|
%defattr(-,root,root) |
1872 |
|
|
%ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so |
1873 |
|
|
%{_libdir}/winbind_krb5_locator.so |
1874 |
|
|
%{_mandir}/man7/winbind_krb5_locator.7* |
1875 |
|
|
|
1876 |
|
|
### WINBIND-MODULES |
1877 |
|
|
%files winbind-modules |
1878 |
|
|
%defattr(-,root,root) |
1879 |
|
|
%{_libdir}/libnss_winbind.so* |
1880 |
|
|
%{_libdir}/libnss_wins.so* |
1881 |
|
|
%{_libdir}/security/pam_winbind.so |
1882 |
|
|
%config(noreplace) %{_sysconfdir}/security/pam_winbind.conf |
1883 |
|
|
%{_mandir}/man5/pam_winbind.conf.5* |
1884 |
|
|
%{_mandir}/man8/pam_winbind.8* |
1885 |
|
|
|
1886 |
|
|
%if %with_clustering_support |
1887 |
|
|
%files -n ctdb |
1888 |
|
|
%defattr(-,root,root) |
1889 |
|
|
%doc ctdb/README |
1890 |
jpp |
1.9 |
# Obsolete |
1891 |
|
|
%config(noreplace, missingok) %{_sysconfdir}/sysconfig/ctdb |
1892 |
vip-ire |
1.1 |
|
1893 |
jpp |
1.9 |
%dir %{_sysconfdir}/ctdb |
1894 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/ctdbd.conf |
1895 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/notify.sh |
1896 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/debug-hung-script.sh |
1897 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh |
1898 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/gcore_trace.sh |
1899 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/debug_locks.sh |
1900 |
vip-ire |
1.1 |
|
1901 |
jpp |
1.9 |
%{_sysconfdir}/ctdb/functions |
1902 |
|
|
%{_sysconfdir}/ctdb/nfs-linux-kernel-callout |
1903 |
vip-ire |
1.1 |
%{_sysconfdir}/ctdb/statd-callout |
1904 |
unnilennium |
1.3 |
%config %{_sysconfdir}/sudoers.d/ctdb |
1905 |
jpp |
1.9 |
|
1906 |
unnilennium |
1.3 |
# CTDB scripts, no config files |
1907 |
|
|
# script with executable bit means activated |
1908 |
|
|
%dir %{_sysconfdir}/ctdb/events.d |
1909 |
|
|
%{_sysconfdir}/ctdb/events.d/00.ctdb |
1910 |
|
|
%{_sysconfdir}/ctdb/events.d/01.reclock |
1911 |
|
|
%{_sysconfdir}/ctdb/events.d/05.system |
1912 |
jpp |
1.9 |
%{_sysconfdir}/ctdb/events.d/06.nfs |
1913 |
unnilennium |
1.3 |
%{_sysconfdir}/ctdb/events.d/10.external |
1914 |
|
|
%{_sysconfdir}/ctdb/events.d/10.interface |
1915 |
|
|
%{_sysconfdir}/ctdb/events.d/11.natgw |
1916 |
|
|
%{_sysconfdir}/ctdb/events.d/11.routing |
1917 |
|
|
%{_sysconfdir}/ctdb/events.d/13.per_ip_routing |
1918 |
|
|
%{_sysconfdir}/ctdb/events.d/20.multipathd |
1919 |
|
|
%{_sysconfdir}/ctdb/events.d/31.clamd |
1920 |
|
|
%{_sysconfdir}/ctdb/events.d/40.vsftpd |
1921 |
|
|
%{_sysconfdir}/ctdb/events.d/41.httpd |
1922 |
|
|
%{_sysconfdir}/ctdb/events.d/49.winbind |
1923 |
|
|
%{_sysconfdir}/ctdb/events.d/50.samba |
1924 |
|
|
%{_sysconfdir}/ctdb/events.d/60.nfs |
1925 |
|
|
%{_sysconfdir}/ctdb/events.d/70.iscsi |
1926 |
|
|
%{_sysconfdir}/ctdb/events.d/91.lvs |
1927 |
|
|
%{_sysconfdir}/ctdb/events.d/99.timeout |
1928 |
|
|
%{_sysconfdir}/ctdb/events.d/README |
1929 |
vip-ire |
1.1 |
%dir %{_sysconfdir}/ctdb/notify.d |
1930 |
|
|
%{_sysconfdir}/ctdb/notify.d/README |
1931 |
jpp |
1.9 |
|
1932 |
|
|
# CTDB scripts, no config files |
1933 |
|
|
# script with executable bit means activated |
1934 |
|
|
%dir %{_sysconfdir}/ctdb/nfs-checks.d |
1935 |
|
|
%{_sysconfdir}/ctdb/nfs-checks.d/README |
1936 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/00.portmapper.check |
1937 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/10.status.check |
1938 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/20.nfs.check |
1939 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/30.nlockmgr.check |
1940 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/40.mountd.check |
1941 |
|
|
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/50.rquotad.check |
1942 |
|
|
|
1943 |
vip-ire |
1.1 |
%{_sbindir}/ctdbd |
1944 |
|
|
%{_sbindir}/ctdbd_wrapper |
1945 |
|
|
%{_bindir}/ctdb |
1946 |
|
|
%{_bindir}/ping_pong |
1947 |
|
|
%{_bindir}/ltdbtool |
1948 |
|
|
%{_bindir}/ctdb_diagnostics |
1949 |
|
|
%{_bindir}/onnode |
1950 |
jpp |
1.9 |
|
1951 |
unnilennium |
1.3 |
%dir %{_libexecdir}/ctdb |
1952 |
jpp |
1.9 |
%{_libexecdir}/ctdb/ctdb_event |
1953 |
|
|
%{_libexecdir}/ctdb/ctdb_eventd |
1954 |
|
|
%{_libexecdir}/ctdb/ctdb_killtcp |
1955 |
|
|
%{_libexecdir}/ctdb/ctdb_lock_helper |
1956 |
|
|
%{_libexecdir}/ctdb/ctdb_lvs |
1957 |
|
|
%{_libexecdir}/ctdb/ctdb_mutex_fcntl_helper |
1958 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/ctdb_natgw |
1959 |
|
|
%{_libexecdir}/ctdb/ctdb_recovery_helper |
1960 |
jpp |
1.9 |
%{_libexecdir}/ctdb/ctdb_takeover_helper |
1961 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/smnotify |
1962 |
jpp |
1.9 |
|
1963 |
|
|
%dir %{_localstatedir}/lib/ctdb/ |
1964 |
vip-ire |
1.1 |
|
1965 |
|
|
%{_mandir}/man1/ctdb.1.gz |
1966 |
jpp |
1.9 |
%{_mandir}/man1/ctdb_diagnostics.1.gz |
1967 |
vip-ire |
1.1 |
%{_mandir}/man1/ctdbd.1.gz |
1968 |
|
|
%{_mandir}/man1/onnode.1.gz |
1969 |
|
|
%{_mandir}/man1/ltdbtool.1.gz |
1970 |
|
|
%{_mandir}/man1/ping_pong.1.gz |
1971 |
|
|
%{_mandir}/man1/ctdbd_wrapper.1.gz |
1972 |
|
|
%{_mandir}/man5/ctdbd.conf.5.gz |
1973 |
|
|
%{_mandir}/man7/ctdb.7.gz |
1974 |
|
|
%{_mandir}/man7/ctdb-tunables.7.gz |
1975 |
|
|
%{_mandir}/man7/ctdb-statistics.7.gz |
1976 |
|
|
|
1977 |
jpp |
1.9 |
%{_tmpfilesdir}/ctdb.conf |
1978 |
|
|
|
1979 |
|
|
%{_unitdir}/ctdb.service |
1980 |
|
|
|
1981 |
|
|
|
1982 |
vip-ire |
1.1 |
%files -n ctdb-tests |
1983 |
|
|
%defattr(-,root,root) |
1984 |
jpp |
1.9 |
%doc ctdb/tests/README |
1985 |
|
|
%{_bindir}/ctdb_run_tests |
1986 |
|
|
%{_bindir}/ctdb_run_cluster_tests |
1987 |
|
|
|
1988 |
|
|
%dir %{_libexecdir}/ctdb |
1989 |
unnilennium |
1.3 |
%dir %{_libexecdir}/ctdb/tests |
1990 |
|
|
%{_libexecdir}/ctdb/tests/comm_client_test |
1991 |
|
|
%{_libexecdir}/ctdb/tests/comm_server_test |
1992 |
|
|
%{_libexecdir}/ctdb/tests/comm_test |
1993 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/ctdb_packet_parse |
1994 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/tests/ctdb_takeover_tests |
1995 |
|
|
%{_libexecdir}/ctdb/tests/db_hash_test |
1996 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/fake_ctdbd |
1997 |
|
|
%{_libexecdir}/ctdb/tests/fetch_loop |
1998 |
|
|
%{_libexecdir}/ctdb/tests/fetch_loop_key |
1999 |
|
|
%{_libexecdir}/ctdb/tests/fetch_readonly |
2000 |
|
|
%{_libexecdir}/ctdb/tests/fetch_readonly_loop |
2001 |
|
|
%{_libexecdir}/ctdb/tests/fetch_ring |
2002 |
|
|
%{_libexecdir}/ctdb/tests/g_lock_loop |
2003 |
|
|
%{_libexecdir}/ctdb/tests/lock_tdb |
2004 |
|
|
%{_libexecdir}/ctdb/tests/message_ring |
2005 |
|
|
%{_libexecdir}/ctdb/tests/pidfile_test |
2006 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/tests/pkt_read_test |
2007 |
|
|
%{_libexecdir}/ctdb/tests/pkt_write_test |
2008 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/porting_tests |
2009 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/tests/protocol_client_test |
2010 |
|
|
%{_libexecdir}/ctdb/tests/protocol_types_test |
2011 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/protocol_util_test |
2012 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/tests/rb_test |
2013 |
|
|
%{_libexecdir}/ctdb/tests/reqid_test |
2014 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/run_proc_test |
2015 |
|
|
%{_libexecdir}/ctdb/tests/sock_daemon_test |
2016 |
|
|
%{_libexecdir}/ctdb/tests/sock_io_test |
2017 |
unnilennium |
1.3 |
%{_libexecdir}/ctdb/tests/srvid_test |
2018 |
jpp |
1.9 |
%{_libexecdir}/ctdb/tests/test_mutex_raw |
2019 |
|
|
%{_libexecdir}/ctdb/tests/transaction_loop |
2020 |
|
|
%{_libexecdir}/ctdb/tests/update_record |
2021 |
|
|
%{_libexecdir}/ctdb/tests/update_record_persistent |
2022 |
|
|
|
2023 |
|
|
%dir %{_datadir}/ctdb |
2024 |
|
|
%dir %{_datadir}/ctdb/tests |
2025 |
|
|
|
2026 |
|
|
%dir %{_datadir}/ctdb/tests/complex |
2027 |
|
|
%{_datadir}/ctdb/tests/complex/README |
2028 |
|
|
%{_datadir}/ctdb/tests/complex/11_ctdb_delip_removes_ip.sh |
2029 |
|
|
%{_datadir}/ctdb/tests/complex/18_ctdb_reloadips.sh |
2030 |
|
|
%{_datadir}/ctdb/tests/complex/30_nfs_tickle_killtcp.sh |
2031 |
|
|
%{_datadir}/ctdb/tests/complex/31_nfs_tickle.sh |
2032 |
|
|
%{_datadir}/ctdb/tests/complex/32_cifs_tickle.sh |
2033 |
|
|
%{_datadir}/ctdb/tests/complex/33_gratuitous_arp.sh |
2034 |
|
|
%{_datadir}/ctdb/tests/complex/34_nfs_tickle_restart.sh |
2035 |
|
|
%{_datadir}/ctdb/tests/complex/35_cifs_external_tickle.sh |
2036 |
|
|
%{_datadir}/ctdb/tests/complex/41_failover_ping_discrete.sh |
2037 |
|
|
%{_datadir}/ctdb/tests/complex/42_failover_ssh_hostname.sh |
2038 |
|
|
%{_datadir}/ctdb/tests/complex/43_failover_nfs_basic.sh |
2039 |
|
|
%{_datadir}/ctdb/tests/complex/44_failover_nfs_oneway.sh |
2040 |
|
|
%{_datadir}/ctdb/tests/complex/45_failover_nfs_kill.sh |
2041 |
|
|
%{_datadir}/ctdb/tests/complex/60_rogueip_releaseip.sh |
2042 |
|
|
%{_datadir}/ctdb/tests/complex/61_rogueip_takeip.sh |
2043 |
|
|
%{_datadir}/ctdb/tests/complex/90_debug_hung_script.sh |
2044 |
|
|
|
2045 |
|
|
%dir %{_datadir}/ctdb/tests/complex/scripts |
2046 |
|
|
%{_datadir}/ctdb/tests/complex/scripts/local.bash |
2047 |
|
|
|
2048 |
|
|
%dir %{_datadir}/ctdb/tests/cunit |
2049 |
|
|
%{_datadir}/ctdb/tests/cunit/comm_test_001.sh |
2050 |
|
|
%{_datadir}/ctdb/tests/cunit/comm_test_002.sh |
2051 |
|
|
%{_datadir}/ctdb/tests/cunit/db_hash_test_001.sh |
2052 |
|
|
%{_datadir}/ctdb/tests/cunit/pidfile_test_001.sh |
2053 |
|
|
%{_datadir}/ctdb/tests/cunit/pkt_read_001.sh |
2054 |
|
|
%{_datadir}/ctdb/tests/cunit/pkt_write_001.sh |
2055 |
|
|
%{_datadir}/ctdb/tests/cunit/porting_tests_001.sh |
2056 |
|
|
%{_datadir}/ctdb/tests/cunit/protocol_test_001.sh |
2057 |
|
|
%{_datadir}/ctdb/tests/cunit/protocol_test_002.sh |
2058 |
|
|
%{_datadir}/ctdb/tests/cunit/protocol_test_003.sh |
2059 |
|
|
%{_datadir}/ctdb/tests/cunit/rb_test_001.sh |
2060 |
|
|
%{_datadir}/ctdb/tests/cunit/reqid_test_001.sh |
2061 |
|
|
%{_datadir}/ctdb/tests/cunit/run_proc_001.sh |
2062 |
|
|
%{_datadir}/ctdb/tests/cunit/sock_daemon_test_001.sh |
2063 |
|
|
%{_datadir}/ctdb/tests/cunit/sock_io_test_001.sh |
2064 |
|
|
%{_datadir}/ctdb/tests/cunit/srvid_test_001.sh |
2065 |
|
|
|
2066 |
|
|
%dir %{_datadir}/ctdb/tests/eventd |
2067 |
|
|
%{_datadir}/ctdb/tests/eventd/README |
2068 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_001.sh |
2069 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_002.sh |
2070 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_003.sh |
2071 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_004.sh |
2072 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_005.sh |
2073 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_006.sh |
2074 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_007.sh |
2075 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_011.sh |
2076 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_012.sh |
2077 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_013.sh |
2078 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_014.sh |
2079 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_021.sh |
2080 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_022.sh |
2081 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_023.sh |
2082 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_024.sh |
2083 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_031.sh |
2084 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_032.sh |
2085 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_033.sh |
2086 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_041.sh |
2087 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_042.sh |
2088 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_043.sh |
2089 |
|
|
%{_datadir}/ctdb/tests/eventd/eventd_051.sh |
2090 |
|
|
%dir %{_datadir}/ctdb/tests/eventd/scripts |
2091 |
|
|
%{_datadir}/ctdb/tests/eventd/scripts/local.sh |
2092 |
|
|
|
2093 |
|
|
%dir %{_datadir}/ctdb/tests/events.d |
2094 |
|
|
%{_datadir}/ctdb/tests/events.d/00.test |
2095 |
|
|
|
2096 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts |
2097 |
|
|
%{_datadir}/ctdb/tests/eventscripts/README |
2098 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.001.sh |
2099 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.002.sh |
2100 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.003.sh |
2101 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.004.sh |
2102 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.005.sh |
2103 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.006.sh |
2104 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.007.sh |
2105 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.008.sh |
2106 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.init.009.sh |
2107 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.setup.001.sh |
2108 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.setup.002.sh |
2109 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.setup.003.sh |
2110 |
|
|
%{_datadir}/ctdb/tests/eventscripts/00.ctdb.setup.004.sh |
2111 |
|
|
%{_datadir}/ctdb/tests/eventscripts/01.reclock.monitor.001.sh |
2112 |
|
|
%{_datadir}/ctdb/tests/eventscripts/01.reclock.monitor.002.sh |
2113 |
|
|
%{_datadir}/ctdb/tests/eventscripts/01.reclock.monitor.003.sh |
2114 |
|
|
%{_datadir}/ctdb/tests/eventscripts/01.reclock.monitor.004.sh |
2115 |
|
|
%{_datadir}/ctdb/tests/eventscripts/01.reclock.monitor.005.sh |
2116 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.001.sh |
2117 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.002.sh |
2118 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.003.sh |
2119 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.004.sh |
2120 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.005.sh |
2121 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.006.sh |
2122 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.007.sh |
2123 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.011.sh |
2124 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.012.sh |
2125 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.013.sh |
2126 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.014.sh |
2127 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.015.sh |
2128 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.016.sh |
2129 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.017.sh |
2130 |
|
|
%{_datadir}/ctdb/tests/eventscripts/05.system.monitor.018.sh |
2131 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.init.001.sh |
2132 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.init.002.sh |
2133 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.init.021.sh |
2134 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.init.022.sh |
2135 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.init.023.sh |
2136 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.001.sh |
2137 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.002.sh |
2138 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.003.sh |
2139 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.004.sh |
2140 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.005.sh |
2141 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.006.sh |
2142 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.007.sh |
2143 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.008.sh |
2144 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.009.sh |
2145 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.010.sh |
2146 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.011.sh |
2147 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.012.sh |
2148 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.013.sh |
2149 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.014.sh |
2150 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.015.sh |
2151 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.016.sh |
2152 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.017.sh |
2153 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.monitor.018.sh |
2154 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.multi.001.sh |
2155 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.releaseip.001.sh |
2156 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.releaseip.002.sh |
2157 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.releaseip.010.sh |
2158 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.releaseip.011.sh |
2159 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.startup.001.sh |
2160 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.startup.002.sh |
2161 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.takeip.001.sh |
2162 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.takeip.002.sh |
2163 |
|
|
%{_datadir}/ctdb/tests/eventscripts/10.interface.takeip.003.sh |
2164 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.001.sh |
2165 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.002.sh |
2166 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.003.sh |
2167 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.004.sh |
2168 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.011.sh |
2169 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.012.sh |
2170 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.013.sh |
2171 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.014.sh |
2172 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.015.sh |
2173 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.021.sh |
2174 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.022.sh |
2175 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.023.sh |
2176 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.024.sh |
2177 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.025.sh |
2178 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.031.sh |
2179 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.041.sh |
2180 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.042.sh |
2181 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.051.sh |
2182 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.052.sh |
2183 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.053.sh |
2184 |
|
|
%{_datadir}/ctdb/tests/eventscripts/11.natgw.054.sh |
2185 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.001.sh |
2186 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.002.sh |
2187 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.003.sh |
2188 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.004.sh |
2189 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.005.sh |
2190 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.006.sh |
2191 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.007.sh |
2192 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.008.sh |
2193 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.009.sh |
2194 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.010.sh |
2195 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.011.sh |
2196 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.012.sh |
2197 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.013.sh |
2198 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.014.sh |
2199 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.015.sh |
2200 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.016.sh |
2201 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.017.sh |
2202 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.018.sh |
2203 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.019.sh |
2204 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.021.sh |
2205 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.022.sh |
2206 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.023.sh |
2207 |
|
|
%{_datadir}/ctdb/tests/eventscripts/13.per_ip_routing.024.sh |
2208 |
|
|
%{_datadir}/ctdb/tests/eventscripts/20.multipathd.monitor.001.sh |
2209 |
|
|
%{_datadir}/ctdb/tests/eventscripts/20.multipathd.monitor.002.sh |
2210 |
|
|
%{_datadir}/ctdb/tests/eventscripts/20.multipathd.monitor.003.sh |
2211 |
|
|
%{_datadir}/ctdb/tests/eventscripts/20.multipathd.monitor.004.sh |
2212 |
|
|
%{_datadir}/ctdb/tests/eventscripts/40.vsftpd.monitor.001.sh |
2213 |
|
|
%{_datadir}/ctdb/tests/eventscripts/40.vsftpd.monitor.002.sh |
2214 |
|
|
%{_datadir}/ctdb/tests/eventscripts/41.httpd.monitor.001.sh |
2215 |
|
|
%{_datadir}/ctdb/tests/eventscripts/41.httpd.monitor.002.sh |
2216 |
|
|
%{_datadir}/ctdb/tests/eventscripts/49.winbind.monitor.001.sh |
2217 |
|
|
%{_datadir}/ctdb/tests/eventscripts/49.winbind.monitor.050.sh |
2218 |
|
|
%{_datadir}/ctdb/tests/eventscripts/49.winbind.monitor.051.sh |
2219 |
|
|
%{_datadir}/ctdb/tests/eventscripts/49.winbind.monitor.101.sh |
2220 |
|
|
%{_datadir}/ctdb/tests/eventscripts/49.winbind.monitor.102.sh |
2221 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.001.sh |
2222 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.050.sh |
2223 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.051.sh |
2224 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.101.sh |
2225 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.103.sh |
2226 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.104.sh |
2227 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.105.sh |
2228 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.106.sh |
2229 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.107.sh |
2230 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.110.sh |
2231 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.111.sh |
2232 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.112.sh |
2233 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.monitor.113.sh |
2234 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.shutdown.001.sh |
2235 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.shutdown.002.sh |
2236 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.shutdown.011.sh |
2237 |
|
|
%{_datadir}/ctdb/tests/eventscripts/50.samba.startup.011.sh |
2238 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.001.sh |
2239 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.101.sh |
2240 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.102.sh |
2241 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.103.sh |
2242 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.104.sh |
2243 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.105.sh |
2244 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.106.sh |
2245 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.107.sh |
2246 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.108.sh |
2247 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.111.sh |
2248 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.112.sh |
2249 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.113.sh |
2250 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.114.sh |
2251 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.121.sh |
2252 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.122.sh |
2253 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.131.sh |
2254 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.132.sh |
2255 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.141.sh |
2256 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.142.sh |
2257 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.143.sh |
2258 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.144.sh |
2259 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.151.sh |
2260 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.152.sh |
2261 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.153.sh |
2262 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.161.sh |
2263 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.monitor.162.sh |
2264 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.multi.001.sh |
2265 |
|
|
%{_datadir}/ctdb/tests/eventscripts/60.nfs.multi.002.sh |
2266 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.001.sh |
2267 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.ipreallocated.011.sh |
2268 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.ipreallocated.012.sh |
2269 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.ipreallocated.013.sh |
2270 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.ipreallocated.014.sh |
2271 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.monitor.001.sh |
2272 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.monitor.002.sh |
2273 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.monitor.003.sh |
2274 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.shutdown.001.sh |
2275 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.shutdown.002.sh |
2276 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.startup.001.sh |
2277 |
|
|
%{_datadir}/ctdb/tests/eventscripts/91.lvs.startup.002.sh |
2278 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.001.sh |
2279 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.002.sh |
2280 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.003.sh |
2281 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.004.sh |
2282 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.005.sh |
2283 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.006.sh |
2284 |
|
|
%{_datadir}/ctdb/tests/eventscripts/statd-callout.007.sh |
2285 |
|
|
|
2286 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/etc-ctdb |
2287 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/events.d |
2288 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/functions |
2289 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/nfs-checks.d |
2290 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/nfs-linux-kernel-callout |
2291 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/public_addresses |
2292 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/rc.local |
2293 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc-ctdb/statd-callout |
2294 |
|
|
|
2295 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/etc |
2296 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/etc/init.d |
2297 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc/init.d/nfs |
2298 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc/init.d/nfslock |
2299 |
|
|
|
2300 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/etc/samba |
2301 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc/samba/smb.conf |
2302 |
|
|
|
2303 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/etc/sysconfig |
2304 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc/sysconfig/ctdb |
2305 |
|
|
%{_datadir}/ctdb/tests/eventscripts/etc/sysconfig/nfs |
2306 |
|
|
|
2307 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/scripts |
2308 |
|
|
%{_datadir}/ctdb/tests/eventscripts/scripts/local.sh |
2309 |
|
|
|
2310 |
|
|
%dir %{_datadir}/ctdb/tests/eventscripts/stubs |
2311 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ctdb |
2312 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ctdb_killtcp |
2313 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ctdb_lvs |
2314 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ctdb_natgw |
2315 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/date |
2316 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/df |
2317 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ethtool |
2318 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/exportfs |
2319 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/id |
2320 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ip |
2321 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ip6tables |
2322 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/iptables |
2323 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ipvsadm |
2324 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/kill |
2325 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/killall |
2326 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/multipath |
2327 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/net |
2328 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/netstat |
2329 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/nmap |
2330 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/pidof |
2331 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/pkill |
2332 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ps |
2333 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rm |
2334 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rpc.lockd |
2335 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rpc.mountd |
2336 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rpc.rquotad |
2337 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rpc.statd |
2338 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/rpcinfo |
2339 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/service |
2340 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/sleep |
2341 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/smnotify |
2342 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/ss |
2343 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/tdbdump |
2344 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/tdbtool |
2345 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/testparm |
2346 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/timeout |
2347 |
|
|
%{_datadir}/ctdb/tests/eventscripts/stubs/wbinfo |
2348 |
|
|
|
2349 |
|
|
%dir %{_datadir}/ctdb/tests/onnode |
2350 |
|
|
%{_datadir}/ctdb/tests/onnode/README |
2351 |
|
|
%{_datadir}/ctdb/tests/onnode/0001.sh |
2352 |
|
|
%{_datadir}/ctdb/tests/onnode/0002.sh |
2353 |
|
|
%{_datadir}/ctdb/tests/onnode/0003.sh |
2354 |
|
|
%{_datadir}/ctdb/tests/onnode/0004.sh |
2355 |
|
|
%{_datadir}/ctdb/tests/onnode/0005.sh |
2356 |
|
|
%{_datadir}/ctdb/tests/onnode/0006.sh |
2357 |
|
|
%{_datadir}/ctdb/tests/onnode/0070.sh |
2358 |
|
|
%{_datadir}/ctdb/tests/onnode/0071.sh |
2359 |
|
|
%{_datadir}/ctdb/tests/onnode/0072.sh |
2360 |
|
|
%{_datadir}/ctdb/tests/onnode/0075.sh |
2361 |
|
|
%{_datadir}/ctdb/tests/onnode/functions |
2362 |
|
|
%{_datadir}/ctdb/tests/onnode/nodes |
2363 |
|
|
|
2364 |
|
|
%dir %{_datadir}/ctdb/tests/onnode/scripts |
2365 |
|
|
%{_datadir}/ctdb/tests/onnode/scripts/local.sh |
2366 |
|
|
|
2367 |
|
|
%dir %{_datadir}/ctdb/tests/onnode/stubs |
2368 |
|
|
%{_datadir}/ctdb/tests/onnode/stubs/ctdb |
2369 |
|
|
%{_datadir}/ctdb/tests/onnode/stubs/onnode-buggy-001 |
2370 |
|
|
%{_datadir}/ctdb/tests/onnode/stubs/ssh |
2371 |
|
|
|
2372 |
|
|
%dir %{_datadir}/ctdb/tests/scripts |
2373 |
|
|
%{_datadir}/ctdb/tests/scripts/common.sh |
2374 |
|
|
%{_datadir}/ctdb/tests/scripts/integration.bash |
2375 |
|
|
%{_datadir}/ctdb/tests/scripts/script_install_paths.sh |
2376 |
|
|
%{_datadir}/ctdb/tests/scripts/test_wrap |
2377 |
|
|
%{_datadir}/ctdb/tests/scripts/unit.sh |
2378 |
|
|
|
2379 |
|
|
%dir %{_datadir}/ctdb/tests/shellcheck |
2380 |
|
|
%{_datadir}/ctdb/tests/shellcheck/base_scripts.sh |
2381 |
|
|
%{_datadir}/ctdb/tests/shellcheck/ctdb_helpers.sh |
2382 |
|
|
%{_datadir}/ctdb/tests/shellcheck/ctdbd_wrapper.sh |
2383 |
|
|
%{_datadir}/ctdb/tests/shellcheck/event_scripts.sh |
2384 |
|
|
%{_datadir}/ctdb/tests/shellcheck/functions.sh |
2385 |
|
|
%{_datadir}/ctdb/tests/shellcheck/init_script.sh |
2386 |
|
|
%{_datadir}/ctdb/tests/shellcheck/tools.sh |
2387 |
|
|
|
2388 |
|
|
%dir %{_datadir}/ctdb/tests/shellcheck/scripts |
2389 |
|
|
%{_datadir}/ctdb/tests/shellcheck/scripts/local.sh |
2390 |
|
|
|
2391 |
|
|
%dir %{_datadir}/ctdb/tests/simple |
2392 |
|
|
%{_datadir}/ctdb/tests/simple/README |
2393 |
|
|
%{_datadir}/ctdb/tests/simple/00_ctdb_init.sh |
2394 |
|
|
%{_datadir}/ctdb/tests/simple/00_ctdb_onnode.sh |
2395 |
|
|
%{_datadir}/ctdb/tests/simple/01_ctdb_version.sh |
2396 |
|
|
%{_datadir}/ctdb/tests/simple/02_ctdb_listvars.sh |
2397 |
|
|
%{_datadir}/ctdb/tests/simple/03_ctdb_getvar.sh |
2398 |
|
|
%{_datadir}/ctdb/tests/simple/04_ctdb_setvar.sh |
2399 |
|
|
%{_datadir}/ctdb/tests/simple/05_ctdb_listnodes.sh |
2400 |
|
|
%{_datadir}/ctdb/tests/simple/06_ctdb_getpid.sh |
2401 |
|
|
%{_datadir}/ctdb/tests/simple/07_ctdb_process_exists.sh |
2402 |
|
|
%{_datadir}/ctdb/tests/simple/08_ctdb_isnotrecmaster.sh |
2403 |
|
|
%{_datadir}/ctdb/tests/simple/09_ctdb_ping.sh |
2404 |
|
|
%{_datadir}/ctdb/tests/simple/11_ctdb_ip.sh |
2405 |
|
|
%{_datadir}/ctdb/tests/simple/12_ctdb_getdebug.sh |
2406 |
|
|
%{_datadir}/ctdb/tests/simple/13_ctdb_setdebug.sh |
2407 |
|
|
%{_datadir}/ctdb/tests/simple/14_ctdb_statistics.sh |
2408 |
|
|
%{_datadir}/ctdb/tests/simple/15_ctdb_statisticsreset.sh |
2409 |
|
|
%{_datadir}/ctdb/tests/simple/16_ctdb_config_add_ip.sh |
2410 |
|
|
%{_datadir}/ctdb/tests/simple/17_ctdb_config_delete_ip.sh |
2411 |
|
|
%{_datadir}/ctdb/tests/simple/18_ctdb_reloadips.sh |
2412 |
|
|
%{_datadir}/ctdb/tests/simple/19_ip_takeover_noop.sh |
2413 |
|
|
%{_datadir}/ctdb/tests/simple/20_delip_iface_gc.sh |
2414 |
|
|
%{_datadir}/ctdb/tests/simple/23_ctdb_moveip.sh |
2415 |
|
|
%{_datadir}/ctdb/tests/simple/24_ctdb_getdbmap.sh |
2416 |
|
|
%{_datadir}/ctdb/tests/simple/25_dumpmemory.sh |
2417 |
|
|
%{_datadir}/ctdb/tests/simple/26_ctdb_config_check_error_on_unreachable_ctdb.sh |
2418 |
|
|
%{_datadir}/ctdb/tests/simple/27_ctdb_detach.sh |
2419 |
|
|
%{_datadir}/ctdb/tests/simple/28_zero_eventscripts.sh |
2420 |
|
|
%{_datadir}/ctdb/tests/simple/31_ctdb_disable.sh |
2421 |
|
|
%{_datadir}/ctdb/tests/simple/32_ctdb_enable.sh |
2422 |
|
|
%{_datadir}/ctdb/tests/simple/35_ctdb_getreclock.sh |
2423 |
|
|
%{_datadir}/ctdb/tests/simple/41_ctdb_stop.sh |
2424 |
|
|
%{_datadir}/ctdb/tests/simple/42_ctdb_continue.sh |
2425 |
|
|
%{_datadir}/ctdb/tests/simple/43_stop_recmaster_yield.sh |
2426 |
|
|
%{_datadir}/ctdb/tests/simple/51_message_ring.sh |
2427 |
|
|
%{_datadir}/ctdb/tests/simple/52_fetch_ring.sh |
2428 |
|
|
%{_datadir}/ctdb/tests/simple/53_transaction_loop.sh |
2429 |
|
|
%{_datadir}/ctdb/tests/simple/54_transaction_loop_recovery.sh |
2430 |
|
|
%{_datadir}/ctdb/tests/simple/55_ctdb_ptrans.sh |
2431 |
|
|
%{_datadir}/ctdb/tests/simple/58_ctdb_restoredb.sh |
2432 |
|
|
%{_datadir}/ctdb/tests/simple/60_recoverd_missing_ip.sh |
2433 |
|
|
%{_datadir}/ctdb/tests/simple/70_recoverpdbbyseqnum.sh |
2434 |
|
|
%{_datadir}/ctdb/tests/simple/71_ctdb_wipedb.sh |
2435 |
|
|
%{_datadir}/ctdb/tests/simple/72_update_record_persistent.sh |
2436 |
|
|
%{_datadir}/ctdb/tests/simple/73_tunable_NoIPTakeover.sh |
2437 |
|
|
%{_datadir}/ctdb/tests/simple/75_readonly_records_basic.sh |
2438 |
|
|
%{_datadir}/ctdb/tests/simple/76_ctdb_pdb_recovery.sh |
2439 |
|
|
%{_datadir}/ctdb/tests/simple/77_ctdb_db_recovery.sh |
2440 |
|
|
%{_datadir}/ctdb/tests/simple/78_ctdb_large_db_recovery.sh |
2441 |
|
|
%{_datadir}/ctdb/tests/simple/80_ctdb_traverse.sh |
2442 |
|
|
%{_datadir}/ctdb/tests/simple/99_daemons_shutdown.sh |
2443 |
|
|
%{_datadir}/ctdb/tests/simple/functions |
2444 |
|
|
# This is a dangling symlink but needed for testing |
2445 |
|
|
%{_datadir}/ctdb/tests/simple/nodes |
2446 |
|
|
|
2447 |
|
|
%dir %{_datadir}/ctdb/tests/simple/scripts |
2448 |
|
|
%{_datadir}/ctdb/tests/simple/scripts/local.bash |
2449 |
|
|
%{_datadir}/ctdb/tests/simple/scripts/local_daemons.bash |
2450 |
|
|
|
2451 |
|
|
%dir %{_datadir}/ctdb/tests/takeover |
2452 |
|
|
%{_datadir}/ctdb/tests/takeover/README |
2453 |
|
|
%{_datadir}/ctdb/tests/takeover/det.001.sh |
2454 |
|
|
%{_datadir}/ctdb/tests/takeover/det.002.sh |
2455 |
|
|
%{_datadir}/ctdb/tests/takeover/det.003.sh |
2456 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.001.sh |
2457 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.002.sh |
2458 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.003.sh |
2459 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.004.sh |
2460 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.005.sh |
2461 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.006.sh |
2462 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.007.sh |
2463 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.008.sh |
2464 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.009.sh |
2465 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.010.sh |
2466 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.011.sh |
2467 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.012.sh |
2468 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.013.sh |
2469 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.014.sh |
2470 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.015.sh |
2471 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.016.sh |
2472 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.017.sh |
2473 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.018.sh |
2474 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.019.sh |
2475 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.022.sh |
2476 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.023.sh |
2477 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.024.sh |
2478 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.025.sh |
2479 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.026.sh |
2480 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.027.sh |
2481 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.028.sh |
2482 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.029.sh |
2483 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.030.sh |
2484 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.031.sh |
2485 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.032.sh |
2486 |
|
|
%{_datadir}/ctdb/tests/takeover/lcp2.033.sh |
2487 |
|
|
%{_datadir}/ctdb/tests/takeover/nondet.001.sh |
2488 |
|
|
%{_datadir}/ctdb/tests/takeover/nondet.002.sh |
2489 |
|
|
%{_datadir}/ctdb/tests/takeover/nondet.003.sh |
2490 |
|
|
|
2491 |
|
|
%dir %{_datadir}/ctdb/tests/takeover/scripts |
2492 |
|
|
%{_datadir}/ctdb/tests/takeover/scripts/local.sh |
2493 |
|
|
|
2494 |
|
|
%dir %{_datadir}/ctdb/tests/takeover_helper |
2495 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/000.sh |
2496 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/010.sh |
2497 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/011.sh |
2498 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/012.sh |
2499 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/013.sh |
2500 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/014.sh |
2501 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/015.sh |
2502 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/016.sh |
2503 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/017.sh |
2504 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/018.sh |
2505 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/019.sh |
2506 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/020.sh |
2507 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/021.sh |
2508 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/022.sh |
2509 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/023.sh |
2510 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/024.sh |
2511 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/025.sh |
2512 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/026.sh |
2513 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/027.sh |
2514 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/028.sh |
2515 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/110.sh |
2516 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/111.sh |
2517 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/120.sh |
2518 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/121.sh |
2519 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/122.sh |
2520 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/130.sh |
2521 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/131.sh |
2522 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/132.sh |
2523 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/140.sh |
2524 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/150.sh |
2525 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/160.sh |
2526 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/210.sh |
2527 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/211.sh |
2528 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/220.sh |
2529 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/230.sh |
2530 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/240.sh |
2531 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/250.sh |
2532 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/260.sh |
2533 |
|
|
|
2534 |
|
|
%dir %{_datadir}/ctdb/tests/takeover_helper/scripts |
2535 |
|
|
%{_datadir}/ctdb/tests/takeover_helper/scripts/local.sh |
2536 |
|
|
|
2537 |
|
|
%dir %{_datadir}/ctdb/tests/tool |
2538 |
|
|
%{_datadir}/ctdb/tests/tool/README |
2539 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ban.001.sh |
2540 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ban.002.sh |
2541 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ban.003.sh |
2542 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.continue.001.sh |
2543 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.continue.002.sh |
2544 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.continue.003.sh |
2545 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.disable.001.sh |
2546 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.disable.002.sh |
2547 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.disable.003.sh |
2548 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.disable.004.sh |
2549 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.disablemonitor.001.sh |
2550 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.enable.001.sh |
2551 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.enable.002.sh |
2552 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.enable.003.sh |
2553 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.enablemonitor.001.sh |
2554 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getcapabilities.001.sh |
2555 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getcapabilities.002.sh |
2556 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getcapabilities.003.sh |
2557 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getcapabilities.004.sh |
2558 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getdbmap.001.sh |
2559 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getdbseqnum.001.sh |
2560 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getdbseqnum.002.sh |
2561 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getdbstatus.001.sh |
2562 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getdbstatus.002.sh |
2563 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getmonmode.001.sh |
2564 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getpid.001.sh |
2565 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getreclock.001.sh |
2566 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getreclock.002.sh |
2567 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getvar.001.sh |
2568 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.getvar.002.sh |
2569 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ifaces.001.sh |
2570 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.001.sh |
2571 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.002.sh |
2572 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.003.sh |
2573 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.004.sh |
2574 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.005.sh |
2575 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.006.sh |
2576 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ip.007.sh |
2577 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ipinfo.001.sh |
2578 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ipinfo.002.sh |
2579 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ipinfo.003.sh |
2580 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.listnodes.001.sh |
2581 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.listnodes.002.sh |
2582 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.listvars.001.sh |
2583 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.001.sh |
2584 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.002.sh |
2585 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.003.sh |
2586 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.004.sh |
2587 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.005.sh |
2588 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.006.sh |
2589 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.007.sh |
2590 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.lvs.008.sh |
2591 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.001.sh |
2592 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.002.sh |
2593 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.003.sh |
2594 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.004.sh |
2595 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.005.sh |
2596 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.006.sh |
2597 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.007.sh |
2598 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.natgw.008.sh |
2599 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.nodestatus.001.sh |
2600 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.nodestatus.002.sh |
2601 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.ping.001.sh |
2602 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.pnn.001.sh |
2603 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.process-exists.001.sh |
2604 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.recmaster.001.sh |
2605 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.recmaster.002.sh |
2606 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.recover.001.sh |
2607 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.001.sh |
2608 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.002.sh |
2609 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.003.sh |
2610 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.011.sh |
2611 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.012.sh |
2612 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.013.sh |
2613 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.014.sh |
2614 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.015.sh |
2615 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.016.sh |
2616 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.017.sh |
2617 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.018.sh |
2618 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.019.sh |
2619 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.020.sh |
2620 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.021.sh |
2621 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.023.sh |
2622 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.reloadnodes.024.sh |
2623 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.runstate.001.sh |
2624 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.runstate.002.sh |
2625 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.runstate.003.sh |
2626 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.runstate.004.sh |
2627 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.runstate.005.sh |
2628 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbreadonly.001.sh |
2629 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbreadonly.002.sh |
2630 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbreadonly.003.sh |
2631 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbreadonly.004.sh |
2632 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbsticky.001.sh |
2633 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbsticky.002.sh |
2634 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbsticky.003.sh |
2635 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdbsticky.004.sh |
2636 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdebug.001.sh |
2637 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdebug.002.sh |
2638 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setdebug.003.sh |
2639 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setifacelink.001.sh |
2640 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setifacelink.002.sh |
2641 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setvar.001.sh |
2642 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.setvar.002.sh |
2643 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.status.001.sh |
2644 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.status.002.sh |
2645 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.stop.001.sh |
2646 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.stop.002.sh |
2647 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.stop.003.sh |
2648 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.unban.001.sh |
2649 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.unban.002.sh |
2650 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.unban.003.sh |
2651 |
|
|
%{_datadir}/ctdb/tests/tool/ctdb.uptime.001.sh |
2652 |
|
|
|
2653 |
|
|
%dir %{_datadir}/ctdb/tests/tool/scripts |
2654 |
|
|
%{_datadir}/ctdb/tests/tool/scripts/local.sh |
2655 |
|
|
|
2656 |
vip-ire |
1.1 |
%endif # with_clustering_support |
2657 |
|
|
|
2658 |
|
|
%changelog |
2659 |
jpp |
1.11 |
* Tue May 08 2018 Jean-Philipe Pialasse <tests@pialasse.com> - 4.6.2-12.2.sme |
2660 |
jpp |
1.10 |
- import 4.6.2-12 [SME: 10429] |
2661 |
|
|
- import to SME the two last upstream releases [SME: 10326] |
2662 |
|
|
|
2663 |
jpp |
1.9 |
* Fri Nov 17 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-12 |
2664 |
|
|
- resolves: #1514314 - Fix CVE-2017-14746 and CVE-2017-15275 |
2665 |
|
|
|
2666 |
|
|
* Thu Sep 14 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-11 |
2667 |
|
|
- resolves: #1491213 - CVE-2017-12150 CVE-2017-12151 CVE-2017-12163 |
2668 |
|
|
|
2669 |
|
|
* Wed Aug 23 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-10 |
2670 |
|
|
- resolves: #1484423 - Require at least krb5 version 1.15.1 |
2671 |
|
|
- resolves: #1484713 - Fix password changes for users via smbpasswd |
2672 |
|
|
- resolves: #1484723 - Be more graceful on FSCTL_VALIDATE_NEGOTIATE_INFO |
2673 |
|
|
returned errors |
2674 |
|
|
|
2675 |
|
|
* Mon Aug 14 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-9 |
2676 |
|
|
- resolves: #1481188 - Fix 'net ads changetrustpw' |
2677 |
|
|
|
2678 |
|
|
* Thu Jun 22 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-8 |
2679 |
|
|
- resolves: #1459936 - Fix regression with "follow symlinks = no" |
2680 |
|
|
|
2681 |
|
|
* Tue Jun 20 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-7 |
2682 |
|
|
- resolves: #1461336 - Fix smbclient username parsing |
2683 |
|
|
- resolves: #1460937 - Fix username normalization with winbind |
2684 |
|
|
|
2685 |
|
|
* Tue Jun 13 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-6 |
2686 |
|
|
- resolves: #1459179 - Fix smbclient session setup printing |
2687 |
|
|
|
2688 |
|
|
* Wed Jun 07 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-5 |
2689 |
|
|
- related: #1277999 - Add missing patchset |
2690 |
|
|
|
2691 |
|
|
* Wed May 31 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-4 |
2692 |
|
|
- resolves: #1431986 - Fix expand_msdfs VFS module |
2693 |
|
|
|
2694 |
|
|
* Thu May 18 2017 Guenther Deschner <gdeschner@redhat.com> - 4.6.2-3 |
2695 |
|
|
- resolves: #1450785 - Security fix for CVE-2017-7494 |
2696 |
|
|
|
2697 |
|
|
* Tue May 09 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-2 |
2698 |
|
|
- resolves: #1448544 - Fix spoolss 32bit driver upload |
2699 |
|
|
|
2700 |
|
|
* Mon Apr 03 2017 Andreas Schneider <asn@redhat.com> - 4.6.2-1 |
2701 |
|
|
- resolves: #1435734 - Fix refreshing winbind tickets |
2702 |
|
|
|
2703 |
|
|
* Fri Mar 31 2017 Guenther Deschner <gdeschner@redhat.com> - 4.6.2-0 |
2704 |
|
|
- Update to Samba 4.6.2 |
2705 |
|
|
- related: #1430260 - Security fix for CVE-2017-2619 |
2706 |
|
|
|
2707 |
|
|
* Thu Mar 23 2017 Guenther Deschner <gdeschner@redhat.com> - 4.6.1-0 |
2708 |
|
|
- Update to Samba 4.6.1 |
2709 |
|
|
- resolves: #1430260 - Security fix for CVE-2017-2619 |
2710 |
|
|
|
2711 |
|
|
* Tue Mar 21 2017 Andreas Schneider <asn@redhat.com> - 4.6.0-5 |
2712 |
|
|
- related: #1391954 - Fix kerberos cross-realm referrals |
2713 |
|
|
- resolves: #1430755 - Fix 'net ads' keytab handling |
2714 |
|
|
|
2715 |
|
|
* Wed Mar 15 2017 Alexander Bokovoy <abokovoy@redhat.com> - 4.6.0-4 |
2716 |
|
|
- Export internal arcfour_crypt_blob in Python as samba.arcfour_encrypt |
2717 |
|
|
- related: #1391954 - Update to Samba 4.6.0 |
2718 |
|
|
|
2719 |
|
|
* Fri Mar 10 2017 Alexander Bokovoy <abokovoy@redhat.com> - 4.6.0-3 |
2720 |
|
|
- Ensure we set realm when updating ccache in auth/credentials |
2721 |
|
|
- resolves: #1430759 - use GSSAPI gss_acquire_cred_from call for gssproxy support |
2722 |
|
|
|
2723 |
|
|
* Fri Mar 10 2017 Alexander Bokovoy <abokovoy@redhat.com> - 4.6.0-2 |
2724 |
|
|
- resolves: #1430759 - use GSSAPI gss_acquire_cred_from call for gssproxy support |
2725 |
|
|
|
2726 |
|
|
* Tue Mar 07 2017 Andreas Schneider <asn@redhat.com> - 4.6.0-1 |
2727 |
|
|
- related: #1391954 - Update to Samba 4.6.0 |
2728 |
|
|
- resolves: #1401505 - Improved idmap_hash documentation |
2729 |
|
|
- resolves: #1218926 - Samba ignores default_keytab_name in krb5.conf |
2730 |
|
|
- resolves: #1389786 - Add 'net ads dns unregister' |
2731 |
|
|
|
2732 |
|
|
* Thu Mar 02 2017 Andreas Schneider <asn@redhat.com> - 4.6.0-0.1.rc4 |
2733 |
|
|
- related: #1391954 - Update to Samba 4.6.0rc4 |
2734 |
|
|
- resolves: #1420130 - samba_krb5_wrapper does not list devices when called with |
2735 |
|
|
no arguments |
2736 |
|
|
- resolves: #1277999 - Change RPC port range to Windows defaults |
2737 |
|
|
|
2738 |
|
|
* Wed Feb 15 2017 Andreas Schneider <asn@redhat.com> - 4.6.0-0.1.rc3 |
2739 |
|
|
- resolves: #1391954 - Update to Samba 4.6.0rc3 |
2740 |
|
|
- resolves: #1271082 - Wrong groups listed when id command is called before login |
2741 |
|
|
- resolves: #1327810 - Use 'printcap cache time' for the house keeping interval |
2742 |
|
|
- resolves: #1356932 - Improve documentation for 'ldap ssl' in smb.conf manpage |
2743 |
|
|
- resolves: #1365111 - Fix printer removal if "List in Directory" checkbox is |
2744 |
|
|
unticked and printer is not listed in AD |
2745 |
|
|
- resolves: #1368439 - Fix ntlm_auth wrong password issues |
2746 |
|
|
- resolves: #1397871 - Include the system krb5.conf in winbinds generated conf |
2747 |
|
|
- resolves: #1397891 - Fix marsalling of spoolss SetPrinter info level 2 |
2748 |
|
|
- resolves: #1397895 - Add missing support APD_COPY_FROM_DIRECTORY in |
2749 |
|
|
AddPrinterDriver |
2750 |
|
|
- resolves: #1403242 - Samba can not access trusted domains through transitive |
2751 |
|
|
trusts |
2752 |
|
|
- resolves: #1403975 - Fix trusted domain logins |
2753 |
|
|
- resolves: #1411978 - Include the system krb5.conf in winbinds generated conf |
2754 |
|
|
- resolves: #1416746 - Fix division by zero error in ctdb 05.system event script |
2755 |
unnilennium |
1.4 |
|
2756 |
jpp |
1.9 |
* Tue Nov 15 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-11 |
2757 |
|
|
- related: #1377729 - Fix return code if ip not defined in gethostbyname |
2758 |
vip-ire |
1.2 |
|
2759 |
unnilennium |
1.3 |
* Wed Nov 09 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-11 |
2760 |
jpp |
1.9 |
- related: #1377307 - Add missing patch to patchset |
2761 |
vip-ire |
1.1 |
|
2762 |
unnilennium |
1.3 |
* Tue Nov 08 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-10 |
2763 |
jpp |
1.9 |
- resolves: #1377690 - Fix linking nss_wins with libreplace |
2764 |
|
|
- resolves: #1377729 - Fix nss_wins function definitions for gethostbyname* |
2765 |
|
|
- resolves: #1377307 - Fix %G substitution in AD case |
2766 |
|
|
- resolves: #1377751 - Fix regression of smbclient unable to connect to |
2767 |
unnilennium |
1.3 |
Apple and Azure |
2768 |
|
|
|
2769 |
|
|
* Wed Aug 31 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-9 |
2770 |
|
|
- related: #1365479 - Fix idmap range check |
2771 |
|
|
|
2772 |
|
|
* Fri Aug 26 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-8 |
2773 |
|
|
- related: #1193493 - Fix smbget url credentials parsing |
2774 |
|
|
|
2775 |
|
|
* Tue Aug 23 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-7 |
2776 |
|
|
- resolves: #1365479 - Fix idmap range checks for ad and hash backend |
2777 |
|
|
|
2778 |
|
|
* Tue Aug 16 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-6 |
2779 |
|
|
- resolves: #1367316 - Increase required Kerbersion version number |
2780 |
|
|
- resolves: #1366477 - Fix using the right krb5 ccache in libads |
2781 |
|
|
- resolves: #1356501 - Fix high CPU usage with smbclient connection to |
2782 |
|
|
non-reachable IP |
2783 |
|
|
|
2784 |
|
|
* Wed Aug 03 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-5 |
2785 |
|
|
- resolves: #1359091 - Package /usr/lib/samba/ldb in the common-libs package |
2786 |
|
|
- resolves: #1360788 - Fix multilib issue with ctdb-tests package |
2787 |
|
|
- resolves: #1362385 - Fix Samba ignoring supplementary groups |
2788 |
|
|
- resolves: #1364051 - Fix smbd panic with stale ctdb entries |
2789 |
|
|
|
2790 |
|
|
* Mon Jul 04 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-4 |
2791 |
|
|
- resolves: #1351655 - Fix winbind meomory leak with each cached credentials |
2792 |
|
|
login |
2793 |
|
|
- resolves: #1351961 - Fix CVE-2016-2119 |
2794 |
|
|
|
2795 |
|
|
* Thu Jun 23 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-3 |
2796 |
|
|
- related: #1260214 - Correctly warn about missing realm for ad domains |
2797 |
|
|
with 'security=domain' |
2798 |
|
|
|
2799 |
|
|
* Tue Jun 21 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-2 |
2800 |
|
|
- resolves: #1348223 - Fix sasl wrapped ldap connections |
2801 |
|
|
|
2802 |
|
|
* Wed Jun 08 2016 Andreas Schneider <asn@redhat.com> - 4.4.4-1 |
2803 |
|
|
- resolves: #1303076 - Rebase Samba to version 4.4.4 |
2804 |
|
|
- resolves: #1314673 - Fix CVE-2015-7560 |
2805 |
|
|
- resolves: #1263322 - Add '--no-dns-updates' option to 'net ads join' |
2806 |
|
|
- resolves: #1264433 - Fix segfault in pam_winbind.so with invalid config |
2807 |
|
|
options |
2808 |
|
|
- resolves: #1193504 - Fix smbget to retrieve files recursively |
2809 |
|
|
- resolves: #1193502 - Fix smbget to use command line credentials |
2810 |
|
|
- resolves: #1193493 - Fix smbget url credentials parsing |
2811 |
|
|
- resolves: #1273999 - Support printing with Kerberos credentials on newer |
2812 |
|
|
CUPS versions |
2813 |
|
|
- resolves: #1296821 - Define /etc/pam.d/samba as a non replaceable config |
2814 |
|
|
- resolves: #1261107 - Fix memory leak because of missing talloc stackframe |
2815 |
|
|
- resolves: #1333562 - Fix memory leak after smbc_free_context() |
2816 |
|
|
- resolves: #1315422 - Fix regression from CVE-2015-5252 |
2817 |
|
|
- resolves: #1316899 - Fixed idmap_hash module issues when used with others |
2818 |
|
|
- resolves: #1322691 - Fix badlock related bugs |
2819 |
|
|
- Fix CVE-2015-5370 |
2820 |
|
|
- Fix CVE-2016-2110 |
2821 |
|
|
- Fix CVE-2016-2111 |
2822 |
|
|
- Fix CVE-2016-2112 |
2823 |
|
|
- Fix CVE-2016-2113 |
2824 |
|
|
- Fix CVE-2016-2114 |
2825 |
|
|
- Fix CVE-2016-2115 |
2826 |
|
|
- Fix CVE-2016-2118 |
2827 |
|
|
- resolves: #1327951 - Fix regression with anonymous connections from OS X |
2828 |
|
|
- resolves: #1327845 - Fix pcap_cache_reload() with spoolssd |
2829 |
|
|
- resolves: #1289640 - Fix ctdb selinux issue with read only tracking dbs |
2830 |
|
|
- resolves: #1341208 - Fix enumerating groups over NSS with idmap_ad |
2831 |
|
|
- resolves: #1345827 - Fix resolving trusted domain users on domain member |
2832 |
|
|
- resolves: #1346334 - Fix typo in smb.conf.example |
2833 |
|
|
- resolves: #1335292 - Fix site-aware 'net ads join -k' |
2834 |
|
|
- resolves: #1260214 - Accept empty realm for ad domains with 'security=domain' |
2835 |
|
|
|
2836 |
|
|
* Tue May 24 2016 Guenther Deschner <gdeschner@redhat.com> - 4.2.10-8 |
2837 |
|
|
- Fix krb5 encryption type setup during join (as admin and non-admin user) |
2838 |
|
|
- resolves: #1312109 |
2839 |
|
|
|
2840 |
|
|
* Mon May 02 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-7 |
2841 |
|
|
- Fix regressions introduced with security tightening as part of Badlock release |
2842 |
|
|
- resolves: #1330199 |
2843 |
vip-ire |
1.2 |
|
2844 |
|
|
* Tue Apr 12 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-6 |
2845 |
|
|
- Fix domain member winbind not being able to talk to trusted domains' DCs |
2846 |
unnilennium |
1.3 |
- relates: #1322691 |
2847 |
vip-ire |
1.2 |
|
2848 |
|
|
* Mon Apr 11 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-5 |
2849 |
|
|
- Fix crash in smb.conf processing |
2850 |
unnilennium |
1.3 |
- relates: #1322691 |
2851 |
vip-ire |
1.2 |
|
2852 |
|
|
* Fri Apr 08 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-4 |
2853 |
|
|
- Fix LDAP SASL bind with arcfour-hmac-md5 |
2854 |
unnilennium |
1.3 |
- resolves: #1322691 |
2855 |
vip-ire |
1.2 |
|
2856 |
|
|
* Thu Apr 07 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-3 |
2857 |
|
|
- Make sure the package owns /var/lib/samba and uses it for cache purposes |
2858 |
unnilennium |
1.3 |
- resolves: #1322691 |
2859 |
vip-ire |
1.2 |
|
2860 |
|
|
* Wed Apr 06 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-2 |
2861 |
|
|
- Remove ldb modules and internal libraries for DC when not packaging DC build |
2862 |
unnilennium |
1.3 |
- resolves: #1322691 |
2863 |
vip-ire |
1.2 |
|
2864 |
|
|
* Mon Apr 04 2016 Alexander Bokovoy <abokovoy@redhat.com> - 4.2.10-1 |
2865 |
unnilennium |
1.3 |
- resolves: #1322691 |
2866 |
vip-ire |
1.2 |
|
2867 |
|
|
* Fri Mar 04 2016 Andreas Schneider <asn@redhat.com> - 4.2.3-12 |
2868 |
unnilennium |
1.3 |
- resolves: #1314673 - Fix CVE-2015-7560 |
2869 |
vip-ire |
1.2 |
|
2870 |
|
|
* Fri Dec 11 2015 Guenther Deschner <gdeschner@redhat.com> - 4.2.3-11 |
2871 |
unnilennium |
1.3 |
- resolves: #1290711 |
2872 |
vip-ire |
1.2 |
- CVE-2015-3223 Remote DoS in Samba (AD) LDAP server |
2873 |
|
|
- CVE-2015-5299 Missing access control check in shadow copy code |
2874 |
|
|
- CVE-2015-5252 Insufficient symlink verification in smbd |
2875 |
|
|
- CVE-2015-5296 Samba client requesting encryption vulnerable to |
2876 |
|
|
downgrade attack |
2877 |
vip-ire |
1.1 |
|
2878 |
|
|
* Tue Oct 27 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-10 |
2879 |
|
|
- related: #1273393 - Fix use after free with nss_wins module loaded |
2880 |
|
|
|
2881 |
|
|
* Thu Oct 22 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-9 |
2882 |
|
|
- resolves: #1273912 - Fix dependencies to samba-common |
2883 |
|
|
- resolves: #1273393 - Fix user after free in smb name resolution |
2884 |
|
|
|
2885 |
|
|
* Wed Oct 21 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-8 |
2886 |
|
|
- resolves: #1271608 - Fix upgrade path from previous rhel version |
2887 |
|
|
|
2888 |
|
|
* Tue Sep 01 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-7 |
2889 |
|
|
- resolves: #1258293 - Fix quota on XFS filesystems |
2890 |
|
|
|
2891 |
|
|
* Mon Aug 24 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-6 |
2892 |
|
|
- resolves: #1255322 - Fix 'map to guest = Bad uid' option |
2893 |
|
|
- resolves: #1255326 - Fix segfault with 'mangling method = hash' |
2894 |
|
|
|
2895 |
|
|
* Wed Aug 19 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-5 |
2896 |
|
|
- resolves: #1253193 - Fix 'force group' |
2897 |
|
|
|
2898 |
|
|
* Wed Jul 29 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-4 |
2899 |
|
|
- resolves: #1246166 - Fix a 'net ads keytab' segfault |
2900 |
|
|
|
2901 |
|
|
* Tue Jul 21 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-3 |
2902 |
|
|
- resolves: #1225719 - Fix possible segfault if we can't connect to the DC |
2903 |
|
|
|
2904 |
|
|
* Mon Jul 20 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-2 |
2905 |
|
|
- resolves: #1238194 - Fix the 'dfree command' |
2906 |
|
|
- resolves: #1216062 - Document netbios name length limitation |
2907 |
|
|
|
2908 |
|
|
* Tue Jul 14 2015 Andreas Schneider <asn@redhat.com> - 4.2.3-1 |
2909 |
|
|
- related: #1196140 - Rebase to version 4.2.3 |
2910 |
|
|
- resolves: #1237036 - Fix DCERPC PDU calculation |
2911 |
|
|
- resolves: #1237039 - Fix winbind request cancellation |
2912 |
|
|
- resolves: #1223981 - Fix possible segfault with smbX protocol setting |
2913 |
|
|
|
2914 |
|
|
* Mon Jun 22 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-3 |
2915 |
|
|
- resolves: #1228809 - Allow reauthentication without signing |
2916 |
|
|
|
2917 |
|
|
* Thu Jun 18 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-2 |
2918 |
|
|
- related: #1196140 - Add missing build dependency for libarchive |
2919 |
|
|
- related: #1196140 - Make sure we do a hardened build |
2920 |
|
|
|
2921 |
|
|
* Wed Jun 17 2015 Andreas Schneider <asn@redhat.com> - 4.2.2-1 |
2922 |
|
|
- resolves: #1196140 - Rebase Samba to version 4.2.2 |
2923 |
|
|
- resolves: #1186403 - Split patches to fix multiarch conflicts |
2924 |
|
|
- resolves: #1167325 - Retrieve printer GUID from AD if it is not in the |
2925 |
|
|
registry |
2926 |
|
|
- resolves: #1220174 - Fix issues with winbind library dependencies |
2927 |
|
|
- resolves: #1211658 - Fix stale cache entries on printer rename |
2928 |
|
|
- resolves: #1228809 - Fix reconnect on session exparation |
2929 |
|
|
|
2930 |
|
|
* Tue May 12 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-22 |
2931 |
|
|
- resolves: #1202347 - Fix NETLOGON authentication without winbindd. |
2932 |
|
|
|
2933 |
|
|
* Thu Apr 09 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-21 |
2934 |
|
|
- related: #1205703 - Rebuild Samba with new binutils package. |
2935 |
|
|
|
2936 |
|
|
* Thu Apr 02 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-20 |
2937 |
|
|
- resolves: #1205703 - Fix build with RELRO support. |
2938 |
|
|
|
2939 |
|
|
* Mon Feb 16 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-19 |
2940 |
|
|
- related: #1191341 - Update patchset for CVE-2015-0240. |
2941 |
|
|
|
2942 |
|
|
* Thu Feb 12 2015 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-18 |
2943 |
|
|
- resolves: #1191341 - CVE-2015-0240: RCE in netlogon server. |
2944 |
|
|
|
2945 |
|
|
* Fri Jan 09 2015 - Andreas Schneider <asn@redhat.com> - 4.1.12-17 |
2946 |
|
|
- related: #1177768 - Add missing requires to libwbclient. |
2947 |
|
|
|
2948 |
|
|
* Thu Jan 08 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-16 |
2949 |
|
|
- related: #1177768 - Add missing requires to libwbclient. |
2950 |
|
|
|
2951 |
|
|
* Thu Jan 08 2015 Andreas Schneider <asn@redhat.com> - 4.1.12-15 |
2952 |
|
|
- resolves: #1177768 - Fix possible segfault with 'net ads kerberos pac dump'. |
2953 |
|
|
|
2954 |
|
|
* Tue Dec 16 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-14 |
2955 |
|
|
- resolves: #1171689 - Fix smbstatus if executed as user to print error message. |
2956 |
|
|
|
2957 |
|
|
* Fri Dec 12 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-13 |
2958 |
|
|
- resolves: #1172089 - Fix 'net rpc join' with schannel changes. |
2959 |
|
|
- resolves: #1170883 - Fix 'net time system' segfault. |
2960 |
|
|
|
2961 |
|
|
* Tue Nov 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-12 |
2962 |
|
|
- related: #1162526 - Fix multilib with using alternatives for libwbclient. |
2963 |
|
|
|
2964 |
|
|
* Tue Nov 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-11 |
2965 |
|
|
- resolves: #1163748 - Fix smbclient -L fails against new Windows versions |
2966 |
|
|
over TCP. |
2967 |
|
|
- resolves: #1167849 - Fix smbstatus --profile always returning EXIT_FAILURE. |
2968 |
|
|
|
2969 |
|
|
* Thu Nov 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-10 |
2970 |
|
|
- related: #1162526 - Fix multilib with using alternatives for libwbclient. |
2971 |
|
|
|
2972 |
|
|
* Thu Nov 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-9 |
2973 |
|
|
- resolves: #1162552 - Fix net ads join segfault on big endian systems. |
2974 |
|
|
- resolves: #1164203 - Fix net ads join segfault with existing keytab. |
2975 |
|
|
|
2976 |
|
|
* Thu Nov 13 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-8 |
2977 |
|
|
- related: #1162526 - Fix multilib issues when using alternatives for libwbclient. |
2978 |
|
|
|
2979 |
|
|
* Wed Nov 12 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-7 |
2980 |
|
|
- resolves: #1162526 - Use alternatives for libwbclient. |
2981 |
|
|
|
2982 |
|
|
* Mon Nov 03 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-6 |
2983 |
|
|
- related: #1156391 - Fix netbios name truncation during registration. |
2984 |
|
|
|
2985 |
|
|
* Wed Oct 29 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-5 |
2986 |
|
|
- resolves: #1156391 - Fix netbios name truncation during registration. |
2987 |
|
|
|
2988 |
|
|
* Thu Oct 09 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-4 |
2989 |
|
|
- related: #1117770 - Fix empty full_name field with samlogon. |
2990 |
|
|
|
2991 |
|
|
* Fri Sep 26 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.12-3 |
2992 |
|
|
- resolves: #878351 - Fix usage of AES keys by default. |
2993 |
|
|
- resolves: #861366 - Fix KRB5 locator to use same KDC for joining and DNS update. |
2994 |
|
|
|
2995 |
|
|
* Tue Sep 16 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-2 |
2996 |
|
|
- resolves: #1138554 - Fix consuming a lot of CPU when re-reading printcap info. |
2997 |
|
|
- resolves: #1134323 - Fix running Samba on little endian Power8 (ppc64le). |
2998 |
|
|
- resolves: #1113064 - Fix case sensitivity options with SMB2 protocols. |
2999 |
|
|
- resolves: #1088924 - Fix applying ACL masks when setting ACLs. |
3000 |
|
|
- resolves: #1135723 - Fix 'force user' regression. |
3001 |
|
|
- resolves: #1117770 - Fix empty full_name field with samlogon. |
3002 |
|
|
- resolves: #1101210 - Fix telling systemd that nmbd is waiting for interfaces. |
3003 |
|
|
- resolves: #1127931 - Fix getgroups() with idmap_ad returning non-mapped groups. |
3004 |
|
|
- resolves: #1144963 - Fix idmap_ad with SFU against trusted domains. |
3005 |
|
|
- resolves: #1140568 - Fix a segfault in the smbclient echo command. |
3006 |
|
|
- resolves: #1089940 - Improve service principal guessing in 'net ads'. |
3007 |
|
|
- resolves: #955561 - Fix overwriting of SPNs in AD during 'net ads join'. |
3008 |
|
|
- resolves: #955562 - Add precreated SPNS from AD during keytab initialization. |
3009 |
|
|
|
3010 |
|
|
* Mon Sep 08 2014 - Andreas Schneider <asn@redhat.com> - 4.1.12-1 |
3011 |
|
|
- related: #1110820 - Rebase Samba to latest release. |
3012 |
|
|
|
3013 |
|
|
* Tue Aug 26 2014 - Andreas Schneider <asn@redhat.com> - 4.1.11-1 |
3014 |
|
|
- resolves: #1110820 - Rebase Samba to latest release. |
3015 |
|
|
|
3016 |
|
|
* Mon Aug 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-37 |
3017 |
|
|
- resolves: #1072352 - Make pidl a noarch subpackage. |
3018 |
|
|
- resolves: #1133516 - Create a samba-test-libs package. |
3019 |
|
|
- resolves: #1132873 - Add support to rebuild without clustering. |
3020 |
|
|
|
3021 |
|
|
* Fri Aug 01 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-36 |
3022 |
|
|
- resolves: #1126014 - CVE-2014-3560: remote code execution in nmbd. |
3023 |
|
|
|
3024 |
|
|
* Wed Jul 02 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-35 |
3025 |
|
|
- resolves: #1115060 - Fix potential Samba file corruption. |
3026 |
|
|
|
3027 |
|
|
* Wed Jun 11 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-34 |
3028 |
|
|
- resolves: #1105505 - CVE-2014-0244: DoS in nmbd. |
3029 |
|
|
- resolves: #1108845 - CVE-2014-3493: DoS in smbd with unicode path names. |
3030 |
|
|
- resolves: #1105574 - CVE-2014-0178: Uninitialized memory exposure. |
3031 |
|
|
|
3032 |
|
|
* Mon May 05 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-33 |
3033 |
|
|
- related: #717484 - Add missing configure line to enable profiling data support. |
3034 |
|
|
|
3035 |
|
|
* Tue Apr 22 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-32 |
3036 |
|
|
- related: #1082653 - Reuse IPv6 address during the AD domain join. |
3037 |
|
|
|
3038 |
|
|
* Thu Apr 03 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-31 |
3039 |
|
|
- resolves: #1082653 - Add IPv6 workaround for MIT kerberos. |
3040 |
|
|
|
3041 |
|
|
* Thu Apr 03 2014 - Alexander Bokovoy <abokovoy@redhat.com> - 4.1.1-30 |
3042 |
|
|
- resolves: #1083859 - Force KRB5CCNAME in Samba systemd units. |
3043 |
|
|
- related: #1082598 - Fully enables systemd integration. |
3044 |
|
|
|
3045 |
|
|
* Tue Apr 01 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-29 |
3046 |
|
|
- resolves: #1082598 - Add missing BuildRequires for systemd-devel. |
3047 |
|
|
|
3048 |
|
|
* Wed Mar 26 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-28 |
3049 |
|
|
- resolves: #1077918 - Make daemons systemd aware. |
3050 |
|
|
|
3051 |
|
|
* Mon Mar 24 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-27 |
3052 |
|
|
- resolves: #1077857 - Fix internal error received while adding trust. |
3053 |
|
|
|
3054 |
|
|
* Fri Mar 21 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-26 |
3055 |
|
|
- resolves: #1079008 - Fix fragmented rpc handling. |
3056 |
|
|
|
3057 |
|
|
* Tue Mar 18 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-25 |
3058 |
|
|
- resolves: #1077651 - Fix 'force user' option for shares. |
3059 |
|
|
|
3060 |
|
|
* Wed Mar 12 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-24 |
3061 |
|
|
- resolves: #1053748 - Enhance "net ads kerberos pac" tool. |
3062 |
|
|
|
3063 |
|
|
* Mon Mar 10 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-23 |
3064 |
|
|
- resolves: #1072804 - Fix CVE-2013-4496. |
3065 |
|
|
- resolves: #1072804 - Fix CVE-2013-6442. |
3066 |
|
|
|
3067 |
|
|
* Fri Mar 07 2014 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-22 |
3068 |
|
|
- resolves: #1024788 - Fix joining over IPv6. |
3069 |
|
|
|
3070 |
|
|
* Tue Mar 04 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-21 |
3071 |
|
|
- resolves: #1066536 - Fix NBT queries with more than 9 or more components. |
3072 |
|
|
|
3073 |
|
|
* Thu Feb 27 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-20 |
3074 |
|
|
- resolves: #1070692 - Don't package perl(Parse::Yapp::Driver) |
3075 |
|
|
|
3076 |
|
|
* Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-19 |
3077 |
|
|
- related: #1067606 - Add missing directories. |
3078 |
|
|
|
3079 |
|
|
* Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-18 |
3080 |
|
|
- related: #1067606 - Fix installation of pidl files. |
3081 |
|
|
|
3082 |
|
|
* Tue Feb 25 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-17 |
3083 |
|
|
- resolves: #1067606 - Fix wbinfo with one-way trust. |
3084 |
|
|
- resolves: #1069569 - Fix memory leak reading the printer list. |
3085 |
|
|
|
3086 |
|
|
* Thu Feb 20 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-16 |
3087 |
|
|
- resolves: #1063186 - Fix force_user with security=ads. |
3088 |
|
|
|
3089 |
|
|
* Wed Feb 05 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-15 |
3090 |
|
|
- resolves: #1029001 - Fix force_user with security=ads. |
3091 |
|
|
|
3092 |
|
|
* Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 4.1.1-14 |
3093 |
|
|
- Mass rebuild 2014-01-24 |
3094 |
|
|
|
3095 |
|
|
* Mon Jan 13 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-13 |
3096 |
|
|
- resolves: #1051582 - Fix warnings an resource leaks reported by rpmdiff. |
3097 |
|
|
|
3098 |
|
|
* Fri Jan 10 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-12 |
3099 |
|
|
- resolves: #1050886 - Fix full CPU utilization in winbindd. |
3100 |
|
|
- resolves: #1051400 - Fix segfault in smbd. |
3101 |
|
|
- resolves: #1051402 - Fix SMB2 server panic when a smb2 brlock times out. |
3102 |
|
|
|
3103 |
|
|
* Thu Jan 09 2014 - Andreas Schneider <asn@redhat.com> - 4.1.1-11 |
3104 |
|
|
- resolves: #1042845 - Do not build with libbsd. |
3105 |
|
|
|
3106 |
|
|
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.1.1-10 |
3107 |
|
|
- Mass rebuild 2013-12-27 |
3108 |
|
|
|
3109 |
|
|
* Wed Dec 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-9 |
3110 |
|
|
- resolves: #1033122 - Fix dropbox regression. |
3111 |
|
|
- resolves: #1040464 - Fix %G substituion for config parameters. |
3112 |
|
|
|
3113 |
|
|
* Wed Dec 11 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-8 |
3114 |
|
|
- resolves: #1040052 - Fix winbind debug message NULL pointer derreference. |
3115 |
|
|
|
3116 |
|
|
* Mon Dec 09 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-7 |
3117 |
|
|
- resolves: #1039499 - Fix CVE-2012-6150. |
3118 |
|
|
|
3119 |
|
|
* Fri Nov 29 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-6 |
3120 |
|
|
- resolves: #1033109 - Fix winbind cache keysize limitations. |
3121 |
|
|
|
3122 |
|
|
* Wed Nov 27 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-5 |
3123 |
|
|
- resolves: #1034160 - Make sure we don't build the fam notify module. |
3124 |
|
|
|
3125 |
|
|
* Mon Nov 25 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-4 |
3126 |
|
|
- resolves: #1034048 - Fix group name substitution in template homedir. |
3127 |
|
|
- resolves: #1018041 - Fix CVE-2013-4408. |
3128 |
|
|
- related: #884169 - Fix several covscan warnings. |
3129 |
|
|
|
3130 |
|
|
* Mon Nov 18 2013 - Guenther Deschner <gdeschner@redhat.com> - 4.1.1-3 |
3131 |
|
|
- resolves: #948509 - Fix manpage correctness. |
3132 |
|
|
|
3133 |
|
|
* Fri Nov 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-2 |
3134 |
|
|
- related: #884169 - Fix strict aliasing warnings. |
3135 |
|
|
|
3136 |
|
|
* Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.1-1 |
3137 |
|
|
- resolves: #1024543 - Fix CVE-2013-4475. |
3138 |
|
|
- Update to Samba 4.1.1. |
3139 |
|
|
|
3140 |
|
|
* Mon Nov 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-5 |
3141 |
|
|
- related: #884169 - Fix the upgrade path. |
3142 |
|
|
|
3143 |
|
|
* Wed Oct 30 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-4 |
3144 |
|
|
- related: #884169 - Add direct dependency to samba-libs in the |
3145 |
|
|
glusterfs package. |
3146 |
|
|
- resolves: #996567 - Fix userPrincipalName composition. |
3147 |
|
|
- related: #884169 - Fix memset call with zero length in in ntdb. |
3148 |
|
|
|
3149 |
|
|
* Fri Oct 18 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-3 |
3150 |
|
|
- resolves: #1019384 - Build glusterfs VFS plguin. |
3151 |
|
|
|
3152 |
|
|
* Tue Oct 15 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-2 |
3153 |
|
|
- related: #1014656 - Fix dependency of samba-winbind-modules package. |
3154 |
|
|
|
3155 |
|
|
* Fri Oct 11 2013 - Andreas Schneider <asn@redhat.com> - 4.1.0-1 |
3156 |
|
|
- related: #985609 - Update to Samba 4.1.0. |
3157 |
|
|
|
3158 |
|
|
* Tue Oct 01 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.8 |
3159 |
|
|
- related: #985609 - Update to Samba 4.1.0rc4. |
3160 |
|
|
- resolves: #1014656 - Split out a samba-winbind-modules package. |
3161 |
|
|
|
3162 |
|
|
* Wed Sep 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.7 |
3163 |
|
|
- related: #985609 - Update to Samba 4.1.0rc3. |
3164 |
|
|
- resolves: #1005422 - Add support for KEYRING ccache type in pam_winbindd. |
3165 |
|
|
|
3166 |
|
|
* Wed Sep 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.6 |
3167 |
|
|
- resolves: #717484 - Enable profiling data support. |
3168 |
|
|
|
3169 |
|
|
* Thu Aug 22 2013 - Guenther Deschner <gdeschner@redhat.com> - 2:4.1.0-0.5 |
3170 |
|
|
- resolves: #996160 - Fix winbind with trusted domains. |
3171 |
|
|
|
3172 |
|
|
* Wed Aug 14 2013 - Andreas Schneider <asn@redhat.com> 2:4.1.0-0.4 |
3173 |
|
|
- resolves: #996160 - Fix winbind nbt name lookup segfault. |
3174 |
|
|
|
3175 |
|
|
* Mon Aug 12 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.3 |
3176 |
|
|
- related: #985609 - Update to Samba 4.1.0rc2. |
3177 |
|
|
|
3178 |
|
|
* Wed Jul 24 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.2 |
3179 |
|
|
- resolves: #985985 - Fix file conflict between samba and wine. |
3180 |
|
|
- resolves: #985107 - Add support for new default location for Kerberos |
3181 |
|
|
credential caches. |
3182 |
|
|
|
3183 |
|
|
* Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 2:4.1.0-0.1.rc1.1 |
3184 |
|
|
- Perl 5.18 rebuild |
3185 |
|
|
|
3186 |
|
|
* Wed Jul 17 2013 - Andreas Schneider <asn@redhat.com> - 2:4.1.0-0.1 |
3187 |
|
|
- Update to Samba 4.1.0rc1. |
3188 |
|
|
- resolves: #985609 |
3189 |
|
|
|
3190 |
|
|
* Mon Jul 15 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-2 |
3191 |
|
|
- resolves: #972692 - Build with PIE and full RELRO. |
3192 |
|
|
- resolves: #884169 - Add explicit dependencies suggested by rpmdiff. |
3193 |
|
|
- resolves: #981033 - Local user's krb5cc deleted by winbind. |
3194 |
|
|
- resolves: #984331 - Fix samba-common tmpfiles configuration file in wrong |
3195 |
|
|
directory. |
3196 |
|
|
|
3197 |
|
|
* Wed Jul 03 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.7-1 |
3198 |
|
|
- Update to Samba 4.0.7. |
3199 |
|
|
|
3200 |
|
|
* Fri Jun 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-3 |
3201 |
|
|
- Add UPN enumeration to passdb internal API (bso #9779). |
3202 |
|
|
|
3203 |
|
|
* Wed May 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-2 |
3204 |
|
|
- resolves: #966130 - Fix build with MIT Kerberos. |
3205 |
|
|
- List vfs modules in spec file. |
3206 |
|
|
|
3207 |
|
|
* Tue May 21 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.6-1 |
3208 |
|
|
- Update to Samba 4.0.6. |
3209 |
|
|
- Remove SWAT. |
3210 |
|
|
|
3211 |
|
|
* Wed Apr 10 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.5-1 |
3212 |
|
|
- Update to Samba 4.0.5. |
3213 |
|
|
- Add UPN enumeration to passdb internal API (bso #9779). |
3214 |
|
|
- resolves: #928947 - samba-doc is obsolete now. |
3215 |
|
|
- resolves: #948606 - LogRotate should be optional, and not a hard "Requires". |
3216 |
|
|
|
3217 |
|
|
* Fri Mar 22 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-3 |
3218 |
|
|
- resolves: #919405 - Fix and improve large_readx handling for broken clients. |
3219 |
|
|
- resolves: #924525 - Don't use waf caching. |
3220 |
|
|
|
3221 |
|
|
* Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-2 |
3222 |
|
|
- resolves: #923765 - Improve packaging of README files. |
3223 |
|
|
|
3224 |
|
|
* Wed Mar 20 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.4-1 |
3225 |
|
|
- Update to Samba 4.0.4. |
3226 |
|
|
|
3227 |
|
|
* Mon Mar 11 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-4 |
3228 |
|
|
- resolves: #919333 - Create /run/samba too. |
3229 |
|
|
|
3230 |
|
|
* Mon Mar 04 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-3 |
3231 |
|
|
- Fix the cache dir to be /var/lib/samba to support upgrades. |
3232 |
|
|
|
3233 |
|
|
* Thu Feb 14 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-2 |
3234 |
|
|
- resolves: #907915 - libreplace.so => not found |
3235 |
|
|
|
3236 |
|
|
* Thu Feb 07 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.3-1 |
3237 |
|
|
- Update to Samba 4.0.3. |
3238 |
|
|
- resolves: #907544 - Add unowned directory /usr/lib64/samba. |
3239 |
|
|
- resolves: #906517 - Fix pidl code generation with gcc 4.8. |
3240 |
|
|
- resolves: #908353 - Fix passdb backend ldapsam as module. |
3241 |
|
|
|
3242 |
|
|
* Wed Jan 30 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.2-1 |
3243 |
|
|
- Update to Samba 4.0.2. |
3244 |
|
|
- Fixes CVE-2013-0213. |
3245 |
|
|
- Fixes CVE-2013-0214. |
3246 |
|
|
- resolves: #906002 |
3247 |
|
|
- resolves: #905700 |
3248 |
|
|
- resolves: #905704 |
3249 |
|
|
- Fix conn->share_access which is reset between user switches. |
3250 |
|
|
- resolves: #903806 |
3251 |
|
|
- Add missing example and make sure we don't introduce perl dependencies. |
3252 |
|
|
- resolves: #639470 |
3253 |
|
|
|
3254 |
|
|
* Wed Jan 16 2013 - Andreas Schneider <asn@redhat.com> - 2:4.0.1-1 |
3255 |
|
|
- Update to Samba 4.0.1. |
3256 |
|
|
- Fixes CVE-2013-0172. |
3257 |
|
|
|
3258 |
|
|
* Mon Dec 17 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-174 |
3259 |
|
|
- Fix typo in winbind-krb-locator post uninstall script. |
3260 |
|
|
|
3261 |
|
|
* Tue Dec 11 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-173 |
3262 |
|
|
- Update to Samba 4.0.0. |
3263 |
|
|
|
3264 |
|
|
* Thu Dec 06 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-171.rc6 |
3265 |
|
|
- Fix typo in winbind-krb-locator post uninstall script. |
3266 |
|
|
|
3267 |
|
|
* Tue Dec 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-170.rc6 |
3268 |
|
|
- Update to Samba 4.0.0rc6. |
3269 |
|
|
- Add /etc/pam.d/samba for swat to work correctly. |
3270 |
|
|
- resolves #882700 |
3271 |
|
|
|
3272 |
|
|
* Fri Nov 23 2012 Guenther Deschner <gdeschner@redhat.com> - 2:4.0.0-169.rc5 |
3273 |
|
|
- Make sure ncacn_ip_tcp client code looks for NBT_NAME_SERVER name types. |
3274 |
|
|
|
3275 |
|
|
* Thu Nov 15 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-168.rc5 |
3276 |
|
|
- Reduce dependencies of samba-devel and create samba-test-devel package. |
3277 |
|
|
|
3278 |
|
|
* Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-167.rc5 |
3279 |
|
|
- Use workaround for winbind default domain only when set. |
3280 |
|
|
- Build with old ctdb support. |
3281 |
|
|
|
3282 |
|
|
* Tue Nov 13 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-166.rc5 |
3283 |
|
|
- Update to Samba 4.0.0rc5. |
3284 |
|
|
|
3285 |
|
|
* Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-165.rc4 |
3286 |
|
|
- Fix library dependencies of libnetapi. |
3287 |
|
|
|
3288 |
|
|
* Mon Nov 05 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-164.rc4 |
3289 |
|
|
- resolves: #872818 - Fix perl dependencies. |
3290 |
|
|
|
3291 |
|
|
* Tue Oct 30 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-163.rc4 |
3292 |
|
|
- Update to Samba 4.0.0rc4. |
3293 |
|
|
|
3294 |
|
|
* Mon Oct 29 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-162.rc3 |
3295 |
|
|
- resolves: #870630 - Fix scriptlets interpeting a comment as argument. |
3296 |
|
|
|
3297 |
|
|
* Fri Oct 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-161.rc3 |
3298 |
|
|
- Add missing Requries for python modules. |
3299 |
|
|
- Add NetworkManager dispatcher script for winbind. |
3300 |
|
|
|
3301 |
|
|
* Fri Oct 19 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-160.rc3 |
3302 |
|
|
- resolves: #867893 - Move /var/log/samba to samba-common package for |
3303 |
|
|
winbind which requires it. |
3304 |
|
|
|
3305 |
|
|
* Thu Oct 18 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-159.rc3 |
3306 |
|
|
- Compile default auth methods into smbd. |
3307 |
|
|
|
3308 |
|
|
* Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-158.rc3 |
3309 |
|
|
- Move pam_winbind.conf and the manpages to the right package. |
3310 |
|
|
|
3311 |
|
|
* Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-157.rc3 |
3312 |
|
|
* resolves: #866959 - Build auth_builtin as static module. |
3313 |
|
|
|
3314 |
|
|
* Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-156.rc3 |
3315 |
|
|
- Update systemd Requires to reflect latest packaging guidelines. |
3316 |
|
|
|
3317 |
|
|
* Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-155.rc3 |
3318 |
|
|
- Add back the AES patches which didn't make it in rc3. |
3319 |
|
|
|
3320 |
|
|
* Tue Oct 16 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-154.rc3 |
3321 |
|
|
- Update to 4.0.0rc3. |
3322 |
|
|
- resolves: #805562 - Unable to share print queues. |
3323 |
|
|
- resolves: #863388 - Unable to reload smbd configuration with systemctl. |
3324 |
|
|
|
3325 |
|
|
* Wed Oct 10 2012 - Alexander Bokovoy <abokovoy@redhat.com> - 2:4.0.0-153.rc2 |
3326 |
|
|
- Use alternatives to configure winbind_krb5_locator.so |
3327 |
|
|
- Fix Requires for winbind. |
3328 |
|
|
|
3329 |
|
|
* Thu Oct 04 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-152.rc2 |
3330 |
|
|
- Add kerberos AES support. |
3331 |
|
|
- Fix printing initialization. |
3332 |
|
|
|
3333 |
|
|
* Tue Oct 02 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-151.rc2 |
3334 |
|
|
- Update to 4.0.0rc2. |
3335 |
|
|
|
3336 |
|
|
* Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-150.rc1 |
3337 |
|
|
- Fix Obsoletes/Provides for update from samba4. |
3338 |
|
|
- Bump release number to be bigger than samba4. |
3339 |
|
|
|
3340 |
|
|
* Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-96.rc1 |
3341 |
|
|
- Package smbprint again. |
3342 |
|
|
|
3343 |
|
|
* Wed Sep 26 2012 - Andreas Schneider <asn@redhat.com> - 2:4.0.0-95.rc1 |
3344 |
|
|
- Update to 4.0.0rc1. |
3345 |
|
|
|
3346 |
|
|
* Mon Aug 20 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.7-94.2 |
3347 |
|
|
- Update to 3.6.7 |
3348 |
|
|
|
3349 |
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.6.6-93.2 |
3350 |
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
3351 |
|
|
|
3352 |
|
|
* Thu Jul 19 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-93 |
3353 |
|
|
- Fix printing tdb upgrade for 3.6.6 |
3354 |
|
|
- resolves: #841609 |
3355 |
|
|
|
3356 |
|
|
* Sun Jul 15 2012 Ville Skyttä <ville.skytta@iki.fi> - 2:3.6.6-92 |
3357 |
|
|
- Call ldconfig at libwbclient and -winbind-clients post(un)install time. |
3358 |
|
|
- Fix empty localization files, use %%find_lang to find and %%lang-mark them. |
3359 |
|
|
- Escape macros in %%changelog. |
3360 |
|
|
- Fix source tarball URL. |
3361 |
|
|
|
3362 |
|
|
* Tue Jun 26 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.6-91 |
3363 |
|
|
- Update to 3.6.6 |
3364 |
|
|
|
3365 |
|
|
* Thu Jun 21 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-90 |
3366 |
|
|
- Fix ldonfig. |
3367 |
|
|
- Require systemd for samba-common package. |
3368 |
|
|
- resolves: #829197 |
3369 |
|
|
|
3370 |
|
|
* Mon Jun 18 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-89 |
3371 |
|
|
- Fix usrmove paths. |
3372 |
|
|
- resolves: #829197 |
3373 |
|
|
|
3374 |
|
|
* Tue May 15 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-88 |
3375 |
|
|
- Move tmpfiles.d config to common package as it is needed for smbd and |
3376 |
|
|
winbind. |
3377 |
|
|
- Make sure tmpfiles get created after installation. |
3378 |
|
|
|
3379 |
|
|
* Wed May 09 2012 Guenther Deschner <gdeschner@redhat.com> - 2:3.6.5-87 |
3380 |
|
|
- Correctly use system iniparser library |
3381 |
|
|
|
3382 |
|
|
* Fri May 04 2012 Andreas Schneider <asn@redhat.com> - 2:3.6.5-86 |
3383 |
|
|
- Bump Epoch to fix a problem with a Samba4 update in testing. |
3384 |
|
|
|
3385 |
|
|
* Mon Apr 30 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.5-85 |
3386 |
|
|
- Security Release, fixes CVE-2012-2111 |
3387 |
|
|
- resolves: #817551 |
3388 |
|
|
|
3389 |
|
|
* Mon Apr 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.4-84 |
3390 |
|
|
- Fix creation of /var/run/samba. |
3391 |
|
|
- resolves: #751625 |
3392 |
|
|
|
3393 |
|
|
* Fri Apr 20 2012 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.4-83 |
3394 |
|
|
- Avoid private krb5_locate_kdc usage |
3395 |
|
|
- resolves: #754783 |
3396 |
|
|
|
3397 |
|
|
* Thu Apr 12 2012 Jon Ciesla <limburgher@gmail.com> - 1:3.6.4-82 |
3398 |
|
|
- Update to 3.6.4 |
3399 |
|
|
- Fixes CVE-2012-1182 |
3400 |
|
|
|
3401 |
|
|
* Mon Mar 19 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-81 |
3402 |
|
|
- Fix provides for of libwclient-devel for samba-winbind-devel. |
3403 |
|
|
|
3404 |
|
|
* Thu Feb 23 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-80 |
3405 |
|
|
- Add commented out 'max protocol' to the default config. |
3406 |
|
|
|
3407 |
|
|
* Mon Feb 13 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-79 |
3408 |
|
|
- Create a libwbclient package. |
3409 |
|
|
- Replace winbind-devel with libwbclient-devel package. |
3410 |
|
|
|
3411 |
|
|
* Mon Jan 30 2012 Andreas Schneider <asn@redhat.com> - 1:3.6.3-78 |
3412 |
|
|
- Update to 3.6.3 |
3413 |
|
|
- Fixes CVE-2012-0817 |
3414 |
|
|
|
3415 |
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.1-77.1 |
3416 |
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
3417 |
|
|
|
3418 |
|
|
* Mon Dec 05 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-77 |
3419 |
|
|
- Fix winbind cache upgrade. |
3420 |
|
|
- resolves: #760137 |
3421 |
|
|
|
3422 |
|
|
* Fri Nov 18 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-76 |
3423 |
|
|
- Fix piddir to match with systemd files. |
3424 |
|
|
- Fix crash bug in the debug system. |
3425 |
|
|
- resolves: #754525 |
3426 |
|
|
|
3427 |
|
|
* Fri Nov 04 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-75 |
3428 |
|
|
- Fix systemd dependencies |
3429 |
|
|
- resolves: #751397 |
3430 |
|
|
|
3431 |
|
|
* Wed Oct 26 2011 Andreas Schneider <asn@redhat.com> - 1:3.6.1-74 |
3432 |
|
|
- Update to 3.6.1 |
3433 |
|
|
|
3434 |
|
|
* Tue Oct 04 2011 Guenther Deschner <gdeschner@redhat.com> - 1:3.6.0-73 |
3435 |
|
|
- Fix nmbd startup |
3436 |
|
|
- resolves: #741630 |
3437 |
|
|
|
3438 |
|
|
* Tue Sep 20 2011 Tom Callaway <spot@fedoraproject.org> - 1:3.6.0-72 |
3439 |
|
|
- convert to systemd |
3440 |
|
|
- restore epoch from f15 |
3441 |
|
|
|
3442 |
|
|
* Sat Aug 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0-71 |
3443 |
|
|
- Update to 3.6.0 final |
3444 |
|
|
|
3445 |
|
|
* Sun Jul 31 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc3-70 |
3446 |
|
|
- Update to 3.6.0rc3 |
3447 |
|
|
|
3448 |
|
|
* Tue Jun 07 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc2-69 |
3449 |
|
|
- Update to 3.6.0rc2 |
3450 |
|
|
|
3451 |
|
|
* Tue May 17 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0rc1-68 |
3452 |
|
|
- Update to 3.6.0rc1 |
3453 |
|
|
|
3454 |
|
|
* Wed Apr 27 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre3-67 |
3455 |
|
|
- Update to 3.6.0pre3 |
3456 |
|
|
|
3457 |
|
|
* Wed Apr 13 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre2-66 |
3458 |
|
|
- Update to 3.6.0pre2 |
3459 |
|
|
|
3460 |
|
|
* Fri Mar 11 2011 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-65 |
3461 |
|
|
- Enable quota support |
3462 |
|
|
|
3463 |
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.6.0-64pre1.1 |
3464 |
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
3465 |
|
|
|
3466 |
|
|
* Wed Nov 24 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-64 |
3467 |
|
|
- Add %%ghost entry for /var/run using tmpfs |
3468 |
|
|
- resolves: #656685 |
3469 |
|
|
|
3470 |
|
|
* Thu Aug 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-63 |
3471 |
|
|
- Put winbind krb5 locator plugin into a separate rpm |
3472 |
|
|
- resolves: #627181 |
3473 |
|
|
|
3474 |
|
|
* Tue Aug 03 2010 Guenther Deschner <gdeschner@redhat.com> - 3.6.0pre1-62 |
3475 |
|
|
- Update to 3.6.0pre1 |
3476 |
|
|
|
3477 |
|
|
* Wed Jun 23 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.4-61 |
3478 |
|
|
- Update to 3.5.4 |
3479 |
|
|
|
3480 |
|
|
* Wed May 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.3-60 |
3481 |
|
|
- Update to 3.5.3 |
3482 |
|
|
- Make sure nmb and smb initscripts return LSB compliant return codes |
3483 |
|
|
- Fix winbind over ipv6 |
3484 |
|
|
|
3485 |
|
|
* Wed Apr 07 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.2-59 |
3486 |
|
|
- Update to 3.5.2 |
3487 |
|
|
|
3488 |
|
|
* Mon Mar 08 2010 Simo Sorce <ssorce@redhat.com> - 3.5.1-58 |
3489 |
|
|
- Security update to 3.5.1 |
3490 |
|
|
- Fixes CVE-2010-0728 |
3491 |
|
|
|
3492 |
|
|
* Mon Mar 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-57 |
3493 |
|
|
- Remove cifs.upcall and mount.cifs entirely |
3494 |
|
|
|
3495 |
|
|
* Mon Mar 01 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0-56 |
3496 |
|
|
- Update to 3.5.0 |
3497 |
|
|
|
3498 |
|
|
* Fri Feb 19 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc3-55 |
3499 |
|
|
- Update to 3.5.0rc3 |
3500 |
|
|
|
3501 |
|
|
* Tue Jan 26 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc2-54 |
3502 |
|
|
- Update to 3.5.0rc2 |
3503 |
|
|
|
3504 |
|
|
* Fri Jan 15 2010 Jeff Layton <jlayton@redhat.com> - 3.5.0rc1-53 |
3505 |
|
|
- separate out CIFS tools into cifs-utils package |
3506 |
|
|
|
3507 |
|
|
* Fri Jan 08 2010 Guenther Deschner <gdeschner@redhat.com> - 3.5.0rc1-52 |
3508 |
|
|
- Update to 3.5.0rc1 |
3509 |
|
|
|
3510 |
|
|
* Tue Dec 15 2009 Guenther Deschner <gdeschner@redhat.com> - 3.5.0pre2-51 |
3511 |
|
|
- Update to 3.5.0pre2 |
3512 |
|
|
- Remove umount.cifs |
3513 |
|
|
|
3514 |
|
|
* Wed Nov 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-49 |
3515 |
|
|
- Various updates to inline documentation in default smb.conf file |
3516 |
|
|
- resolves: #483703 |
3517 |
|
|
|
3518 |
|
|
* Thu Oct 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.3-48 |
3519 |
|
|
- Update to 3.4.3 |
3520 |
|
|
|
3521 |
|
|
* Fri Oct 09 2009 Simo Sorce <ssorce@redhat.com> - 3.4.2-47 |
3522 |
|
|
- Spec file cleanup |
3523 |
|
|
- Fix sources upstream location |
3524 |
|
|
- Remove conditionals to build talloc and tdb, now they are completely indepent |
3525 |
|
|
packages in Fedora |
3526 |
|
|
- Add defattr() where missing |
3527 |
|
|
- Turn all tabs into 4 spaces |
3528 |
|
|
- Remove unused migration script |
3529 |
|
|
- Split winbind-clients out of main winbind package to avoid multilib to include |
3530 |
|
|
huge packages for no good reason |
3531 |
|
|
|
3532 |
|
|
* Thu Oct 01 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.2-0.46 |
3533 |
|
|
- Update to 3.4.2 |
3534 |
|
|
- Security Release, fixes CVE-2009-2813, CVE-2009-2948 and CVE-2009-2906 |
3535 |
|
|
|
3536 |
|
|
* Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 3.4.1-0.45 |
3537 |
|
|
- Use password-auth common PAM configuration instead of system-auth |
3538 |
|
|
|
3539 |
|
|
* Wed Sep 09 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.1-0.44 |
3540 |
|
|
- Update to 3.4.1 |
3541 |
|
|
|
3542 |
|
|
* Thu Aug 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.43 |
3543 |
|
|
- Fix cli_read() |
3544 |
|
|
- resolves: #516165 |
3545 |
|
|
|
3546 |
|
|
* Thu Aug 06 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.42 |
3547 |
|
|
- Fix required talloc version number |
3548 |
|
|
- resolves: #516086 |
3549 |
|
|
|
3550 |
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.4.0-0.41.1 |
3551 |
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
3552 |
|
|
|
3553 |
|
|
* Fri Jul 17 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.41 |
3554 |
|
|
- Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) |
3555 |
|
|
- Specify required talloc and tdb version for BuildRequires |
3556 |
|
|
|
3557 |
|
|
* Fri Jul 03 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0-0.40 |
3558 |
|
|
- Update to 3.4.0 |
3559 |
|
|
|
3560 |
|
|
* Fri Jun 19 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0rc1-0.39 |
3561 |
|
|
- Update to 3.4.0rc1 |
3562 |
|
|
|
3563 |
|
|
* Mon Jun 08 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre2-0.38 |
3564 |
|
|
- Update to 3.4.0pre2 |
3565 |
|
|
|
3566 |
|
|
* Thu Apr 30 2009 Guenther Deschner <gdeschner@redhat.com> - 3.4.0pre1-0.37 |
3567 |
|
|
- Update to 3.4.0pre1 |
3568 |
|
|
|
3569 |
|
|
* Wed Apr 29 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.4-0.36 |
3570 |
|
|
- Update to 3.3.4 |
3571 |
|
|
|
3572 |
|
|
* Mon Apr 20 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.35 |
3573 |
|
|
- Enable build of idmap_tdb2 for clustered setups |
3574 |
|
|
|
3575 |
|
|
* Wed Apr 1 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.3-0.34 |
3576 |
|
|
- Update to 3.3.3 |
3577 |
|
|
|
3578 |
|
|
* Thu Mar 26 2009 Simo Sorce <ssorce@redhat.com> - 3.3.2-0.33 |
3579 |
|
|
- Fix nmbd init script nmbd reload was causing smbd not nmbd to reload the |
3580 |
|
|
configuration |
3581 |
|
|
- Fix upstream bug 6224, nmbd was waiting 5+ minutes before running elections on |
3582 |
|
|
startup, causing your own machine not to show up in the network for 5 minutes |
3583 |
|
|
if it was the only client in that workgroup (fix committed upstream) |
3584 |
|
|
|
3585 |
|
|
* Thu Mar 12 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.2-0.31 |
3586 |
|
|
- Update to 3.3.2 |
3587 |
|
|
- resolves: #489547 |
3588 |
|
|
|
3589 |
|
|
* Thu Mar 5 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.30 |
3590 |
|
|
- Add libcap-devel to requires list (resolves: #488559) |
3591 |
|
|
|
3592 |
|
|
* Tue Mar 3 2009 Simo Sorce <ssorce@redhat.com> - 3.3.1-0.29 |
3593 |
|
|
- Make the talloc and ldb packages optionsl and disable their build within |
3594 |
|
|
the samba3 package, they are now built as part of the samba4 package |
3595 |
|
|
until they will both be released as independent packages. |
3596 |
|
|
|
3597 |
|
|
* Wed Feb 25 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.28 |
3598 |
|
|
- Enable cluster support |
3599 |
|
|
|
3600 |
|
|
* Tue Feb 24 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.1-0.27 |
3601 |
|
|
- Update to 3.3.1 |
3602 |
|
|
|
3603 |
|
|
* Sat Feb 21 2009 Simo Sorce <ssorce@redhat.com> - 3.3.0-0.26 |
3604 |
|
|
- Rename ldb* tools to ldb3* to avoid conflicts with newer ldb releases |
3605 |
|
|
|
3606 |
|
|
* Tue Feb 3 2009 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0.25 |
3607 |
|
|
- Update to 3.3.0 final |
3608 |
|
|
- Add upstream fix for ldap connections to AD (Bug #6073) |
3609 |
|
|
- Remove bogus perl dependencies (resolves: #473051) |
3610 |
|
|
|
3611 |
|
|
* Fri Nov 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.3.0-0rc1.24 |
3612 |
|
|
- Update to 3.3.0rc1 |
3613 |
|
|
|
3614 |
|
|
* Thu Nov 27 2008 Simo Sorce <ssorce@redhat.com> - 3.2.5-0.23 |
3615 |
|
|
- Security Release, fixes CVE-2008-4314 |
3616 |
|
|
|
3617 |
|
|
* Thu Sep 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.4-0.22 |
3618 |
|
|
- Update to 3.2.4 |
3619 |
|
|
- resolves: #456889 |
3620 |
|
|
- move cifs.upcall to /usr/sbin |
3621 |
|
|
|
3622 |
|
|
* Wed Aug 27 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.3-0.21 |
3623 |
|
|
- Security fix for CVE-2008-3789 |
3624 |
|
|
|
3625 |
|
|
* Mon Aug 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.2-0.20 |
3626 |
|
|
- Update to 3.2.2 |
3627 |
|
|
|
3628 |
|
|
* Mon Aug 11 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.19 |
3629 |
|
|
- Add fix for CUPS problem, fixes bug #453951 |
3630 |
|
|
|
3631 |
|
|
* Wed Aug 6 2008 Simo Sorce <ssorce@redhat.com> - 3.2.1-0.18 |
3632 |
|
|
- Update to 3.2.1 |
3633 |
|
|
|
3634 |
|
|
* Tue Jul 1 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-2.17 |
3635 |
|
|
- Update to 3.2.0 final |
3636 |
|
|
- resolves: #452622 |
3637 |
|
|
|
3638 |
|
|
* Tue Jun 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc2.16 |
3639 |
|
|
- Update to 3.2.0rc2 |
3640 |
|
|
- resolves: #449522 |
3641 |
|
|
- resolves: #448107 |
3642 |
|
|
|
3643 |
|
|
* Fri May 30 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.15 |
3644 |
|
|
- Fix security=server |
3645 |
|
|
- resolves: #449038, #449039 |
3646 |
|
|
|
3647 |
|
|
* Wed May 28 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.14 |
3648 |
|
|
- Add fix for CVE-2008-1105 |
3649 |
|
|
- resolves: #446724 |
3650 |
|
|
|
3651 |
|
|
* Fri May 23 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.rc1.13 |
3652 |
|
|
- Update to 3.2.0rc1 |
3653 |
|
|
|
3654 |
|
|
* Wed May 21 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-1.pre3.12 |
3655 |
|
|
- make it possible to print against Vista and XP SP3 as servers |
3656 |
|
|
- resolves: #439154 |
3657 |
|
|
|
3658 |
|
|
* Thu May 15 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.11 |
3659 |
|
|
- Add "net ads join createcomputer=ou1/ou2/ou3" fix (BZO #5465) |
3660 |
|
|
|
3661 |
|
|
* Fri May 09 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.10 |
3662 |
|
|
- Add smbclient fix (BZO #5452) |
3663 |
|
|
|
3664 |
|
|
* Fri Apr 25 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre3.9 |
3665 |
|
|
- Update to 3.2.0pre3 |
3666 |
|
|
|
3667 |
|
|
* Tue Mar 18 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.8 |
3668 |
|
|
- Add fixes for libsmbclient and support for r/o relocations |
3669 |
|
|
|
3670 |
|
|
* Mon Mar 10 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.7 |
3671 |
|
|
- Fix libnetconf, libnetapi and msrpc DSSETUP call |
3672 |
|
|
|
3673 |
|
|
* Thu Mar 06 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.6 |
3674 |
|
|
- Create separate packages for samba-winbind and samba-winbind-devel |
3675 |
|
|
- Add cifs.spnego helper |
3676 |
|
|
|
3677 |
|
|
* Wed Mar 05 2008 Guenther Deschner <gdeschner@redhat.com> - 3.2.0-1.pre2.3 |
3678 |
|
|
- Update to 3.2.0pre2 |
3679 |
|
|
- Add talloc and tdb lib and devel packages |
3680 |
|
|
- Add domainjoin-gui package |
3681 |
|
|
|
3682 |
|
|
* Fri Feb 22 2008 Simo Sorce <ssorce@redhat.com> - 3.2.0-0.pre1.3 |
3683 |
|
|
- Try to fix GCC 4.3 build |
3684 |
|
|
- Add --with-dnsupdate flag and also make sure other flags are required just to |
3685 |
|
|
be sure the features are included without relying on autodetection to be |
3686 |
|
|
successful |
3687 |
|
|
|
3688 |
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:3.2.0-1.pre1.2 |
3689 |
|
|
- Autorebuild for GCC 4.3 |
3690 |
|
|
|
3691 |
|
|
* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 3.2.0-0.pre1.2 |
3692 |
|
|
- Rebuild for openldap bump |
3693 |
|
|
|
3694 |
|
|
* Thu Oct 18 2007 Guenther Deschner <gdeschner@redhat.com> 3.2.0-0.pre1.1.fc9 |
3695 |
|
|
- 32/64bit padding fix (affects multilib installations) |
3696 |
|
|
|
3697 |
|
|
* Mon Oct 8 2007 Simo Sorce <ssorce@redhat.com> 3.2.0-0.pre1.fc9 |
3698 |
|
|
- New major relase, minor switched from 0 to 2 |
3699 |
|
|
- License change, the code is now GPLv3+ |
3700 |
|
|
- Numerous improvements and bugfixes included |
3701 |
|
|
- package libsmbsharemodes too |
3702 |
|
|
- remove smbldap-tools as they are already packaged separately in Fedora |
3703 |
|
|
- Fix bug 245506 |
3704 |
|
|
|
3705 |
|
|
* Tue Oct 2 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-1.fc8 |
3706 |
|
|
- rebuild with AD DNS Update support |
3707 |
|
|
|
3708 |
|
|
* Tue Sep 11 2007 Simo Sorce <ssorce@redhat.com> 3.0.26a-0.fc8 |
3709 |
|
|
- upgrade to the latest upstream realease |
3710 |
|
|
- includes security fixes released today in 3.0.26 |
3711 |
|
|
|
3712 |
|
|
* Fri Aug 24 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-4.fc8 |
3713 |
|
|
- add fix reported upstream for heavy idmap_ldap memleak |
3714 |
|
|
|
3715 |
|
|
* Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-3.fc8 |
3716 |
|
|
- fix a few places were "open" is used an interfere with the new glibc |
3717 |
|
|
|
3718 |
|
|
* Tue Aug 21 2007 Simo Sorce <ssorce@redhat.com> 3.0.25c-2.fc8 |
3719 |
|
|
- remove old source |
3720 |
|
|
- add patch to fix samba bugzilla 4772 |
3721 |
|
|
|
3722 |
|
|
* Tue Aug 21 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.25c-0.fc8 |
3723 |
|
|
- update to 3.0.25c |
3724 |
|
|
|
3725 |
|
|
* Fri Jun 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-3.fc8 |
3726 |
|
|
- handle cases defined in #243766 |
3727 |
|
|
|
3728 |
|
|
* Tue Jun 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.25b-2.fc8 |
3729 |
|
|
- update to 3.0.25b |
3730 |
|
|
- better error codes for init scripts: #244823 |
3731 |
|
|
|
3732 |
|
|
* Tue May 29 2007 Günther Deschner <gdeschner@redhat.com> |
3733 |
|
|
- fix pam_smbpass patch. |
3734 |
|
|
|
3735 |
|
|
* Fri May 25 2007 Simo Sorce <ssorce@redhat.com> |
3736 |
|
|
- update to 3.0.25a as it contains many fixes |
3737 |
|
|
- add a fix for pam_smbpass made by Günther but committed upstream after 3.0.25a was cut. |
3738 |
|
|
|
3739 |
|
|
* Mon May 14 2007 Simo Sorce <ssorce@redhat.com> |
3740 |
|
|
- final 3.0.25 |
3741 |
|
|
- includes security fixes for CVE-2007-2444,CVE-2007-2446,CVE-2007-2447 |
3742 |
|
|
|
3743 |
|
|
* Mon Apr 30 2007 Günther Deschner <gdeschner@redhat.com> |
3744 |
|
|
- move to 3.0.25rc3 |
3745 |
|
|
|
3746 |
|
|
* Thu Apr 19 2007 Simo Sorce <ssorce@redhat.com> |
3747 |
|
|
- fixes in the spec file |
3748 |
|
|
- moved to 3.0.25rc1 |
3749 |
|
|
- addedd patches (merged upstream so they will be removed in 3.0.25rc2) |
3750 |
|
|
|
3751 |
|
|
* Wed Apr 4 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-12.fc7 |
3752 |
|
|
- fixes in smb.conf |
3753 |
|
|
- advice in smb.conf to put scripts in /var/lib/samba/scripts |
3754 |
|
|
- create /var/lib/samba/scripts so that selinux can be happy |
3755 |
|
|
- fix Vista problems with msdfs errors |
3756 |
|
|
|
3757 |
|
|
* Tue Apr 03 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-11.fc7 |
3758 |
|
|
- enable PAM and NSS dlopen checks during build |
3759 |
|
|
- fix unresolved symbols in libnss_wins.so (bug #198230) |
3760 |
|
|
|
3761 |
|
|
* Fri Mar 30 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-10.fc7 |
3762 |
|
|
- set passdb backend = tdbsam as default in smb.conf |
3763 |
|
|
- remove samba-docs dependency from swat, that was a mistake |
3764 |
|
|
- put back COPYING and other files in samba-common |
3765 |
|
|
- put examples in samba not in samba-docs |
3766 |
|
|
- leave only stuff under docs/ in samba-doc |
3767 |
|
|
|
3768 |
|
|
* Thu Mar 29 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-9.fc7 |
3769 |
|
|
- integrate most of merge review proposed changes (bug #226387) |
3770 |
|
|
- remove libsmbclient-devel-static and simply stop shipping the |
3771 |
|
|
static version of smbclient as it seem this is deprecated and |
3772 |
|
|
actively discouraged |
3773 |
|
|
|
3774 |
|
|
* Wed Mar 28 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-8.fc7 |
3775 |
|
|
- fix for bug #176649 |
3776 |
|
|
|
3777 |
|
|
* Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com> |
3778 |
|
|
- remove patch for bug 106483 as it introduces a new bug that prevents |
3779 |
|
|
the use of a credentials file with the smbclient tar command |
3780 |
|
|
- move the samba private dir from being the same as the config dir |
3781 |
|
|
(/etc/samba) to /var/lib/samba/private |
3782 |
|
|
|
3783 |
|
|
* Mon Mar 26 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-7.fc7 |
3784 |
|
|
- make winbindd start earlier in the init process, at the same time |
3785 |
|
|
ypbind is usually started as well |
3786 |
|
|
- add a sepoarate init script for nmbd called nmb, we need to be able |
3787 |
|
|
to restart nmbd without dropping al smbd connections unnecessarily |
3788 |
|
|
|
3789 |
|
|
* Fri Mar 23 2007 Simo Sorce <ssorce@redhat.com> |
3790 |
|
|
- add samba.schema to /etc/openldap/schema |
3791 |
|
|
|
3792 |
|
|
* Thu Mar 22 2007 Florian La Roche <laroche@redhat.com> |
3793 |
|
|
- adjust the Requires: for the scripts, add "chkconfig --add smb" |
3794 |
|
|
|
3795 |
|
|
* Tue Mar 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-6.fc7 |
3796 |
|
|
- do not put comments inline on smb.conf options, they may be read |
3797 |
|
|
as part of the value (for example log files names) |
3798 |
|
|
|
3799 |
|
|
* Mon Mar 19 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-5.fc7 |
3800 |
|
|
- actually use the correct samba.pamd file not the old samba.pamd.stack file |
3801 |
|
|
- fix logifles and use upstream convention of log.* instead of our old *.log |
3802 |
|
|
Winbindd creates its own log.* files anyway so we will be more consistent |
3803 |
|
|
- install our own (enhanced) default smb.conf file |
3804 |
|
|
- Fix pam_winbind acct_mgmt PAM result code (prevented local users from |
3805 |
|
|
logging in). Fixed by Guenther. |
3806 |
|
|
- move some files from samba to samba-common as they are used with winbindd |
3807 |
|
|
as well |
3808 |
|
|
|
3809 |
|
|
* Fri Mar 16 2007 Guenther Deschner <gdeschner@redhat.com> 3.0.24-4.fc7 |
3810 |
|
|
- fix arch macro which reported Vista to Samba clients. |
3811 |
|
|
|
3812 |
|
|
* Thu Mar 15 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-3.fc7 |
3813 |
|
|
- Directories reorg, tdb files must go to /var/lib, not |
3814 |
|
|
to /var/cache, add migration script in %%post common |
3815 |
|
|
- Split out libsmbclient, devel and doc packages |
3816 |
|
|
- Remove libmsrpc.[h|so] for now as they are not really usable |
3817 |
|
|
- Remove kill -HUP from rotate, samba use -HUP for other things |
3818 |
|
|
noit to reopen logs |
3819 |
|
|
|
3820 |
|
|
* Tue Feb 20 2007 Simo Sorce <ssorce@redhat.com> 3.0.24-2.fc7 |
3821 |
|
|
- New upstream release |
3822 |
|
|
- Fix packaging issue wrt idmap modules used only by smbd |
3823 |
|
|
- Addedd Vista Patchset for compatibility with Windows Vista |
3824 |
|
|
- Change default of "msdfs root", it seem to cause problems with |
3825 |
|
|
some applications and it has been proposed to change it for |
3826 |
|
|
3.0.25 upstream |
3827 |
|
|
|
3828 |
|
|
* Fri Sep 1 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23c-2 |
3829 |
|
|
- New upstream release. |
3830 |
|
|
|
3831 |
|
|
* Tue Aug 8 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23b-2 |
3832 |
|
|
- New upstream release. |
3833 |
|
|
|
3834 |
|
|
* Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-3 |
3835 |
|
|
- Fix the -logfiles patch to close |
3836 |
|
|
bz#199607 Samba compiled with wrong log path. |
3837 |
|
|
bz#199206 smb.conf has incorrect log file path |
3838 |
|
|
|
3839 |
|
|
* Mon Jul 24 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23a-2 |
3840 |
|
|
- Upgrade to new upstream 3.0.23a |
3841 |
|
|
- include upstream samr_alias patch |
3842 |
|
|
|
3843 |
|
|
* Tue Jul 11 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-2 |
3844 |
|
|
- New upstream release. |
3845 |
|
|
- Use modified filter-requires-samba.sh from packaging/RHEL/setup/ |
3846 |
|
|
to get rid of bogus dependency on perl(Unicode::MapUTF8) |
3847 |
|
|
- Update the -logfiles and -smb.conf patches to work with 3.0.23 |
3848 |
|
|
|
3849 |
|
|
* Thu Jul 6 2006 Jay Fenlason <fenlason@redhat.com> 3.0.23-0.RC3 |
3850 |
|
|
- New upstream RC release. |
3851 |
|
|
- Update the -logfiles, and -passwd patches for |
3852 |
|
|
3.0.23rc3 |
3853 |
|
|
- Include the change to smb.init from Bastien Nocera <bnocera@redhat.com>) |
3854 |
|
|
to close |
3855 |
|
|
bz#182560 Wrong retval for initscript when smbd is dead |
3856 |
|
|
- Update this spec file to build with 3.0.23rc3 |
3857 |
|
|
- Remove the -install.mount.smbfs patch, since we don't install |
3858 |
|
|
mount.smbfs any more. |
3859 |
|
|
|
3860 |
|
|
* Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 2.0.21c-3 |
3861 |
|
|
- rebuilt with new gnutls |
3862 |
|
|
|
3863 |
|
|
* Fri Mar 17 2006 Jay Fenlason <fenlason@redhat.com> 2.0.21c-2 |
3864 |
|
|
- New upstream version. |
3865 |
|
|
|
3866 |
|
|
* Mon Feb 13 2006 Jay Fenlason <fenlason@redhat.com> 3.0.21b-2 |
3867 |
|
|
- New upstream version. |
3868 |
|
|
- Since the rawhide kernel has dropped support for smbfs, remove smbmount |
3869 |
|
|
and smbumount. Users should use mount.cifs instead. |
3870 |
|
|
- Upgrade to 3.0.21b |
3871 |
|
|
|
3872 |
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:3.0.20b-2.1.1 |
3873 |
|
|
- bump again for double-long bug on ppc(64) |
3874 |
|
|
|
3875 |
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> |
3876 |
|
|
- rebuilt |
3877 |
|
|
|
3878 |
|
|
* Sun Nov 13 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20b-2 |
3879 |
|
|
- turn on -DLDAP_DEPRECATED to allow access to ldap functions that have |
3880 |
|
|
been depricated in 2.3.11, but which don't have well-documented |
3881 |
|
|
replacements (ldap_simple_bind_s(), for example). |
3882 |
|
|
- Upgrade to 3.0.20b, which includes all the previous upstream patches. |
3883 |
|
|
- Updated the -warnings patch for 3.0.20a. |
3884 |
|
|
- Include --with-shared-modules=idmap_ad,idmap_rid to close |
3885 |
|
|
bz#156810 --with-shared-modules=idmap_ad,idmap_rid |
3886 |
|
|
- Include the new samba.pamd from Tomas Mraz (tmraz@redhat.com) to close |
3887 |
|
|
bz#170259 pam_stack is deprecated |
3888 |
|
|
|
3889 |
|
|
* Sun Nov 13 2005 Warren Togami <wtogami@redhat.com> 3.0.20-3 |
3890 |
|
|
- epochs from deps, req exact release |
3891 |
|
|
- rebuild against new openssl |
3892 |
|
|
|
3893 |
|
|
* Mon Aug 22 2005 Jay Fenlason <fenlason@redhat.com> 3.0.20-2 |
3894 |
|
|
- New upstream release |
3895 |
|
|
Includes five upstream patches -bug3010_v1, -groupname_enumeration_v3, |
3896 |
|
|
-regcreatekey_winxp_v1, -usrmgr_groups_v1, and -winbindd_v1 |
3897 |
|
|
This obsoletes the -pie and -delim patches |
3898 |
|
|
the -warning and -gcc4 patches are obsolete too |
3899 |
|
|
The -man, -passwd, and -smbspool patches were updated to match 3.0.20pre1 |
3900 |
|
|
Also, the -quoting patch was implemented differently upstream |
3901 |
|
|
There is now a umount.cifs executable and manpage |
3902 |
|
|
We run autogen.sh as part of the build phase |
3903 |
|
|
The testprns command is now gone |
3904 |
|
|
libsmbclient now has a man page |
3905 |
|
|
- Include -bug106483 patch to close |
3906 |
|
|
bz#106483 smbclient: -N negates the provided password, despite documentation |
3907 |
|
|
- Added the -warnings patch to quiet some compiler warnings. |
3908 |
|
|
- Removed many obsolete patches from CVS. |
3909 |
|
|
|
3910 |
|
|
* Mon May 2 2005 Jay Fenlason <fenlason@redhat.com> 3.0.14a-2 |
3911 |
|
|
- New upstream release. |
3912 |
|
|
- the -64bit-timestamps, -clitar, -establish_trust, user_rights_v1, |
3913 |
|
|
winbind_find_dc_v2 patches are now obsolete. |
3914 |
|
|
|
3915 |
|
|
* Thu Apr 7 2005 Jay Fenlason <fenlason@redhat.com> 3.0.13-2 |
3916 |
|
|
- New upstream release |
3917 |
|
|
- add my -quoting patch, to fix swat with strings that contain |
3918 |
|
|
html meta-characters, and to use correct quote characters in |
3919 |
|
|
lists, closing bz#134310 |
3920 |
|
|
- include the upstream winbindd_2k3sp1 patch |
3921 |
|
|
- include the -smbclient patch. |
3922 |
|
|
- include the -hang patch from upstream. |
3923 |
|
|
|
3924 |
|
|
* Thu Mar 24 2005 Florian La Roche <laroche@redhat.com> |
3925 |
|
|
- add a "exit 0" to the postun of the main samba package |
3926 |
|
|
|
3927 |
|
|
* Wed Mar 2 2005 Tomas Mraz <tmraz@redhat.com> 3.0.11-5 |
3928 |
|
|
- rebuild with openssl-0.9.7e |
3929 |
|
|
|
3930 |
|
|
* Thu Feb 24 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-4 |
3931 |
|
|
- Use the updated filter-requires-samba.sh file, so we don't accidentally |
3932 |
|
|
pick up a dependency on perl(Crypt::SmbHash) |
3933 |
|
|
|
3934 |
|
|
* Fri Feb 18 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-3 |
3935 |
|
|
- add -gcc4 patch to compile with gcc 4. |
3936 |
|
|
- remove the now obsolete -smbclient-kerberos.patch |
3937 |
|
|
- Include four upstream patches from |
3938 |
|
|
http://samba.org/~jerry/patches/post-3.0.11/ |
3939 |
|
|
(Slightly modified the winbind_find_dc_v2 patch to apply easily with |
3940 |
|
|
rpmbuild). |
3941 |
|
|
|
3942 |
|
|
* Fri Feb 4 2005 Jay Fenlason <fenlason@redhat.com> 3.0.11-2 |
3943 |
|
|
- include -smbspool patch to close bz#104136 |
3944 |
|
|
|
3945 |
|
|
* Wed Jan 12 2005 Jay Fenlason <fenlason@redhat.com> 3.0.10-4 |
3946 |
|
|
- Update the -man patch to fix ntlm_auth.1 too. |
3947 |
|
|
- Move pam_smbpass.so to the -common package, so both the 32 |
3948 |
|
|
and 64-bit versions will be installed on multiarch platforms. |
3949 |
|
|
This closes bz#143617 |
3950 |
|
|
- Added new -delim patch to fix mount.cifs so it can accept |
3951 |
|
|
passwords with commas in them (via environment or credentials |
3952 |
|
|
file) to close bz#144198 |
3953 |
|
|
|
3954 |
|
|
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 3.0.10-3 |
3955 |
|
|
- Rebuilt for new readline. |
3956 |
|
|
|
3957 |
|
|
* Fri Dec 17 2004 Jay Fenlason <fenlason@redhat.com> 3.0.10-2 |
3958 |
|
|
- New upstream release that closes CAN-2004-1154 bz#142544 |
3959 |
|
|
- Include the -64bit patch from Nalin. This closes bz#142873 |
3960 |
|
|
- Update the -logfiles patch to work with 3.0.10 |
3961 |
|
|
- Create /var/run/winbindd and make it part of the -common rpm to close |
3962 |
|
|
bz#142242 |
3963 |
|
|
|
3964 |
|
|
* Mon Nov 22 2004 Jay Fenlason <fenlason@redhat.com> 3.0.9-2 |
3965 |
|
|
- New upstream release. This obsoletes the -secret patch. |
3966 |
|
|
Include my changetrustpw patch to make "net ads changetrustpw" stop |
3967 |
|
|
aborting. This closes #134694 |
3968 |
|
|
- Remove obsolete triggers for ancient samba versions. |
3969 |
|
|
- Move /var/log/samba to the -common rpm. This closes #76628 |
3970 |
|
|
- Remove the hack needed to get around the bad docs files in the |
3971 |
|
|
3.0.8 tarball. |
3972 |
|
|
- Change the comment in winbind.init to point at the correct pidfile. |
3973 |
|
|
This closes #76641 |
3974 |
|
|
|
3975 |
|
|
* Mon Nov 22 2004 Than Ngo <than@redhat.com> 3.0.8-4 |
3976 |
|
|
- fix unresolved symbols in libsmbclient which caused applications |
3977 |
|
|
such as KDE's konqueror to fail when accessing smb:// URLs. #139894 |
3978 |
|
|
|
3979 |
|
|
* Thu Nov 11 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3.1 |
3980 |
|
|
- Rescue the install.mount.smbfs patch from Juanjo Villaplana |
3981 |
|
|
(villapla@si.uji.es) to prevent building the srpm from trashing your |
3982 |
|
|
installed /usr/bin/smbmount |
3983 |
|
|
|
3984 |
|
|
* Tue Nov 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-3 |
3985 |
|
|
- Include the corrected docs tarball, and use it instead of the |
3986 |
|
|
obsolete docs from the upstream 3.0.8 tarball. |
3987 |
|
|
- Update the logfiles patch to work with the updated docs. |
3988 |
|
|
|
3989 |
|
|
* Mon Nov 8 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-2 |
3990 |
|
|
- New upstream version fixes CAN-2004-0930. This obsoletes the |
3991 |
|
|
disable-sendfile, salt, signing-shortkey and fqdn patches. |
3992 |
|
|
- Add my <fenlason@redhat.com> ugly non-ascii-domain patch. |
3993 |
|
|
- Updated the pie patch for 3.0.8. |
3994 |
|
|
- Updated the logfiles patch for 3.0.8. |
3995 |
|
|
|
3996 |
|
|
* Tue Oct 26 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre2 |
3997 |
|
|
- New upstream version |
3998 |
|
|
- Add Nalin's signing-shortkey patch. |
3999 |
|
|
|
4000 |
|
|
* Tue Oct 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.3 |
4001 |
|
|
- disable the -salt patch, because it causes undefined references in |
4002 |
|
|
libsmbclient that prevent gnome-vfs from building. |
4003 |
|
|
|
4004 |
|
|
* Fri Oct 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.2 |
4005 |
|
|
- Re-enable the x_fclose patch that was accidentally disabled |
4006 |
|
|
in 3.0.8-0.pre1.1. This closes #135832 |
4007 |
|
|
- include Nalin's -fqdn and -salt patches. |
4008 |
|
|
|
4009 |
|
|
* Wed Oct 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1.1 |
4010 |
|
|
- Include disable-sendfile patch to default "use sendfile" to "no". |
4011 |
|
|
This closes #132779 |
4012 |
|
|
|
4013 |
|
|
* Wed Oct 6 2004 Jay Fenlason <fenlason@redhat.com> |
4014 |
|
|
- Include patch from Steven Lawrance (slawrance@yahoo.com) that modifies |
4015 |
|
|
smbmnt to work with 32-bit uids. |
4016 |
|
|
|
4017 |
|
|
* Mon Sep 27 2004 Jay Fenlason <fenlason@redhat.com> 3.0.8-0.pre1 |
4018 |
|
|
- new upstream release. This obsoletes the ldapsam_compat patches. |
4019 |
|
|
|
4020 |
|
|
* Wed Sep 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-4 |
4021 |
|
|
- Update docs section to not carryover the docs/manpages directory |
4022 |
|
|
This moved many files from /usr/share/doc/samba-3.0.7/docs/* to |
4023 |
|
|
/usr/share/doc/samba-3.0.7/* |
4024 |
|
|
- Modify spec file as suggested by Rex Dieter (rdieter@math.unl.edu) |
4025 |
|
|
to correctly create libsmbclient.so.0 and to use %%_initrddir instead |
4026 |
|
|
of rolling our own. This closes #132642 |
4027 |
|
|
- Add patch to default "use sendfile" to no, since sendfile appears to |
4028 |
|
|
be broken |
4029 |
|
|
- Add patch from Volker Lendecke <vl@samba.org> to help make |
4030 |
|
|
ldapsam_compat work again. |
4031 |
|
|
- Add patch from "Vince Brimhall" <vbrimhall@novell.com> for ldapsam_compat |
4032 |
|
|
These two patches close bugzilla #132169 |
4033 |
|
|
|
4034 |
|
|
* Mon Sep 13 2004 Jay Fenlason <fenlason@redhat.com> 3.0.7-3 |
4035 |
|
|
- Upgrade to 3.0.7, which fixes CAN-2004-0807 CAN-2004-0808 |
4036 |
|
|
This obsoletes the 3.0.6-schema patch. |
4037 |
|
|
- Update BuildRequires line to include openldap-devel openssl-devel |
4038 |
|
|
and cups-devel |
4039 |
|
|
|
4040 |
|
|
* Mon Aug 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.6-3 |
4041 |
|
|
- New upstream version. |
4042 |
|
|
- Include post 3.0.6 patch from "Gerald (Jerry) Carter" <jerry@samba.org> |
4043 |
|
|
to fix a duplicate in the LDAP schema. |
4044 |
|
|
- Include 64-bit timestamp patch from Ravikumar (rkumar@hp.com) |
4045 |
|
|
to allow correct timestamp handling on 64-bit platforms and fix #126109. |
4046 |
|
|
- reenable the -pie patch. Samba is too widely used, and too vulnerable |
4047 |
|
|
to potential security holes to disable an important security feature |
4048 |
|
|
like -pie. The correct fix is to have the toolchain not create broken |
4049 |
|
|
executables when programs compiled -pie are stripped. |
4050 |
|
|
- Remove obsolete patches. |
4051 |
|
|
- Modify this spec file to put libsmbclient.{a,so} in the right place on |
4052 |
|
|
x86_64 machines. |
4053 |
|
|
|
4054 |
|
|
* Thu Aug 5 2004 Jason Vas Dias <jvdias@redhat.com> 3.0.5-3 |
4055 |
|
|
- Removed '-pie' patch - 3.0.5 uses -fPIC/-PIC, and the combination |
4056 |
|
|
- resulted in executables getting corrupt stacks, causing smbmnt to |
4057 |
|
|
- get a SIGBUS in the mount() call (bug 127420). |
4058 |
|
|
|
4059 |
|
|
* Fri Jul 30 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-2 |
4060 |
|
|
- Upgrade to 3.0.5, which is a regression from 3.0.5pre1 for a |
4061 |
|
|
security fix. |
4062 |
|
|
- Include the 3.0.4-backport patch from the 3E branch. This restores |
4063 |
|
|
some of the 3.0.5pre1 and 3.0.5rc1 functionality. |
4064 |
|
|
|
4065 |
|
|
* Tue Jul 20 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5-0.pre1.1 |
4066 |
|
|
- Backport base64_decode patche to close CAN-2004-0500 |
4067 |
|
|
- Backport hash patch to close CAN-2004-0686 |
4068 |
|
|
- use_authtok patch from Nalin Dahyabhai <nalin@redhat.com> |
4069 |
|
|
- smbclient-kerberos patch from Alexander Larsson <alexl@redhat.com> |
4070 |
|
|
- passwd patch uses "*" instead of "x" for "hashed" passwords for |
4071 |
|
|
accounts created by winbind. "x" means "password is in /etc/shadow" to |
4072 |
|
|
brain-damaged pam_unix module. |
4073 |
|
|
|
4074 |
|
|
* Fri Jul 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.5.0pre1.0 |
4075 |
|
|
- New upstream version |
4076 |
|
|
- use %% { SOURCE1 } instead of a hardcoded path |
4077 |
|
|
- include -winbind patch from Gerald (Jerry) Carter (jerry@samba.org) |
4078 |
|
|
https://bugzilla.samba.org/show_bug.cgi?id=1315 |
4079 |
|
|
to make winbindd work against Windows versions that do not have |
4080 |
|
|
128 bit encryption enabled. |
4081 |
|
|
- Moved %%{_bindir}/net to the -common package, so that folks who just |
4082 |
|
|
want to use winbind, etc don't have to install -client in order to |
4083 |
|
|
"net join" their domain. |
4084 |
|
|
- New upstream version obsoletes the patches added in 3.0.3-5 |
4085 |
|
|
- Remove smbgetrc.5 man page, since we don't ship smbget. |
4086 |
|
|
|
4087 |
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> |
4088 |
|
|
- rebuilt |
4089 |
|
|
|
4090 |
|
|
* Tue May 4 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-5 |
4091 |
|
|
- Patch to allow password changes from machines patched with |
4092 |
|
|
Microsoft hotfix MS04-011. |
4093 |
|
|
- Include patches for https://bugzilla.samba.org/show_bug.cgi?id=1302 |
4094 |
|
|
and https://bugzilla.samba.org/show_bug.cgi?id=1309 |
4095 |
|
|
|
4096 |
|
|
* Thu Apr 29 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-4 |
4097 |
|
|
- Samba 3.0.3 released. |
4098 |
|
|
|
4099 |
|
|
* Wed Apr 21 2004 jay Fenlason <fenlason@redhat.com> 3.0.3-3.rc1 |
4100 |
|
|
- New upstream version |
4101 |
|
|
- updated spec file to make libsmbclient.so executable. This closes |
4102 |
|
|
bugzilla #121356 |
4103 |
|
|
|
4104 |
|
|
* Mon Apr 5 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-2.pre2 |
4105 |
|
|
- New upstream version |
4106 |
|
|
- Updated configure line to remove --with-fhs and to explicitly set all |
4107 |
|
|
the directories that --with-fhs was setting. We were overriding most of |
4108 |
|
|
them anyway. This closes #118598 |
4109 |
|
|
|
4110 |
|
|
* Mon Mar 15 2004 Jay Fenlason <fenlason@redhat.com> 3.0.3-1.pre1 |
4111 |
|
|
- New upstream version. |
4112 |
|
|
- Updated -pie and -logfiles patches for 3.0.3pre1 |
4113 |
|
|
- add krb5-devel to buildrequires, fixes #116560 |
4114 |
|
|
- Add patch from Miloslav Trmac (mitr@volny.cz) to allow non-root to run |
4115 |
|
|
"service smb status". This fixes #116559 |
4116 |
|
|
|
4117 |
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> |
4118 |
|
|
- rebuilt |
4119 |
|
|
|
4120 |
|
|
* Mon Feb 16 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2a-1 |
4121 |
|
|
- Upgrade to 3.0.2a |
4122 |
|
|
|
4123 |
|
|
* Mon Feb 16 2004 Karsten Hopp <karsten@redhat.de> 3.0.2-7 |
4124 |
|
|
- fix ownership in -common package |
4125 |
|
|
|
4126 |
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> |
4127 |
|
|
- rebuilt |
4128 |
|
|
|
4129 |
|
|
* Fri Feb 13 2004 Jay Fenlason <fenlason@redhat.com> |
4130 |
|
|
- Change all requires lines to list an explicit epoch. Closes #102715 |
4131 |
|
|
- Add an explicit Epoch so that %%{epoch} is defined. |
4132 |
|
|
|
4133 |
|
|
* Mon Feb 9 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-5 |
4134 |
|
|
- New upstream version: 3.0.2 final includes security fix for #114995 |
4135 |
|
|
(CAN-2004-0082) |
4136 |
|
|
- Edit postun script for the -common package to restart winbind when |
4137 |
|
|
appropriate. Fixes bugzilla #114051. |
4138 |
|
|
|
4139 |
|
|
* Mon Feb 2 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-3rc2 |
4140 |
|
|
- add %%dir entries for %%{_libdir}/samba and %%{_libdir}/samba/charset |
4141 |
|
|
- Upgrade to new upstream version |
4142 |
|
|
- build mount.cifs for the new cifs filesystem in the 2.6 kernel. |
4143 |
|
|
|
4144 |
|
|
* Mon Jan 19 2004 Jay Fenlason <fenlason@redhat.com> 3.0.2-1rc1 |
4145 |
|
|
- Upgrade to new upstream version |
4146 |
|
|
|
4147 |
|
|
* Wed Dec 17 2003 Felipe Alfaro Solana <felipe_alfaro@linuxmail.org> 3.0.1-1 |
4148 |
|
|
- Update to 3.0.1 |
4149 |
|
|
- Removed testparm patch as it's already merged |
4150 |
|
|
- Removed Samba.7* man pages |
4151 |
|
|
- Fixed .buildroot patch |
4152 |
|
|
- Fixed .pie patch |
4153 |
|
|
- Added new /usr/bin/tdbdump file |
4154 |
|
|
|
4155 |
|
|
* Thu Sep 25 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-15 |
4156 |
|
|
- New 3.0.0 final release |
4157 |
|
|
- merge nmbd-netbiosname and testparm patches from 3E branch |
4158 |
|
|
- updated the -logfiles patch to work against 3.0.0 |
4159 |
|
|
- updated the pie patch |
4160 |
|
|
- update the VERSION file during build |
4161 |
|
|
- use make -j if avaliable |
4162 |
|
|
- merge the winbindd_privileged change from 3E |
4163 |
|
|
- merge the "rm /usr/lib" patch that allows Samba to build on 64-bit |
4164 |
|
|
platforms despite the broken Makefile |
4165 |
|
|
|
4166 |
|
|
* Mon Aug 18 2003 Jay Fenlason <fenlason@redhat.com> |
4167 |
|
|
- Merge from samba-3E-branch after samba-3.0.0rc1 was released |
4168 |
|
|
|
4169 |
|
|
* Wed Jul 23 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-3beta3 |
4170 |
|
|
- Merge from 3.0.0-2beta3.3E |
4171 |
|
|
- (Correct log file names (#100981).) |
4172 |
|
|
- (Fix pidfile directory in samab.log) |
4173 |
|
|
- (Remove obsolete samba-3.0.0beta2.tar.bz2.md5 file) |
4174 |
|
|
- (Move libsmbclient to the -common package (#99449)) |
4175 |
|
|
|
4176 |
|
|
* Sun Jun 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.8a-4 |
4177 |
|
|
- rebuild |
4178 |
|
|
|
4179 |
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> |
4180 |
|
|
- rebuilt |
4181 |
|
|
|
4182 |
|
|
* Wed May 28 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-2 |
4183 |
|
|
- add libsmbclient.so for gnome-vfs-extras |
4184 |
|
|
- Edit specfile to specify /var/run for pid files |
4185 |
|
|
- Move /tmp/.winbindd/socket to /var/run/winbindd/socket |
4186 |
|
|
|
4187 |
|
|
* Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
4188 |
|
|
- add proper ldconfig calls |
4189 |
|
|
|
4190 |
|
|
* Thu Apr 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-1 |
4191 |
|
|
- upgrade to 2.2.8a |
4192 |
|
|
- remove old .md5 files |
4193 |
|
|
- add "pid directory = /var/run" to the smb.conf file. Fixes #88495 |
4194 |
|
|
- Patch from jra@dp.samba.org to fix a delete-on-close regression |
4195 |
|
|
|
4196 |
|
|
* Mon Mar 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8-0 |
4197 |
|
|
- Upgrade to 2.2.8 |
4198 |
|
|
- removed commented out patches. |
4199 |
|
|
- removed old patches and .md5 files from the repository. |
4200 |
|
|
- remove duplicate /sbin/chkconfig --del winbind which causes |
4201 |
|
|
warnings when removing samba. |
4202 |
|
|
- Fixed minor bug in smbprint that causes it to fail when called with |
4203 |
|
|
more than 10 parameters: the accounting file (and spool directory |
4204 |
|
|
derived from it) were being set wrong due to missing {}. This closes |
4205 |
|
|
bug #86473. |
4206 |
|
|
- updated smb.conf patch, includes new defaults to close bug #84822. |
4207 |
|
|
|
4208 |
|
|
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> |
4209 |
|
|
- rebuilt |
4210 |
|
|
|
4211 |
|
|
* Thu Feb 20 2003 Jonathan Blandford <jrb@redhat.com> 2.2.7a-5 |
4212 |
|
|
- remove swat.desktop file |
4213 |
|
|
|
4214 |
|
|
* Thu Feb 20 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.7a-4 |
4215 |
|
|
- relink libnss_wins.so with SHLD="%%{__cc} -lnsl" to force libnss_wins.so to |
4216 |
|
|
link with libnsl, avoiding unresolved symbol errors on functions in libnsl |
4217 |
|
|
|
4218 |
|
|
* Mon Feb 10 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-3 |
4219 |
|
|
- edited spec file to put .so files in the correct directories |
4220 |
|
|
on 64-bit platforms that have 32-bit compatability issues |
4221 |
|
|
(sparc64, x86_64, etc). This fixes bugzilla #83782. |
4222 |
|
|
- Added samba-2.2.7a-error.patch from twaugh. This fixes |
4223 |
|
|
bugzilla #82454. |
4224 |
|
|
|
4225 |
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
4226 |
|
|
- rebuilt |
4227 |
|
|
|
4228 |
|
|
* Thu Jan 9 2003 Jay Fenlason <fenlason@redhat.com> 2.2.7a-1 |
4229 |
|
|
- Update to 2.2.7a |
4230 |
|
|
- Change default printing system to CUPS |
4231 |
|
|
- Turn on pam_smbpass |
4232 |
|
|
- Turn on msdfs |
4233 |
|
|
|
4234 |
|
|
* Sat Jan 4 2003 Jeff Johnson <jbj@redhat.com> 2.2.7-5 |
4235 |
|
|
- use internal dep generator. |
4236 |
|
|
|
4237 |
|
|
* Sat Dec 14 2002 Tim Powers <timp@redhat.com> 2.2.7-4 |
4238 |
|
|
- don't use rpms internal dep generator |
4239 |
|
|
|
4240 |
|
|
* Mon Dec 02 2002 Elliot Lee <sopwith@redhat.com> 2.2.7-3 |
4241 |
|
|
- Fix missing doc files. |
4242 |
|
|
- Fix multilib issues |
4243 |
|
|
|
4244 |
|
|
* Wed Nov 20 2002 Bill Nottingham <notting@redhat.com> 2.2.7-2 |
4245 |
|
|
- update to 2.2.7 |
4246 |
|
|
- add patch for LFS in smbclient (<tcallawa@redhat.com>) |
4247 |
|
|
|
4248 |
|
|
* Wed Aug 28 2002 Trond Eivind Glomsød <teg@redhat.com> 2.2.5-10 |
4249 |
|
|
- logrotate fixes (#65007) |
4250 |
|
|
|
4251 |
|
|
* Mon Aug 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-9 |
4252 |
|
|
- /usr/lib was used in place of %%{_libdir} in three locations (#72554) |
4253 |
|
|
|
4254 |
|
|
* Mon Aug 5 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-8 |
4255 |
|
|
- Initscript fix (#70720) |
4256 |
|
|
|
4257 |
|
|
* Fri Jul 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-7 |
4258 |
|
|
- Enable VFS support and compile the "recycling" module (#69796) |
4259 |
|
|
- more selective includes of the examples dir |
4260 |
|
|
|
4261 |
|
|
* Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-6 |
4262 |
|
|
- Fix the lpq parser for better handling of LPRng systems (#69352) |
4263 |
|
|
|
4264 |
|
|
* Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-5 |
4265 |
|
|
- desktop file fixes (#69505) |
4266 |
|
|
|
4267 |
|
|
* Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-4 |
4268 |
|
|
- Enable ACLs |
4269 |
|
|
|
4270 |
|
|
* Tue Jun 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-3 |
4271 |
|
|
- Make it not depend on Net::LDAP - those are doc files and examples |
4272 |
|
|
|
4273 |
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> |
4274 |
|
|
- automated rebuild |
4275 |
|
|
|
4276 |
|
|
* Thu Jun 20 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.5-1 |
4277 |
|
|
- 2.2.5 |
4278 |
|
|
|
4279 |
|
|
* Fri Jun 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-5 |
4280 |
|
|
- Move the post/preun of winbind into the -common subpackage, |
4281 |
|
|
where the script is (#66128) |
4282 |
|
|
|
4283 |
|
|
* Tue Jun 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-4 |
4284 |
|
|
- Fix pidfile locations so it runs properly again (2.2.4 |
4285 |
|
|
added a new directtive - #65007) |
4286 |
|
|
|
4287 |
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com> |
4288 |
|
|
- automated rebuild |
4289 |
|
|
|
4290 |
|
|
* Tue May 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-2 |
4291 |
|
|
- Fix #64804 |
4292 |
|
|
|
4293 |
|
|
* Thu May 9 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.4-1 |
4294 |
|
|
- 2.2.4 |
4295 |
|
|
- Removed some zero-length and CVS internal files |
4296 |
|
|
- Make it build |
4297 |
|
|
|
4298 |
|
|
* Wed Apr 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-6 |
4299 |
|
|
- Don't use /etc/samba.d in smbadduser, it should be /etc/samba |
4300 |
|
|
|
4301 |
|
|
* Thu Apr 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-5 |
4302 |
|
|
- Add libsmbclient.a w/headerfile for KDE (#62202) |
4303 |
|
|
|
4304 |
|
|
* Tue Mar 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-4 |
4305 |
|
|
- Make the logrotate script look the correct place for the pid files |
4306 |
|
|
|
4307 |
|
|
* Thu Mar 14 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2.3a-3 |
4308 |
|
|
- include interfaces.o in pam_smbpass.so, which needs symbols from interfaces.o |
4309 |
|
|
(patch posted to samba-list by Ilia Chipitsine) |
4310 |
|
|
|
4311 |
|
|
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-2 |
4312 |
|
|
- Rebuild |
4313 |
|
|
|
4314 |
|
|
* Thu Feb 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3a-1 |
4315 |
|
|
- 2.2.3a |
4316 |
|
|
|
4317 |
|
|
* Mon Feb 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.3-1 |
4318 |
|
|
- 2.2.3 |
4319 |
|
|
|
4320 |
|
|
* Thu Nov 29 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-8 |
4321 |
|
|
- New pam configuration file for samba |
4322 |
|
|
|
4323 |
|
|
* Tue Nov 27 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-7 |
4324 |
|
|
- Enable PAM session controll and password sync |
4325 |
|
|
|
4326 |
|
|
* Tue Nov 13 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-6 |
4327 |
|
|
- Move winbind files to samba-common. Add separate initscript for |
4328 |
|
|
winbind |
4329 |
|
|
- Fixes for winbind - protect global variables with mutex, use |
4330 |
|
|
more secure getenv |
4331 |
|
|
|
4332 |
|
|
* Thu Nov 8 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-5 |
4333 |
|
|
- Teach smbadduser about "getent passwd" |
4334 |
|
|
- Fix more pid-file references |
4335 |
|
|
- Add (conditional) winbindd startup to the initscript, configured in |
4336 |
|
|
/etc/sysconfig/samba |
4337 |
|
|
|
4338 |
|
|
* Wed Nov 7 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-4 |
4339 |
|
|
- Fix pid-file reference in logrotate script |
4340 |
|
|
- include pam and nss modules for winbind |
4341 |
|
|
|
4342 |
|
|
* Mon Nov 5 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-3 |
4343 |
|
|
- Add "--with-utmp" to configure options (#55372) |
4344 |
|
|
- Include winbind, pam_smbpass.so, rpcclient and smbcacls |
4345 |
|
|
- start using /var/cache/samba, we need to keep state and there is |
4346 |
|
|
more than just locks involved |
4347 |
|
|
|
4348 |
|
|
* Sat Nov 03 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.2.2-2 |
4349 |
|
|
- add "reload" to the usage string in the startup script |
4350 |
|
|
|
4351 |
|
|
* Mon Oct 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.2-1 |
4352 |
|
|
- 2.2.2 |
4353 |
|
|
|
4354 |
|
|
* Tue Sep 18 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1a-5 |
4355 |
|
|
- Add patch from Jeremy Allison to fix IA64 alignment problems (#51497) |
4356 |
|
|
|
4357 |
|
|
* Mon Aug 13 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4358 |
|
|
- Don't include smbpasswd in samba, it's in samba-common (#51598) |
4359 |
|
|
- Add a disabled "obey pam restrictions" statement - it's not |
4360 |
|
|
active, as we use encrypted passwords, but if the admin turns |
4361 |
|
|
encrypted passwords off the choice is available. (#31351) |
4362 |
|
|
|
4363 |
|
|
* Wed Aug 8 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4364 |
|
|
- Use /var/cache/samba instead of /var/lock/samba |
4365 |
|
|
- Remove "domain controller" keyword from smb.conf, it's |
4366 |
|
|
deprecated (from #13704) |
4367 |
|
|
- Sync some examples with smb.conf.default |
4368 |
|
|
- Fix password synchronization (#16987) |
4369 |
|
|
|
4370 |
|
|
* Fri Jul 20 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4371 |
|
|
- Tweaks of BuildRequires (#49581) |
4372 |
|
|
|
4373 |
|
|
* Wed Jul 11 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4374 |
|
|
- 2.2.1a bugfix release |
4375 |
|
|
|
4376 |
|
|
* Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4377 |
|
|
- 2.2.1, which should work better for XP |
4378 |
|
|
|
4379 |
|
|
* Sat Jun 23 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4380 |
|
|
- 2.2.0a security fix |
4381 |
|
|
- Mark lograte and pam configuration files as noreplace |
4382 |
|
|
|
4383 |
|
|
* Fri Jun 22 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4384 |
|
|
- Add the /etc/samba directory to samba-common |
4385 |
|
|
|
4386 |
|
|
* Thu Jun 21 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4387 |
|
|
- Add improvements to the smb.conf as suggested in #16931 |
4388 |
|
|
|
4389 |
|
|
* Tue Jun 19 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4390 |
|
|
- (these changes are from the non-head version) |
4391 |
|
|
- Don't include /usr/sbin/samba, it's the same as the initscript |
4392 |
|
|
- unset TMPDIR, as samba can't write into a TMPDIR owned |
4393 |
|
|
by root (#41193) |
4394 |
|
|
- Add pidfile: lines for smbd and nmbd and a config: line |
4395 |
|
|
in the initscript (#15343) |
4396 |
|
|
- don't use make -j |
4397 |
|
|
- explicitly include /usr/share/samba, not just the files in it |
4398 |
|
|
|
4399 |
|
|
* Tue Jun 19 2001 Bill Nottingham <notting@redhat.com> |
4400 |
|
|
- mount.smb/mount.smbfs go in /sbin, *not* %%{_sbindir} |
4401 |
|
|
|
4402 |
|
|
* Fri Jun 8 2001 Preston Brown <pbrown@redhat.com> |
4403 |
|
|
- enable encypted passwords by default |
4404 |
|
|
|
4405 |
|
|
* Thu Jun 7 2001 Helge Deller <hdeller@redhat.de> |
4406 |
|
|
- build as 2.2.0-1 release |
4407 |
|
|
- skip the documentation-directories docbook, manpages and yodldocs |
4408 |
|
|
- don't include *.sgml documentation in package |
4409 |
|
|
- moved codepage-directory to /usr/share/samba/codepages |
4410 |
|
|
- make it compile with glibc-2.2.3-10 and kernel-headers-2.4.2-2 |
4411 |
|
|
|
4412 |
|
|
* Mon May 21 2001 Helge Deller <hdeller@redhat.de> |
4413 |
|
|
- updated to samba 2.2.0 |
4414 |
|
|
- moved codepages to %%{_datadir}/samba/codepages |
4415 |
|
|
- use all available CPUs for building rpm packages |
4416 |
|
|
- use %%{_xxx} defines at most places in spec-file |
4417 |
|
|
- "License:" replaces "Copyright:" |
4418 |
|
|
- dropped excludearch sparc |
4419 |
|
|
- de-activated japanese patches 100 and 200 for now |
4420 |
|
|
(they need to be fixed and tested wth 2.2.0) |
4421 |
|
|
- separated swat.desktop file from spec-file and added |
4422 |
|
|
german translations |
4423 |
|
|
- moved /etc/sysconfig/samba to a separate source-file |
4424 |
|
|
- use htmlview instead of direct call to netscape in |
4425 |
|
|
swat.desktop-file |
4426 |
|
|
|
4427 |
|
|
* Mon May 7 2001 Bill Nottingham <notting@redhat.com> |
4428 |
|
|
- device-remove security fix again (<tridge@samba.org>) |
4429 |
|
|
|
4430 |
|
|
* Fri Apr 20 2001 Bill Nottingham <notting@redhat.com> |
4431 |
|
|
- fix tempfile security problems, officially (<tridge@samba.org>) |
4432 |
|
|
- update to 2.0.8 |
4433 |
|
|
|
4434 |
|
|
* Sun Apr 8 2001 Bill Nottingham <notting@redhat.com> |
4435 |
|
|
- turn of SSL, kerberos |
4436 |
|
|
|
4437 |
|
|
* Thu Apr 5 2001 Bill Nottingham <notting@redhat.com> |
4438 |
|
|
- fix tempfile security problems (patch from <Marcus.Meissner@caldera.de>) |
4439 |
|
|
|
4440 |
|
|
* Thu Mar 29 2001 Bill Nottingham <notting@redhat.com> |
4441 |
|
|
- fix quota support, and quotas with the 2.4 kernel (#31362, #33915) |
4442 |
|
|
|
4443 |
|
|
* Mon Mar 26 2001 Nalin Dahyabhai <nalin@redhat.com> |
4444 |
|
|
- tweak the PAM code some more to try to do a setcred() after initgroups() |
4445 |
|
|
- pull in all of the optflags on i386 and sparc |
4446 |
|
|
- don't explicitly enable Kerberos support -- it's only used for password |
4447 |
|
|
checking, and if PAM is enabled it's a no-op anyway |
4448 |
|
|
|
4449 |
|
|
* Mon Mar 5 2001 Tim Waugh <twaugh@redhat.com> |
4450 |
|
|
- exit successfully from preun script (bug #30644). |
4451 |
|
|
|
4452 |
|
|
* Fri Mar 2 2001 Nalin Dahyabhai <nalin@redhat.com> |
4453 |
|
|
- rebuild in new environment |
4454 |
|
|
|
4455 |
|
|
* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com> |
4456 |
|
|
- updated japanese stuff (#27683) |
4457 |
|
|
|
4458 |
|
|
* Fri Feb 9 2001 Bill Nottingham <notting@redhat.com> |
4459 |
|
|
- fix trigger (#26859) |
4460 |
|
|
|
4461 |
|
|
* Wed Feb 7 2001 Bill Nottingham <notting@redhat.com> |
4462 |
|
|
- add i18n support, japanese patch (#26253) |
4463 |
|
|
|
4464 |
|
|
* Wed Feb 7 2001 Trond Eivind Glomsrød <teg@redhat.com> |
4465 |
|
|
- i18n improvements in initscript (#26537) |
4466 |
|
|
|
4467 |
|
|
* Wed Jan 31 2001 Bill Nottingham <notting@redhat.com> |
4468 |
|
|
- put smbpasswd in samba-common (#25429) |
4469 |
|
|
|
4470 |
|
|
* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com> |
4471 |
|
|
- new i18n stuff |
4472 |
|
|
|
4473 |
|
|
* Sun Jan 21 2001 Bill Nottingham <notting@redhat.com> |
4474 |
|
|
- rebuild |
4475 |
|
|
|
4476 |
|
|
* Thu Jan 18 2001 Bill Nottingham <notting@redhat.com> |
4477 |
|
|
- i18n-ize initscript |
4478 |
|
|
- add a sysconfig file for daemon options (#23550) |
4479 |
|
|
- clarify smbpasswd man page (#23370) |
4480 |
|
|
- build with LFS support (#22388) |
4481 |
|
|
- avoid extraneous pam error messages (#10666) |
4482 |
|
|
- add Urban Widmark's bug fixes for smbmount (#19623) |
4483 |
|
|
- fix setgid directory modes (#11911) |
4484 |
|
|
- split swat into subpackage (#19706) |
4485 |
|
|
|
4486 |
|
|
* Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com> |
4487 |
|
|
- set a default CA certificate path in smb.conf (#19010) |
4488 |
|
|
- require openssl >= 0.9.5a-20 to make sure we have a ca-bundle.crt file |
4489 |
|
|
|
4490 |
|
|
* Mon Oct 16 2000 Bill Nottingham <notting@redhat.com> |
4491 |
|
|
- fix swat only_from line (#18726, others) |
4492 |
|
|
- fix attempt to write outside buildroot on install (#17943) |
4493 |
|
|
|
4494 |
|
|
* Mon Aug 14 2000 Bill Nottingham <notting@redhat.com> |
4495 |
|
|
- add smbspool back in (#15827) |
4496 |
|
|
- fix absolute symlinks (#16125) |
4497 |
|
|
|
4498 |
|
|
* Sun Aug 6 2000 Philipp Knirsch <pknirsch@redhat.com> |
4499 |
|
|
- bugfix for smbadduser script (#15148) |
4500 |
|
|
|
4501 |
|
|
* Mon Jul 31 2000 Matt Wilson <msw@redhat.com> |
4502 |
|
|
- patch configure.ing (patch11) to disable cups test |
4503 |
|
|
- turn off swat by default |
4504 |
|
|
|
4505 |
|
|
* Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> |
4506 |
|
|
- fix condrestart stuff |
4507 |
|
|
|
4508 |
|
|
* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> |
4509 |
|
|
- add copytruncate to logrotate file (#14360) |
4510 |
|
|
- fix init script (#13708) |
4511 |
|
|
|
4512 |
|
|
* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> |
4513 |
|
|
- move initscript back |
4514 |
|
|
- remove 'Using Samba' book from %%doc |
4515 |
|
|
- move stuff to /etc/samba (#13708) |
4516 |
|
|
- default configuration tweaks (#13704) |
4517 |
|
|
- some logrotate tweaks |
4518 |
|
|
|
4519 |
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com> |
4520 |
|
|
- automatic rebuild |
4521 |
|
|
|
4522 |
|
|
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> |
4523 |
|
|
- fix logrotate script (#13698) |
4524 |
|
|
|
4525 |
|
|
* Thu Jul 6 2000 Bill Nottingham <notting@redhat.com> |
4526 |
|
|
- fix initscripts req (prereq /etc/init.d) |
4527 |
|
|
|
4528 |
|
|
* Wed Jul 5 2000 Than Ngo <than@redhat.de> |
4529 |
|
|
- add initdir macro to handle the initscript directory |
4530 |
|
|
- add a new macro to handle /etc/pam.d/system-auth |
4531 |
|
|
|
4532 |
|
|
* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com> |
4533 |
|
|
- enable Kerberos 5 and SSL support |
4534 |
|
|
- patch for duplicate profile.h headers |
4535 |
|
|
|
4536 |
|
|
* Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> |
4537 |
|
|
- fix init script |
4538 |
|
|
|
4539 |
|
|
* Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> |
4540 |
|
|
- rename samba logs (#11606) |
4541 |
|
|
|
4542 |
|
|
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> |
4543 |
|
|
- initscript munging |
4544 |
|
|
|
4545 |
|
|
* Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> |
4546 |
|
|
- configure the swat stuff usefully |
4547 |
|
|
- re-integrate some specfile tweaks that got lost somewhere |
4548 |
|
|
|
4549 |
|
|
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> |
4550 |
|
|
- rebuild to get rid of cups dependency |
4551 |
|
|
|
4552 |
|
|
* Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> |
4553 |
|
|
- tweak logrotate configurations to use the PID file in /var/lock/samba |
4554 |
|
|
|
4555 |
|
|
* Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> |
4556 |
|
|
- rebuild in new environment |
4557 |
|
|
|
4558 |
|
|
* Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com> |
4559 |
|
|
- change PAM setup to use system-auth |
4560 |
|
|
|
4561 |
|
|
* Mon May 8 2000 Bill Nottingham <notting@redhat.com> |
4562 |
|
|
- fixes for ia64 |
4563 |
|
|
|
4564 |
|
|
* Sat May 6 2000 Bill Nottingham <notting@redhat.com> |
4565 |
|
|
- switch to %%configure |
4566 |
|
|
|
4567 |
|
|
* Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> |
4568 |
|
|
- version 2.0.7 |
4569 |
|
|
|
4570 |
|
|
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> |
4571 |
|
|
- simplify preun |
4572 |
|
|
|
4573 |
|
|
* Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> |
4574 |
|
|
- fix yp_get_default_domain in autoconf |
4575 |
|
|
- only link against readline for smbclient |
4576 |
|
|
- fix log rotation (#9909) |
4577 |
|
|
|
4578 |
|
|
* Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> |
4579 |
|
|
- fix trigger, again. |
4580 |
|
|
|
4581 |
|
|
* Mon Feb 7 2000 Bill Nottingham <notting@redhat.com> |
4582 |
|
|
- fix trigger. |
4583 |
|
|
|
4584 |
|
|
* Fri Feb 4 2000 Bill Nottingham <notting@redhat.com> |
4585 |
|
|
- turn on quota support |
4586 |
|
|
|
4587 |
|
|
* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> |
4588 |
|
|
- rebuild to fox dependencies |
4589 |
|
|
- man pages are compressed |
4590 |
|
|
|
4591 |
|
|
* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> |
4592 |
|
|
- munge post scripts slightly |
4593 |
|
|
|
4594 |
|
|
* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> |
4595 |
|
|
- turn on mmap again. Wheee. |
4596 |
|
|
- ship smbmount on alpha |
4597 |
|
|
|
4598 |
|
|
* Mon Dec 6 1999 Bill Nottingham <notting@redhat.com> |
4599 |
|
|
- turn off mmap. ;) |
4600 |
|
|
|
4601 |
|
|
* Wed Dec 1 1999 Bill Nottingham <notting@redhat.com> |
4602 |
|
|
- change /var/log/samba to 0700 |
4603 |
|
|
- turn on mmap support |
4604 |
|
|
|
4605 |
|
|
* Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> |
4606 |
|
|
- update to 2.0.6 |
4607 |
|
|
|
4608 |
|
|
* Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> |
4609 |
|
|
- add a %%defattr for -common |
4610 |
|
|
|
4611 |
|
|
* Tue Oct 5 1999 Bill Nottingham <notting@redhat.com> |
4612 |
|
|
- shift some files into -client |
4613 |
|
|
- remove /home/samba from package. |
4614 |
|
|
|
4615 |
|
|
* Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> |
4616 |
|
|
- initscript oopsie. killproc <name> -HUP, not other way around. |
4617 |
|
|
|
4618 |
|
|
* Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> |
4619 |
|
|
- script cleanups. Again. |
4620 |
|
|
|
4621 |
|
|
* Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> |
4622 |
|
|
- add a patch to fix dropped reconnection attempts |
4623 |
|
|
|
4624 |
|
|
* Mon Sep 6 1999 Jeff Johnson <jbj@redhat.com> |
4625 |
|
|
- use cp rather than mv to preserve /etc/services perms (#4938 et al). |
4626 |
|
|
- use mktemp to generate /etc/tmp.XXXXXX file name. |
4627 |
|
|
- add prereqs on sed/mktemp/killall (need to move killall to /bin). |
4628 |
|
|
- fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") |
4629 |
|
|
|
4630 |
|
|
* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> |
4631 |
|
|
- sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd |
4632 |
|
|
|
4633 |
|
|
* Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> |
4634 |
|
|
- fix typo in mount.smb |
4635 |
|
|
|
4636 |
|
|
* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> |
4637 |
|
|
- add a %%trigger to work around (sort of) broken scripts in |
4638 |
|
|
previous releases |
4639 |
|
|
|
4640 |
|
|
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> |
4641 |
|
|
- initscript munging |
4642 |
|
|
|
4643 |
|
|
* Mon Aug 9 1999 Bill Nottingham <notting@redhat.com> |
4644 |
|
|
- add domain parsing to mount.smb |
4645 |
|
|
|
4646 |
|
|
* Fri Aug 6 1999 Bill Nottingham <notting@redhat.com> |
4647 |
|
|
- add a -common package, shuffle files around. |
4648 |
|
|
|
4649 |
|
|
* Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> |
4650 |
|
|
- add a chmod in %%postun so /etc/services & inetd.conf don't become unreadable |
4651 |
|
|
|
4652 |
|
|
* Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> |
4653 |
|
|
- update to 2.0.5 |
4654 |
|
|
- fix mount.smb - smbmount options changed again......... |
4655 |
|
|
- fix postun. oops. |
4656 |
|
|
- update some stuff from the samba team's spec file. |
4657 |
|
|
|
4658 |
|
|
* Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> |
4659 |
|
|
- split off clients into separate package |
4660 |
|
|
- don't run samba by default |
4661 |
|
|
|
4662 |
|
|
* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> |
4663 |
|
|
- fix one problem with mount.smb script |
4664 |
|
|
- fix smbpasswd on sparc with a really ugly kludge |
4665 |
|
|
|
4666 |
|
|
* Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> |
4667 |
|
|
- fixed logrotate script |
4668 |
|
|
|
4669 |
|
|
* Tue May 25 1999 Bill Nottingham <notting@redhat.com> |
4670 |
|
|
- turn of 64-bit locking on 32-bit platforms |
4671 |
|
|
|
4672 |
|
|
* Thu May 20 1999 Bill Nottingham <notting@redhat.com> |
4673 |
|
|
- so many releases, so little time |
4674 |
|
|
- explicitly uncomment 'printing = bsd' in sample config |
4675 |
|
|
|
4676 |
|
|
* Tue May 18 1999 Bill Nottingham <notting@redhat.com> |
4677 |
|
|
- update to 2.0.4a |
4678 |
|
|
- fix mount.smb arg ordering |
4679 |
|
|
|
4680 |
|
|
* Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> |
4681 |
|
|
- go back to stop/start for restart (-HUP didn't work in testing) |
4682 |
|
|
|
4683 |
|
|
* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> |
4684 |
|
|
- add a mount.smb to make smb mounting a little easier. |
4685 |
|
|
- smb filesystems apparently don't work on alpha. Oops. |
4686 |
|
|
|
4687 |
|
|
* Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> |
4688 |
|
|
- always create codepages |
4689 |
|
|
|
4690 |
|
|
* Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> |
4691 |
|
|
- logrotate changes |
4692 |
|
|
|
4693 |
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> |
4694 |
|
|
- auto rebuild in the new build environment (release 3) |
4695 |
|
|
|
4696 |
|
|
* Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> |
4697 |
|
|
- updated init script to use graceful restart (not stop/start) |
4698 |
|
|
|
4699 |
|
|
* Tue Mar 9 1999 Bill Nottingham <notting@redhat.com> |
4700 |
|
|
- update to 2.0.3 |
4701 |
|
|
|
4702 |
|
|
* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> |
4703 |
|
|
- update to 2.0.2 |
4704 |
|
|
|
4705 |
|
|
* Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> |
4706 |
|
|
- swat swat |
4707 |
|
|
|
4708 |
|
|
* Tue Feb 9 1999 Bill Nottingham <notting@redhat.com> |
4709 |
|
|
- fix bash2 breakage in post script |
4710 |
|
|
|
4711 |
|
|
* Fri Feb 5 1999 Bill Nottingham <notting@redhat.com> |
4712 |
|
|
- update to 2.0.0 |
4713 |
|
|
|
4714 |
|
|
* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> |
4715 |
|
|
- make sure all binaries are stripped |
4716 |
|
|
|
4717 |
|
|
* Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> |
4718 |
|
|
- update to 1.9.18p10. |
4719 |
|
|
- fix %%triggerpostun. |
4720 |
|
|
|
4721 |
|
|
* Tue Jul 07 1998 Erik Troan <ewt@redhat.com> |
4722 |
|
|
- updated postun triggerscript to check $0 |
4723 |
|
|
- clear /etc/codepages from %%preun instead of %%postun |
4724 |
|
|
|
4725 |
|
|
* Mon Jun 08 1998 Erik Troan <ewt@redhat.com> |
4726 |
|
|
- made the %%postun script a tad less agressive; no reason to remove |
4727 |
|
|
the logs or lock file (after all, if the lock file is still there, |
4728 |
|
|
samba is still running) |
4729 |
|
|
- the %%postun and %%preun should only exectute if this is the final |
4730 |
|
|
removal |
4731 |
|
|
- migrated %%triggerpostun from Red Hat's samba package to work around |
4732 |
|
|
packaging problems in some Red Hat samba releases |
4733 |
|
|
|
4734 |
|
|
* Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> |
4735 |
|
|
- minor tidy up in preparation for release of 1.9.18p5 |
4736 |
|
|
- added findsmb utility from SGI package |
4737 |
|
|
|
4738 |
|
|
* Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> |
4739 |
|
|
- Updated version and codepage info. |
4740 |
|
|
- Release to test name resolve order |
4741 |
|
|
|
4742 |
|
|
* Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> |
4743 |
|
|
- Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> |
4744 |
|
|
- Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb |
4745 |
|
|
- Compounded make line |
4746 |
|
|
- Updated smb.init restart mechanism |
4747 |
|
|
- Use compound mkdir -p line instead of individual calls to mkdir |
4748 |
|
|
- Fixed smb.conf file path for log files |
4749 |
|
|
- Fixed smb.conf file path for incoming smb print spool directory |
4750 |
|
|
- Added a number of options to smb.conf file |
4751 |
|
|
- Added smbadduser command (missed from all previous RPMs) - Doooh! |
4752 |
|
|
- Added smbuser file and smb.conf file updates for username map |
4753 |
|
|
|