samba/samba.spec

4813 lines
190 KiB
RPMSpec
Raw Normal View History

2020-10-20 10:13:15 +00:00
# The testsuite is disabled by default.
#
# To build and run the tests use:
#
2023-05-05 11:53:47 +00:00
# fedpkg mockbuild --with testsuite
2021-08-10 13:51:28 +00:00
# or
2020-10-20 12:18:49 +00:00
# rpmbuild --rebuild --with testsuite samba.src.rpm
#
%bcond_with testsuite
2020-10-19 13:53:32 +00:00
# Build with internal talloc, tevent, tdb
2020-10-20 12:18:49 +00:00
#
2023-05-05 11:53:47 +00:00
# fedpkg mockbuild --with=testsuite --with=includelibs
2021-08-10 13:51:28 +00:00
# or
2020-10-20 12:18:49 +00:00
# rpmbuild --rebuild --with=testsuite --with=includelibs samba.src.rpm
#
%bcond_with includelibs
2023-05-05 11:53:47 +00:00
# fedpkg mockbuild --with=ccache
%bcond_with ccache
# ctdb is enabled by default, you can disable it with: --without clustering
%bcond_without clustering
# Define _make_verbose if it doesn't exist (RHEL8)
%{!?_make_verbose:%define _make_verbose V=1 VERBOSE=1}
2020-10-20 05:25:57 +00:00
# Build with Active Directory Domain Controller support by default on Fedora
%if 0%{?fedora}
%bcond_without dc
%else
%bcond_with dc
%endif
2020-10-19 13:53:32 +00:00
# Build a libsmbclient package by default
%bcond_without libsmbclient
2020-10-19 13:54:28 +00:00
# Build a libwbclient package by default
%bcond_without libwbclient
2020-10-20 06:26:31 +00:00
# Build with winexe by default
2020-11-13 16:05:12 +00:00
%if 0%{?rhel}
%ifarch x86_64
%bcond_without winexe
%else
%bcond_with winexe
#endifarch
%endif
%else
2020-10-20 06:26:31 +00:00
%bcond_without winexe
2020-11-13 16:05:12 +00:00
%endif
2020-10-20 06:26:31 +00:00
# Build vfs_ceph module and ctdb cepth mutex helper by default on 64bit Fedora
2020-10-19 15:23:08 +00:00
%if 0%{?fedora}
%ifarch aarch64 ppc64le s390x x86_64 riscv64
2020-10-19 15:23:08 +00:00
%bcond_without vfs_cephfs
%bcond_without ceph_mutex
2020-10-19 15:23:08 +00:00
%else
%bcond_with vfs_cephfs
%bcond_with ceph_mutex
2020-10-19 15:23:08 +00:00
#endifarch
%endif
%else
%bcond_with vfs_cephfs
%bcond_with ceph_mutex
2020-10-19 15:23:08 +00:00
#endif fedora
%endif
2020-10-19 15:25:56 +00:00
# Build vfs_gluster module by default on 64bit Fedora
2020-11-20 14:21:44 +00:00
%global is_rhgs 0
%if "%{dist}" == ".el7rhgs" || "%{dist}" == ".el8rhgs"
2020-11-20 14:21:44 +00:00
%global is_rhgs 1
%endif
2020-10-19 15:25:56 +00:00
%if 0%{?fedora}
%ifarch aarch64 ppc64le s390x x86_64 riscv64
2020-10-19 15:25:56 +00:00
%bcond_without vfs_glusterfs
%else
%bcond_with vfs_glusterfs
#endifarch
%endif
2020-11-13 16:05:12 +00:00
#else rhel
%else
2020-11-20 14:21:44 +00:00
%if 0%{?is_rhgs}
# Enable on rhgs x86_64
2020-11-13 16:05:12 +00:00
%ifarch x86_64
%bcond_without vfs_glusterfs
2020-10-19 15:25:56 +00:00
%else
%bcond_with vfs_glusterfs
2020-11-13 16:05:12 +00:00
#endifarch
%endif
2020-11-20 14:21:44 +00:00
%else
%bcond_with vfs_glusterfs
#endif is_rhgs
%endif
2020-10-19 15:25:56 +00:00
#endif fedora
%endif
2020-10-20 06:28:57 +00:00
# Build vfs_io_uring module by default on 64bit Fedora
2021-05-12 09:31:21 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 8
2020-10-20 06:28:57 +00:00
%ifarch aarch64 ppc64le s390x x86_64 riscv64
2020-10-20 06:28:57 +00:00
%bcond_without vfs_io_uring
%else
%bcond_with vfs_io_uring
#endifarch
%endif
%else
%bcond_with vfs_io_uring
2021-05-12 09:31:21 +00:00
#endif fedora || rhel >= 8
2020-10-20 06:28:57 +00:00
%endif
# Build the ctdb-pcp-pmda package by default on Fedora, except for i686 where
# pcp is no longer supported
%if 0%{?fedora}
%ifnarch i686
%bcond_without pcp_pmda
%endif
%else
%bcond_with pcp_pmda
%endif
# Build the etcd helpers by default on Fedora
%if 0%{?fedora}
%bcond_without etcd_mutex
%else
%bcond_with etcd_mutex
%endif
2023-11-15 09:37:35 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 9
%bcond_without gpupdate
%else
%bcond_with gpupdate
%endif
%ifarch aarch64 ppc64le s390x x86_64
%bcond lmdb 1
%else
%bcond lmdb 0
%endif
%define samba_requires_eq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
%global samba_version 4.21.1
2012-09-26 12:23:24 +00:00
# The release field is extended:
# <pkgrel>[.<extraver>][.<snapinfo>]%%{?dist}[.<minorbump>]
# Square brackets indicate an optional item.
#
# The autorelease macro accepts these parameters to allow packagers to specify
# those added fields:
#
# -p: Designates a pre-release, i.e. pkgrel will be prefixed with '0.'.
# -e <extraver>: Allows specifying the extraver portion of the release.
# -b <baserelease>: Allows specifying a custom base release number (the
# default is 1).
%global samba_release %autorelease -b 100
%global pre_release %nil
2012-12-11 17:40:09 +00:00
%if "x%{?pre_release}" != "x"
%global samba_release %autorelease -p -e %pre_release
2012-12-11 17:40:09 +00:00
%endif
2012-09-26 12:23:24 +00:00
# If one of those versions change, we need to make sure we rebuilt or adapt
# projects comsuming those. This is e.g. sssd, openchange, evolution-mapi, ...
%global libdcerpc_binding_so_version 0
%global libdcerpc_server_core_so_version 0
%global libdcerpc_so_version 0
%global libndr_krb5pac_so_version 0
%global libndr_nbt_so_version 0
%global libndr_so_version 5
%global libndr_standard_so_version 0
%global libnetapi_so_version 1
%global libsamba_credentials_so_version 1
%global libsamba_errors_so_version 1
%global libsamba_hostconfig_so_version 0
%global libsamba_passdb_so_version 0
%global libsamba_policy_so_version 0
%global libsamba_util_so_version 0
%global libsamdb_so_version 0
%global libsmbconf_so_version 0
%global libsmbldap_so_version 2
%global libtevent_util_so_version 0
%global libsmbclient_so_version 0
%global libwbclient_so_version 0
%global talloc_version 2.4.2
%global tdb_version 1.4.12
%global tevent_version 0.16.1
%global required_mit_krb5 1.20.1
2015-06-24 12:00:05 +00:00
# This is a network daemon, do a hardened build
# Enables PIE and full RELRO protection
%global _hardened_build 1
# Samba cannot be linked with -Wl,-z,defs (from hardened build config)
# For exmple the samba-cluster-support library is marked to allow undefined
# symbols in the samba build.
#
# https://src.fedoraproject.org/rpms/redhat-rpm-config/blob/master/f/buildflags.md
%undefine _strict_symbol_defs_build
2015-06-24 12:00:05 +00:00
2018-01-15 14:16:16 +00:00
%global _systemd_extra "Environment=KRB5CCNAME=FILE:/run/samba/krb5cc_samba"
# Make a copy of this variable to prevent repeated evaluation of the
# embedded shell command. Avoid recursive macro definition if undefined.
%{?python3_sitearch: %global python3_sitearch %{python3_sitearch}}
2012-09-26 12:23:24 +00:00
Name: samba
Version: %{samba_version}
Release: %{samba_release}
2012-09-26 12:23:24 +00:00
%if 0%{?fedora}
2012-09-26 12:23:24 +00:00
Epoch: 2
%else
Epoch: 0
2012-09-26 12:23:24 +00:00
%endif
%global samba_depver %{epoch}:%{version}-%{release}
2012-09-26 12:23:24 +00:00
Summary: Server and Client software to interoperate with Windows machines
License: GPL-3.0-or-later AND LGPL-3.0-or-later
2019-12-06 10:24:03 +00:00
URL: https://www.samba.org
2012-09-26 12:23:24 +00:00
2018-04-12 09:30:24 +00:00
# This is a xz recompressed file of https://ftp.samba.org/pub/samba/samba-%%{version}%%{pre_release}.tar.gz
Source0: https://ftp.samba.org/pub/samba/samba-%{version}%{pre_release}.tar.gz#/samba-%{version}%{pre_release}.tar.xz
2017-05-24 09:20:26 +00:00
Source1: https://ftp.samba.org/pub/samba/samba-%{version}%{pre_release}.tar.asc
2021-01-26 14:04:19 +00:00
Source2: samba-pubkey_AA99442FB680B620.gpg
# Red Hat specific replacement-files
2019-12-05 17:09:34 +00:00
Source10: samba.logrotate
2018-06-27 11:48:45 +00:00
Source11: smb.conf.vendor
Source12: smb.conf.example
Source13: pam_winbind.conf
Source14: samba.pamd
Source15: usershares.conf.vendor
Source16: samba-systemd-sysusers.conf
Source17: samba-usershares-systemd-sysusers.conf
Source18: samba-winbind-systemd-sysusers.conf
2012-09-26 12:23:24 +00:00
2018-06-27 11:48:45 +00:00
Source201: README.downgrade
Source202: samba.abignore
# Patch0 is created using:
#
# git clone git@gitlab.com:samba-redhat/samba.git
# cd samba
# git checkout v4-21-redhat
# git format-patch --stdout -l1 --no-renames -N > redhat-4.21.patch
# where N is number of commits
Patch0: redhat-4.21.patch
2012-09-26 12:23:24 +00:00
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-04-10 12:02:53 +00:00
Requires: %{name}-common-tools = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2012-09-26 12:23:24 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires: %{name}-dcerpc = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Requires: libnetapi = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
Requires(post): libwbclient = %{samba_depver}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
%endif
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
2015-02-23 10:27:37 +00:00
Requires: pam
Provides: samba4 = %{samba_depver}
Obsoletes: samba4 < %{samba_depver}
2012-09-26 12:23:24 +00:00
2013-11-11 11:18:23 +00:00
# We don't build it outdated docs anymore
2016-02-11 11:36:09 +00:00
Provides: samba-doc = %{samba_depver}
2016-02-11 09:04:39 +00:00
Obsoletes: samba-doc < %{samba_depver}
2016-02-11 11:36:09 +00:00
2013-11-11 11:18:23 +00:00
# Is not supported yet
2016-02-11 11:36:09 +00:00
Provides: samba-domainjoin-gui = %{samba_depver}
2016-02-11 09:04:39 +00:00
Obsoletes: samba-domainjoin-gui < %{samba_depver}
2016-02-11 11:36:09 +00:00
2013-11-11 11:18:23 +00:00
# SWAT been deprecated and removed from samba
2016-02-11 11:36:09 +00:00
Provides: samba-swat = %{samba_depver}
2016-02-11 09:04:39 +00:00
Obsoletes: samba-swat < %{samba_depver}
2016-02-11 11:36:09 +00:00
Provides: samba4-swat = %{samba_depver}
2016-02-11 09:04:39 +00:00
Obsoletes: samba4-swat < %{samba_depver}
2013-11-11 11:18:23 +00:00
Provides: bundled(libreplace)
BuildRequires: make
BuildRequires: gcc
BuildRequires: glibc-gconv-extra
2017-07-26 09:24:41 +00:00
BuildRequires: avahi-devel
BuildRequires: bison
2012-09-26 12:23:24 +00:00
BuildRequires: cups-devel
2015-04-22 07:45:25 +00:00
BuildRequires: dbus-devel
2012-09-26 12:23:24 +00:00
BuildRequires: docbook-style-xsl
BuildRequires: doxygen
2012-09-26 12:23:24 +00:00
BuildRequires: e2fsprogs-devel
BuildRequires: flex
2012-09-26 12:23:24 +00:00
BuildRequires: gawk
BuildRequires: gnupg2
2019-12-06 08:50:31 +00:00
BuildRequires: gnutls-devel >= 3.4.7
2018-07-12 10:43:59 +00:00
BuildRequires: gpgme-devel
BuildRequires: jansson-devel
BuildRequires: krb5-devel >= %{required_mit_krb5}
2012-09-26 12:23:24 +00:00
BuildRequires: libacl-devel
BuildRequires: libaio-devel
2015-06-24 12:00:05 +00:00
BuildRequires: libarchive-devel
2012-09-26 12:23:24 +00:00
BuildRequires: libattr-devel
BuildRequires: libcap-devel
BuildRequires: libicu-devel
BuildRequires: libcmocka-devel
BuildRequires: libtirpc-devel
2012-09-26 12:23:24 +00:00
BuildRequires: libuuid-devel
BuildRequires: libxslt
%if %{with lmdb}
BuildRequires: lmdb
BuildRequires: lmdb-devel >= 0.9.16
%endif
2020-08-28 15:57:42 +00:00
%if %{with winexe}
BuildRequires: mingw32-gcc
BuildRequires: mingw64-gcc
%endif
2012-09-26 12:23:24 +00:00
BuildRequires: ncurses-devel
BuildRequires: openldap-devel
BuildRequires: pam-devel
2019-02-14 14:09:59 +00:00
BuildRequires: perl-interpreter
BuildRequires: perl-generators
BuildRequires: perl(Archive::Tar)
BuildRequires: perl(Test::More)
2012-09-26 12:23:24 +00:00
BuildRequires: popt-devel
BuildRequires: python3-cryptography
2018-08-01 16:28:10 +00:00
BuildRequires: python3-devel
2021-01-25 15:43:30 +00:00
BuildRequires: python3-dns
BuildRequires: python3-requests
BuildRequires: python3-setuptools
2012-09-26 12:23:24 +00:00
BuildRequires: quota-devel
BuildRequires: readline-devel
BuildRequires: rpcgen
2018-01-21 17:06:11 +00:00
BuildRequires: rpcsvc-proto-devel
2012-09-26 12:23:24 +00:00
BuildRequires: sed
BuildRequires: systemd-rpm-macros
BuildRequires: libtasn1-devel
# We need asn1Parser
BuildRequires: libtasn1-tools
2015-09-01 18:06:04 +00:00
BuildRequires: xfsprogs-devel
BuildRequires: xz
2012-09-26 12:23:24 +00:00
BuildRequires: zlib-devel >= 1.2.3
2015-04-10 12:02:53 +00:00
BuildRequires: pkgconfig(libsystemd)
%ifnarch i686 riscv64
%if 0%{?fedora} >= 37
BuildRequires: mold
%endif
%endif
2020-10-19 15:25:56 +00:00
%if %{with vfs_glusterfs}
BuildRequires: glusterfs-api-devel >= 3.4.0.16
BuildRequires: glusterfs-devel >= 3.4.0.16
%endif
2020-10-19 15:23:08 +00:00
%if %{with vfs_cephfs}
2017-07-24 14:35:02 +00:00
BuildRequires: libcephfs-devel
2015-01-05 15:31:20 +00:00
%endif
2020-10-20 06:28:57 +00:00
%if %{with vfs_io_uring}
BuildRequires: liburing-devel >= 0.4
%endif
%if %{with pcp_pmda}
BuildRequires: pcp-libs-devel
%endif
%if %{with ceph_mutex}
BuildRequires: librados-devel
%endif
%if %{with etcd_mutex}
BuildRequires: python3-etcd
%endif
%if %{with gpupdate}
BuildRequires: cepces-certmonger >= 0.3.8
%endif
2014-03-11 19:10:21 +00:00
# pidl requirements
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(FindBin)
2014-03-11 19:10:21 +00:00
BuildRequires: perl(Parse::Yapp)
2020-11-03 13:20:23 +00:00
%if %{without includelibs}
BuildRequires: libtalloc-devel >= %{talloc_version}
BuildRequires: python3-talloc-devel >= %{talloc_version}
2012-09-26 12:23:24 +00:00
BuildRequires: libtevent-devel >= %{tevent_version}
BuildRequires: python3-tevent >= %{tevent_version}
2012-09-26 12:23:24 +00:00
BuildRequires: libtdb-devel >= %{tdb_version}
BuildRequires: python3-tdb >= %{tdb_version}
2020-10-20 12:18:49 +00:00
%endif
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
BuildRequires: bind
BuildRequires: krb5-server >= %{required_mit_krb5}
2023-01-24 07:59:00 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 9
BuildRequires: python3-dateutil
%else
BuildRequires: python3-iso8601
%endif
2018-11-16 12:25:28 +00:00
BuildRequires: python3-gpg
BuildRequires: python3-markdown
2023-01-23 14:13:10 +00:00
BuildRequires: python3-pyasn1 >= 0.4.8
2021-01-25 15:43:30 +00:00
BuildRequires: python3-setproctitle
2022-06-24 05:30:58 +00:00
%if %{without includelibs}
2020-10-20 05:25:57 +00:00
BuildRequires: tdb-tools
2022-06-24 05:30:58 +00:00
#endif without includelibs
%endif
#endif with dc || with testsuite
2017-07-05 07:56:49 +00:00
%endif
# filter out perl requirements pulled in from examples in the docdir.
2017-07-05 15:15:57 +00:00
%global __requires_exclude_from ^%{_docdir}/.*$
%global __provides_exclude_from ^%{_docdir}/.*$
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
2012-10-17 12:13:28 +00:00
### SAMBA
2012-09-26 12:23:24 +00:00
%description
2016-02-11 09:04:39 +00:00
Samba is the standard Windows interoperability suite of programs for Linux and
Unix.
2007-03-29 18:11:01 +00:00
2012-10-17 12:13:28 +00:00
### CLIENT
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%package client
2007-03-29 18:11:01 +00:00
Summary: Samba client programs
2015-04-10 12:02:53 +00:00
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-03-12 18:01:41 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
Requires: libsmbclient = %{samba_depver}
%endif
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2012-09-26 12:23:24 +00:00
Provides: samba4-client = %{samba_depver}
Obsoletes: samba4-client < %{samba_depver}
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
2016-01-27 11:14:58 +00:00
Requires(post): %{_sbindir}/update-alternatives
Requires(postun): %{_sbindir}/update-alternatives
Provides: bundled(libreplace)
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%description client
The %{name}-client package provides some SMB/CIFS clients to complement
the built-in SMB/CIFS filesystem in Linux. These clients allow access
of SMB/CIFS shares and printing to SMB/CIFS printers.
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
2015-03-12 18:01:41 +00:00
### CLIENT-LIBS
%package client-libs
Summary: Samba client libraries
2015-04-10 12:02:53 +00:00
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2018-01-08 13:48:14 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-07-21 08:44:40 +00:00
Requires: libwbclient = %{samba_depver}
%endif
Requires: krb5-libs >= %{required_mit_krb5}
# This is needed for charset conversion
Requires: glibc-gconv-extra
2015-03-12 18:01:41 +00:00
%description client-libs
The samba-client-libs package contains internal libraries needed by the
SMB/CIFS clients.
2012-10-17 12:13:28 +00:00
### COMMON
%package common
Summary: Files used by both Samba servers and clients
BuildArch: noarch
Requires(post): (systemd-standalone-tmpfiles or systemd)
%if 0%{?fedora}
2019-12-05 17:09:34 +00:00
Recommends: logrotate
%endif
2012-10-17 12:13:28 +00:00
Provides: samba4-common = %{samba_depver}
Obsoletes: samba4-common < %{samba_depver}
%description common
samba-common provides files necessary for both the server and client
packages of Samba.
### COMMON-LIBS
%package common-libs
Summary: Libraries used by both Samba servers and clients
Requires(pre): samba-common = %{samba_depver}
Requires: samba-common = %{samba_depver}
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
%if %{with libwbclient}
Requires: libwbclient = %{samba_depver}
%endif
Provides: bundled(libreplace)
%if %{without dc} && %{without testsuite}
Obsoletes: samba-dc < %{samba_depver}
Obsoletes: samba-dc-libs < %{samba_depver}
Obsoletes: samba-dc-bind-dlz < %{samba_depver}
%endif
# ctdb-tests package has been dropped if we do not build the testsuite
%if %{with clustering}
%if %{without testsuite}
2021-05-12 13:52:52 +00:00
Obsoletes: ctdb-tests < %{samba_depver}
Obsoletes: ctdb-tests-debuginfo < %{samba_depver}
# endif without testsuite
%endif
# endif with clustering
%endif
2021-06-29 12:29:35 +00:00
# We only build glusterfs for RHGS and Fedora, so obsolete it on other versions
# of the distro
%if %{without vfs_glusterfs}
Obsoletes: samba-vfs-glusterfs < %{samba_depver}
# endif without vfs_glusterfs
2015-03-16 09:01:40 +00:00
%endif
%description common-libs
The samba-common-libs package contains internal libraries needed by the
SMB/CIFS clients.
### COMMON-TOOLS
%package common-tools
Summary: Tools for Samba clients
2015-07-21 08:44:40 +00:00
Requires: samba-common-libs = %{samba_depver}
Requires: samba-client-libs = %{samba_depver}
Requires: samba-libs = %{samba_depver}
Requires: samba-ldb-ldap-modules = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Requires: libnetapi = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-07-21 08:44:40 +00:00
Requires: libwbclient = %{samba_depver}
%endif
Provides: bundled(libreplace)
%description common-tools
The samba-common-tools package contains tools for SMB/CIFS clients.
### SAMBA-TOOLS
%package tools
Summary: Tools for Samba servers
# samba-tool needs python3-samba
Requires: python3-%{name} = %{samba_depver}
# samba-tool needs python3-samba-dc also on non-dc build
Requires: python3-%{name}-dc = %{samba_depver}
%if %{with dc}
2023-02-16 08:11:52 +00:00
# samba-tool needs mdb_copy and tdbackup for domain backup or upgrade provision
%if %{with lmdb}
Requires: lmdb
%endif
2023-02-16 08:11:52 +00:00
Requires: tdb-tools
Requires: python3-gpg
%endif
%description tools
The samba-tools package contains tools for Samba servers
and for GPO management on domain members.
### RPC
%package dcerpc
Summary: DCE RPC binaries
Requires: samba-common-libs = %{samba_depver}
Requires: samba-client-libs = %{samba_depver}
Requires: samba-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Requires: libnetapi = %{samba_depver}
%if %{with libwbclient}
Requires: libwbclient = %{samba_depver}
%endif
%description dcerpc
The samba-dcerpc package contains binaries that serve DCERPC over named pipes.
2012-10-17 12:13:28 +00:00
### DC
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
2012-10-17 12:13:28 +00:00
%package dc
Summary: Samba AD Domain Controller
Requires: %{name} = %{samba_depver}
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-common-libs = %{samba_depver}
Requires: %{name}-common-tools = %{samba_depver}
Requires: %{name}-tools = %{samba_depver}
2012-10-17 12:13:28 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires: %{name}-dc-provision = %{samba_depver}
2012-10-17 12:13:28 +00:00
Requires: %{name}-dc-libs = %{samba_depver}
Requires: %{name}-winbind = %{samba_depver}
2021-02-04 16:08:03 +00:00
%if %{with libwbclient}
Requires(post): libwbclient = %{samba_depver}
Requires: libwbclient = %{samba_depver}
2021-02-04 16:08:03 +00:00
%endif
Requires: ldb-tools
2021-01-25 15:43:30 +00:00
Requires: python3-setproctitle
Requires: libldb = %{samba_depver}
Requires: python3-%{name} = %{samba_depver}
2017-10-26 10:57:17 +00:00
Requires: python3-%{name}-dc = %{samba_depver}
2017-07-05 07:56:49 +00:00
Requires: krb5-server >= %{required_mit_krb5}
Requires: bind-utils
2012-10-17 12:13:28 +00:00
Provides: samba4-dc = %{samba_depver}
Obsoletes: samba4-dc < %{samba_depver}
Provides: bundled(libreplace)
2012-10-17 12:13:28 +00:00
%description dc
The samba-dc package provides AD Domain Controller functionality
### DC-PROVISION
%package dc-provision
Summary: Samba AD files to provision a DC
BuildArch: noarch
%description dc-provision
The samba-dc-provision package provides files to setup a domain controller
#endif with dc || with testsuite
%endif
2012-10-17 12:13:28 +00:00
### DC-LIBS
%package dc-libs
Summary: Samba AD Domain Controller Libraries
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-common-libs = %{samba_depver}
2012-10-17 12:13:28 +00:00
Requires: %{name}-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2012-10-17 12:13:28 +00:00
Provides: samba4-dc-libs = %{samba_depver}
Obsoletes: samba4-dc-libs < %{samba_depver}
Provides: bundled(libreplace)
2012-10-17 12:13:28 +00:00
%description dc-libs
The %{name}-dc-libs package contains the libraries needed by the DC to
2012-10-17 12:13:28 +00:00
link against the SMB, RPC and other protocols.
%if %{with dc} || %{with testsuite}
### DC-BIND
%package dc-bind-dlz
Summary: Bind DLZ module for Samba AD
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
Requires: %{name}-dc-libs = %{samba_depver}
Requires: %{name}-dc = %{samba_depver}
2022-05-06 08:10:06 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires: bind
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Provides: bundled(libreplace)
%description dc-bind-dlz
The %{name}-dc-bind-dlz package contains the libraries for bind to manage all
name server related details of Samba AD.
2020-10-20 05:25:57 +00:00
#endif with dc
%endif
2012-10-17 12:13:28 +00:00
### DEVEL
%package devel
Summary: Developer tools for Samba libraries
Requires: %{name}-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2022-05-06 08:10:06 +00:00
%if %{with dc}
Requires: %{name}-dc-libs = %{samba_depver}
%endif
Requires: libnetapi = %{samba_depver}
2012-10-17 12:13:28 +00:00
Provides: samba4-devel = %{samba_depver}
Obsoletes: samba4-devel < %{samba_depver}
%description devel
The %{name}-devel package contains the header files for the libraries
2012-10-17 12:13:28 +00:00
needed to develop programs that link against the SMB, RPC and other
libraries in the Samba suite.
2015-01-05 15:31:20 +00:00
### CEPH
2020-10-19 15:23:08 +00:00
%if %{with vfs_cephfs}
2015-01-05 15:31:20 +00:00
%package vfs-cephfs
Summary: Samba VFS module for Ceph distributed storage system
Requires: %{name} = %{samba_depver}
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2015-01-05 15:31:20 +00:00
Provides: bundled(libreplace)
2015-01-05 15:31:20 +00:00
%description vfs-cephfs
Samba VFS module for Ceph distributed storage system integration.
2020-10-19 15:23:08 +00:00
#endif with vfs_cephfs
2015-01-05 15:31:20 +00:00
%endif
2021-06-24 08:29:25 +00:00
### IOURING
2021-06-24 09:24:59 +00:00
%if %{with vfs_io_uring}
2021-06-24 08:29:25 +00:00
%package vfs-iouring
Summary: Samba VFS module for io_uring
Requires: %{name} = %{samba_depver}
Requires: %{name}-libs = %{samba_depver}
2021-12-09 18:11:22 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2021-06-24 08:29:25 +00:00
Provides: bundled(libreplace)
%description vfs-iouring
Samba VFS module for io_uring instance integration.
2021-06-24 11:19:58 +00:00
#endif with vfs_io_uring
2021-06-24 08:29:25 +00:00
%endif
### GLUSTER
2020-10-19 15:25:56 +00:00
%if %{with vfs_glusterfs}
%package vfs-glusterfs
Summary: Samba VFS module for GlusterFS
Requires: glusterfs-api >= 3.4.0.16
Requires: glusterfs >= 3.4.0.16
Requires: %{name} = %{samba_depver}
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2016-02-11 11:36:09 +00:00
Obsoletes: samba-glusterfs < %{samba_depver}
2016-02-11 14:33:20 +00:00
Provides: samba-glusterfs = %{samba_depver}
Provides: bundled(libreplace)
%description vfs-glusterfs
Samba VFS module for GlusterFS integration.
%endif
### GPUPDATE
2023-11-15 09:37:35 +00:00
%if %{with gpupdate}
%package gpupdate
Summary: Samba GPO support for clients
Requires: cepces-certmonger
Requires: certmonger
Requires: %{name}-ldb-ldap-modules = %{samba_depver}
Requires: python3-%{name} = %{samba_depver}
# samba-tool needs python3-samba-dc also on non-dc build
Requires: python3-%{name}-dc = %{samba_depver}
%description gpupdate
This package provides the samba-gpupdate tool to apply Group Policy Objects
(GPO) on Samba clients.
2023-11-15 09:37:35 +00:00
#endif with gpupdate
%endif
2016-01-27 11:14:58 +00:00
### KRB5-PRINTING
%package krb5-printing
Summary: Samba CUPS backend for printing with Kerberos
Requires(pre): %{name}-client
2019-05-15 15:46:07 +00:00
Requires: %{name}-client = %{samba_depver}
Requires: %{name}-client-libs = %{samba_depver}
2016-01-27 11:14:58 +00:00
Requires(post): %{_sbindir}/update-alternatives
Requires(postun): %{_sbindir}/update-alternatives
%description krb5-printing
If you need Kerberos for print jobs to a printer connection to cups via the SMB
backend, then you need to install that package. It will allow cups to access
the Kerberos credentials cache of the user issuing the print job.
### LDB-LDAP-MODULES
%package ldb-ldap-modules
Summary: Samba ldap modules for ldb
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-common-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
%description ldb-ldap-modules
This package contains the ldb ldap modules required by samba-tool and
samba-gpupdate.
2012-10-17 12:13:28 +00:00
### LIBS
2012-09-26 12:23:24 +00:00
%package libs
Summary: Samba libraries
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-03-12 18:01:41 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2012-09-26 12:23:24 +00:00
Provides: samba4-libs = %{samba_depver}
Obsoletes: samba4-libs < %{samba_depver}
2012-09-26 12:23:24 +00:00
Provides: bundled(libreplace)
2012-09-26 12:23:24 +00:00
%description libs
2016-05-25 08:53:18 +00:00
The %{name}-libs package contains the libraries needed by programs that link
against the SMB, RPC and other protocols provided by the Samba suite.
2012-09-26 12:23:24 +00:00
### LIBNETAPI
%package -n libnetapi
Summary: The NETAPI library
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
Requires: %{name}-common-libs = %{samba_depver}
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
%description -n libnetapi
This contains the NETAPI library from the Samba suite.
%package -n libnetapi-devel
Summary: Developer tools for the NETAPI library
Requires: libnetapi = %{samba_depver}
%description -n libnetapi-devel
The libnetapi-devel package contains the header files and libraries needed to
develop programs that link against the NETAPI library in the Samba suite.
2012-10-17 12:13:28 +00:00
### LIBSMBCLIENT
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
2012-10-17 12:13:28 +00:00
%package -n libsmbclient
Summary: The SMB client library
2015-04-10 12:02:53 +00:00
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-03-12 18:01:41 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2012-10-17 12:13:28 +00:00
%description -n libsmbclient
The libsmbclient contains the SMB client library from the Samba suite.
%package -n libsmbclient-devel
Summary: Developer tools for the SMB client library
Requires: libsmbclient = %{samba_depver}
%description -n libsmbclient-devel
2016-05-25 08:53:18 +00:00
The libsmbclient-devel package contains the header files and libraries needed
to develop programs that link against the SMB client library in the Samba
suite.
2020-10-19 13:53:32 +00:00
#endif {with libsmbclient}
%endif
2012-10-17 12:13:28 +00:00
### LIBWBCLIENT
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2012-10-17 12:13:28 +00:00
%package -n libwbclient
Summary: The winbind client library
2015-03-12 18:01:41 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Conflicts: sssd-libwbclient
2012-10-17 12:13:28 +00:00
%description -n libwbclient
2016-05-25 08:53:18 +00:00
The libwbclient package contains the winbind client library from the Samba
suite.
2012-10-17 12:13:28 +00:00
%package -n libwbclient-devel
Summary: Developer tools for the winbind library
Requires: libwbclient = %{samba_depver}
Conflicts: sssd-libwbclient-devel
2016-02-11 11:36:09 +00:00
Provides: samba-winbind-devel = %{samba_depver}
2016-02-11 09:04:39 +00:00
Obsoletes: samba-winbind-devel < %{samba_depver}
2012-10-17 12:13:28 +00:00
%description -n libwbclient-devel
2016-05-25 08:53:18 +00:00
The libwbclient-devel package provides developer tools for the wbclient
library.
2020-10-19 13:54:28 +00:00
#endif {with libwbclient}
%endif
2012-10-17 12:13:28 +00:00
2017-07-06 09:46:09 +00:00
### PYTHON3
%package -n python3-%{name}
Summary: Samba Python3 libraries
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-common-libs = %{samba_depver}
2017-07-06 09:46:09 +00:00
Requires: %{name}-libs = %{samba_depver}
2022-05-06 08:10:06 +00:00
Requires: %{name}-dc-libs = %{samba_depver}
Requires: python3-cryptography
Requires: python3-dns
Requires: python3-ldb
Requires: python3-requests
2017-07-06 09:46:09 +00:00
Requires: python3-talloc
Requires: python3-tdb
Requires: python3-tevent
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
2019-05-15 15:46:07 +00:00
Requires: libsmbclient = %{samba_depver}
%endif
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2017-07-06 09:46:09 +00:00
Provides: bundled(libreplace)
2017-07-06 09:46:09 +00:00
%description -n python3-%{name}
The python3-%{name} package contains the Python 3 libraries needed by programs
that use SMB, RPC and other Samba provided protocols in Python 3 programs.
%package -n python3-samba-test
Summary: Samba Python libraries
Requires: python3-%{name} = %{samba_depver}
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-libs = %{samba_depver}
%description -n python3-samba-test
The python3-%{name}-test package contains the Python libraries used by the test suite of Samba.
If you want to run full set of Samba tests, you need to install this package.
2017-10-26 10:57:17 +00:00
%package -n python3-samba-dc
Summary: Samba Python libraries for Samba AD
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-dc-libs = %{samba_depver}
2017-10-26 10:57:17 +00:00
Requires: python3-%{name} = %{samba_depver}
# for ms_forest_updates_markdown.py and ms_schema_markdown.py
Requires: python3-markdown
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2017-10-26 10:57:17 +00:00
%description -n python3-samba-dc
The python3-%{name}-dc package contains the Python libraries needed by programs
to manage Samba AD.
### PIDL
%package pidl
Summary: Perl IDL compiler
Requires: perl-interpreter
Requires: perl(FindBin)
Requires: perl(Parse::Yapp)
BuildArch: noarch
Provides: samba4-pidl = %{samba_depver}
Obsoletes: samba4-pidl < %{samba_depver}
%description pidl
The %{name}-pidl package contains the Perl IDL compiler used by Samba
and Wireshark to parse IDL and similar protocols
2012-10-17 12:13:28 +00:00
### TEST
2012-09-26 12:23:24 +00:00
%package test
Summary: Testing tools for Samba servers and clients
Requires: %{name} = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2014-03-18 13:53:20 +00:00
Requires: %{name}-winbind = %{samba_depver}
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2014-03-18 13:53:20 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires: %{name}-test-libs = %{samba_depver}
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
Requires: %{name}-dc-libs = %{samba_depver}
%endif
2012-09-26 12:23:24 +00:00
Requires: %{name}-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Requires: libnetapi = %{samba_depver}
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
Requires: libsmbclient = %{samba_depver}
%endif
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
%endif
Requires: python3-%{name} = %{samba_depver}
Requires: perl(Archive::Tar)
2012-09-26 12:23:24 +00:00
Provides: samba4-test = %{samba_depver}
Obsoletes: samba4-test < %{samba_depver}
2012-09-26 12:23:24 +00:00
Provides: bundled(libreplace)
2012-09-26 12:23:24 +00:00
%description test
2014-03-18 13:53:20 +00:00
%{name}-test provides testing tools for both the server and client
2012-09-26 12:23:24 +00:00
packages of Samba.
2007-03-29 18:11:01 +00:00
2014-03-18 13:53:20 +00:00
### TEST-LIBS
%package test-libs
2015-06-21 11:52:26 +00:00
Summary: Libraries need by the testing tools for Samba servers and clients
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2014-03-18 13:53:20 +00:00
Requires: %{name}-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2016-02-11 11:36:09 +00:00
Provides: %{name}-test-devel = %{samba_depver}
2016-01-27 11:14:58 +00:00
Obsoletes: %{name}-test-devel < %{samba_depver}
2014-03-18 13:53:20 +00:00
Provides: bundled(libreplace)
2014-03-18 13:53:20 +00:00
%description test-libs
%{name}-test-libs provides libraries required by the testing tools.
### USERSHARES
%package usershares
Summary: Provides support for non-root user shares
Requires: %{name} = %{samba_depver}
Requires: %{name}-common-tools = %{samba_depver}
%description usershares
Installing this package will provide a configuration file, group and
directories to support non-root user shares. You can configure them
as a user using the `net usershare` command.
2012-10-17 12:13:28 +00:00
### WINBIND
%package winbind
Summary: Samba winbind
2015-04-10 12:02:53 +00:00
Requires(pre): %{name}-common = %{samba_depver}
Requires: %{name}-common = %{samba_depver}
2015-07-21 11:59:18 +00:00
Requires: %{name}-common-libs = %{samba_depver}
Requires(post): %{name}-common-libs = %{samba_depver}
2015-04-10 12:02:53 +00:00
Requires: %{name}-common-tools = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires(post): %{name}-client-libs = %{samba_depver}
2012-09-26 12:23:24 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires(post): %{name}-libs = %{samba_depver}
Requires: %{name}-winbind-modules = %{samba_depver}
Suggests: %{name}-tools = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2021-02-04 16:08:03 +00:00
%if %{with libwbclient}
Requires(post): libwbclient = %{samba_depver}
2019-05-15 15:46:07 +00:00
Requires: libwbclient = %{samba_depver}
2021-02-04 16:08:03 +00:00
%endif
Requires: %{name}-dcerpc = %{samba_depver}
Provides: samba4-winbind = %{samba_depver}
Obsoletes: samba4-winbind < %{samba_depver}
# Old NetworkManager expects the dispatcher scripts in a different place
Conflicts: NetworkManager < 1.20
Provides: bundled(libreplace)
2012-09-26 12:23:24 +00:00
%description winbind
2016-05-25 08:53:18 +00:00
The samba-winbind package provides the winbind NSS library, and some client
tools. Winbind enables Linux to be a full member in Windows domains and to use
Windows user and group accounts on Linux.
2012-10-17 12:13:28 +00:00
### WINBIND-CLIENTS
%package winbind-clients
Summary: Samba winbind clients
Requires: %{name}-common = %{samba_depver}
2015-07-21 11:59:18 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2012-10-17 12:13:28 +00:00
Requires: %{name}-libs = %{samba_depver}
Requires: %{name}-winbind = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
%endif
2012-10-17 12:13:28 +00:00
Provides: samba4-winbind-clients = %{samba_depver}
Obsoletes: samba4-winbind-clients < %{samba_depver}
Provides: bundled(libreplace)
2012-10-17 12:13:28 +00:00
%description winbind-clients
The samba-winbind-clients package provides the wbinfo and ntlm_auth
tool.
2012-10-17 12:13:28 +00:00
### WINBIND-KRB5-LOCATOR
%package winbind-krb5-locator
Summary: Samba winbind krb5 locator
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
Requires: %{name}-winbind = %{samba_depver}
%else
2012-09-26 12:23:24 +00:00
Requires: %{name}-libs = %{samba_depver}
%endif
2019-05-15 15:46:07 +00:00
Requires: samba-client-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
2012-09-26 12:23:24 +00:00
Provides: samba4-winbind-krb5-locator = %{samba_depver}
Obsoletes: samba4-winbind-krb5-locator < %{samba_depver}
# Handle winbind_krb5_locator.so as alternatives to allow
# IPA AD trusts case where it should not be used by libkrb5
# The plugin will be diverted to /dev/null by the FreeIPA
# freeipa-server-trust-ad subpackage due to higher priority
# and restored to the proper one on uninstall
Requires(post): %{_sbindir}/update-alternatives
Requires(postun): %{_sbindir}/update-alternatives
Requires(preun): %{_sbindir}/update-alternatives
Provides: bundled(libreplace)
%description winbind-krb5-locator
The winbind krb5 locator is a plugin for the system kerberos library to allow
the local kerberos library to use the same KDC as samba and winbind use
### WINBIND-MODULES
%package winbind-modules
Summary: Samba winbind modules
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-libs = %{samba_depver}
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2015-01-05 15:31:20 +00:00
Requires: libwbclient = %{samba_depver}
%endif
Requires: pam
Provides: bundled(libreplace)
%description winbind-modules
2016-05-25 08:53:18 +00:00
The samba-winbind-modules package provides the NSS library and a PAM module
necessary to communicate to the Winbind Daemon
### WINEXE
2020-08-28 15:57:42 +00:00
%if %{with winexe}
%package winexe
Summary: Samba Winexe Windows Binary
2023-02-23 14:18:11 +00:00
License: GPL-3.0-only
2020-11-20 14:15:20 +00:00
Requires: %{name}-client-libs = %{samba_depver}
2021-12-09 18:11:22 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2024-10-15 18:36:24 +00:00
Requires: libldb = %{samba_depver}
Provides: bundled(libreplace)
%description winexe
Winexe is a Remote Windows-command executor
%endif
2015-01-05 15:31:20 +00:00
### CTDB
%if %{with clustering}
2015-01-05 15:31:20 +00:00
%package -n ctdb
Summary: A Clustered Database based on Samba's Trivial Database (TDB)
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: %{name}-client-libs = %{samba_depver}
Requires: %{name}-winbind-clients = %{samba_depver}
2015-07-21 08:44:40 +00:00
2015-01-05 15:31:20 +00:00
Requires: coreutils
2015-01-12 00:11:57 +00:00
# for ps and killall
2015-01-05 15:31:20 +00:00
Requires: psmisc
Requires: sed
Requires: tdb-tools
Requires: gawk
2015-01-12 00:11:57 +00:00
# for pkill and pidof:
Requires: procps-ng
# for netstat:
Requires: net-tools
Requires: ethtool
# for ip:
Requires: iproute
Requires: iptables
# for flock, getopt, kill:
Requires: util-linux
2015-01-05 15:31:20 +00:00
Requires(post): systemd-units
Requires(preun): systemd-units
Requires(postun): systemd-units
Provides: bundled(libreplace)
2015-01-05 15:31:20 +00:00
%description -n ctdb
CTDB is a cluster implementation of the TDB database used by Samba and other
projects to store temporary data. If an application is already using TDB for
temporary data it is very easy to convert that application to be cluster aware
and use CTDB instead.
2021-01-25 15:43:30 +00:00
%if %{with testsuite}
2015-01-05 15:31:20 +00:00
### CTDB-TEST
%package -n ctdb-tests
Summary: CTDB clustered database test suite
2019-05-15 15:46:07 +00:00
Requires: %{name}-common-libs = %{samba_depver}
Requires: %{name}-client-libs = %{samba_depver}
2015-07-21 08:44:40 +00:00
Requires: ctdb = %{samba_depver}
Recommends: nc
2016-02-11 11:36:09 +00:00
Provides: ctdb-devel = %{samba_depver}
2016-01-27 11:14:58 +00:00
Obsoletes: ctdb-devel < %{samba_depver}
2015-01-05 15:31:20 +00:00
%description -n ctdb-tests
Test suite for CTDB.
CTDB is a cluster implementation of the TDB database used by Samba and other
projects to store temporary data. If an application is already using TDB for
temporary data it is very easy to convert that application to be cluster aware
and use CTDB instead.
2021-01-25 15:43:30 +00:00
2021-05-12 12:42:03 +00:00
#endif with testsuite
2021-01-25 15:43:30 +00:00
%endif
%if %{with pcp_pmda}
%package -n ctdb-pcp-pmda
Summary: CTDB PCP pmda support
Requires: ctdb = %{samba_depver}
Requires: pcp-libs
2022-05-06 08:10:06 +00:00
Requires: %{name}-client-libs = %{samba_depver}
%description -n ctdb-pcp-pmda
Performance Co-Pilot (PCP) support for CTDB
#endif with pcp_pmda
%endif
%if %{with etcd_mutex}
%package -n ctdb-etcd-mutex
Summary: CTDB ETCD mutex helper
Requires: ctdb = %{samba_depver}
Requires: python3-etcd
%description -n ctdb-etcd-mutex
Support for using an existing ETCD cluster as a mutex helper for CTDB
#endif with etcd_mutex
%endif
%if %{with ceph_mutex}
%package -n ctdb-ceph-mutex
Summary: CTDB ceph mutex helper
Requires: ctdb = %{samba_depver}
%description -n ctdb-ceph-mutex
Support for using an existing CEPH cluster as a mutex helper for CTDB
#endif with ceph_mutex
%endif
#endif with clustering
%endif
2015-01-05 15:31:20 +00:00
### LIBLDB
%package -n libldb
Summary: A schema-less, ldap like, API and database
License: LGPL-3.0-or-later
Requires: libtalloc%{?_isa} >= %{talloc_version}
Requires: libtdb%{?_isa} >= %{tdb_version}
Requires: libtevent%{?_isa} >= %{tevent_version}
2015-01-05 15:31:20 +00:00
Provides: bundled(libreplace)
2024-10-15 18:36:24 +00:00
Obsoletes: libldb < 0:2.10
Provides: libldb = 0:2.10
Provides: libldb = %{samba_depver}
%description -n libldb
An extensible library that implements an LDAP like API to access remote LDAP
servers, or use local tdb databases.
### LIBLDB-DEVEL
%package -n libldb-devel
Summary: Developer tools for the LDB library
License: LGPL-3.0-or-later
Requires: libldb%{?_isa} = %{samba_depver}
Requires: libtdb-devel%{?_isa} >= %{tdb_version}
Requires: libtalloc-devel%{?_isa} >= %{talloc_version}
Requires: libtevent-devel%{?_isa} >= %{tevent_version}
2024-10-15 18:36:24 +00:00
Obsoletes: libldb-devel < 0:2.10
Provides: libldb-devel = 0:2.10
Provides: libldb-devel = %{samba_depver}
%description -n libldb-devel
Header files needed to develop programs that link against the LDB library.
### LDB-TOOLS
%package -n ldb-tools
Summary: Tools to manage LDB files
License: LGPL-3.0-or-later
Requires: libldb%{?_isa} = %{samba_depver}
2024-10-15 18:36:24 +00:00
Obsoletes: ldb-tools < 0:2.10
Provides: ldb-tools = %{samba_depver}
%description -n ldb-tools
Tools to manage LDB files
### PYTHON3-LDB
%package -n python3-ldb
Summary: Python bindings for the LDB library
License: LGPL-3.0-or-later
Requires: libldb%{?_isa} = %{samba_depver}
Requires: python3-tdb%{?_isa} >= %{tdb_version}
%{?python_provide:%python_provide python3-ldb}
2024-10-15 18:36:24 +00:00
Obsoletes: python3-ldb < 0:2.10
Provides: python3-ldb = %{samba_depver}
# These were the C bindings, only used by Samba
Obsoletes: python-ldb-devel-common < 2.10
Provides: python-ldb-devel-common = 2.10
Provides: python-ldb-devel-common = %{samba_depver}
Obsoletes: python3-ldb-devel < 2.10
Provides: python3-ldb-devel = 2.10
Provides: python3-ldb-devel = %{samba_depver}
%description -n python3-ldb
Python bindings for the LDB library
2015-01-05 15:31:20 +00:00
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%prep
2022-10-25 11:15:13 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 9
xzcat %{SOURCE0} | %{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data=-
%else
xzcat %{SOURCE0} | gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} -
2022-10-25 11:15:13 +00:00
%endif
%autosetup -n samba-%{version}%{pre_release} -p1
2016-01-27 11:14:58 +00:00
# Make sure we do not build with heimdal code
rm -rfv third_party/heimdal
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%build
2020-10-20 12:18:49 +00:00
%if %{with includelibs}
2012-09-26 12:23:24 +00:00
%global _talloc_lib ,talloc,pytalloc,pytalloc-util
%global _tevent_lib ,tevent,pytevent
%global _tdb_lib ,tdb,pytdb
2020-10-20 12:18:49 +00:00
%else
2012-09-26 12:23:24 +00:00
%global _talloc_lib ,!talloc,!pytalloc,!pytalloc-util
%global _tevent_lib ,!tevent,!pytevent
%global _tdb_lib ,!tdb,!pytdb
2020-10-20 12:18:49 +00:00
#endif with includelibs
%endif
2012-09-26 12:23:24 +00:00
%global _samba_bundled_libraries !popt%{_talloc_lib}%{_tevent_lib}%{_tdb_lib}
2017-05-09 18:59:54 +00:00
%global _samba_idmap_modules idmap_ad,idmap_rid,idmap_ldap,idmap_hash,idmap_tdb2
%global _samba_pdb_modules pdb_tdbsam,pdb_ldap,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
2020-10-20 12:18:49 +00:00
%if %{with testsuite}
%global _samba_auth_modules auth_wbc,auth_unix,auth_server,auth_samba4,auth_skel
%global _samba_vfs_modules vfs_dfs_samba4,vfs_fake_dfq
%else
2020-01-21 19:51:37 +00:00
%global _samba_auth_modules auth_wbc,auth_unix,auth_server,auth_samba4
%global _samba_vfs_modules vfs_dfs_samba4
2020-10-20 12:18:49 +00:00
%endif
2012-09-26 12:23:24 +00:00
%global _samba_modules %{_samba_idmap_modules},%{_samba_pdb_modules},%{_samba_auth_modules},%{_samba_vfs_modules}
2012-09-26 12:23:24 +00:00
%global _libsmbclient %nil
%global _libwbclient %nil
2020-10-19 13:53:32 +00:00
%if %{without libsmbclient}
2015-01-05 15:31:20 +00:00
%global _libsmbclient smbclient,
2012-09-26 12:23:24 +00:00
%endif
2020-10-19 13:54:28 +00:00
%if %{without libwbclient}
2012-09-26 12:23:24 +00:00
%global _libwbclient wbclient,
%endif
%global _default_private_libraries !ldb,!dcerpc-samr,!samba-policy,!tevent-util,!dcerpc,!samba-hostconfig,!samba-credentials,!dcerpc_server,!samdb,
%global _samba_private_libraries %{_default_private_libraries}%{_libsmbclient}%{_libwbclient}
2012-09-26 12:23:24 +00:00
2018-01-21 17:06:11 +00:00
# TODO: resolve underlinked python modules
export python_LDFLAGS="$(echo %{__global_ldflags} | sed -e 's/-Wl,-z,defs//g')"
# Use the mold linker if possible
export python_LDFLAGS="$(echo %{__global_ldflags} | sed -e 's/-Wl,-z,defs//g')"
%ifnarch i686 riscv64
%if 0%{?fedora} >= 37
export LDFLAGS="%{__global_ldflags} -fuse-ld=mold"
export python_LDFLAGS="$(echo ${LDFLAGS} | sed -e 's/-Wl,-z,defs//g')"
#endif fedora >= 37
%endif
#endif narch i686
%endif
2023-03-28 07:55:56 +00:00
# Add support for mock ccache plugin
2023-05-05 11:53:47 +00:00
%if %{with ccache}
2023-03-28 07:55:56 +00:00
CCACHE="$(command -v ccache)"
if [ -n "${CCACHE}" ]; then
${CCACHE} -s
export CC="${CCACHE} gcc"
fi
2023-05-05 11:53:47 +00:00
%endif
2023-03-28 07:55:56 +00:00
2012-09-26 12:23:24 +00:00
%configure \
--enable-fhs \
--with-piddir=/run \
--with-sockets-dir=/run/samba \
--with-modulesdir=%{_libdir}/samba \
--with-pammodulesdir=%{_libdir}/security \
2015-10-12 16:31:25 +00:00
--with-lockdir=/var/lib/samba/lock \
--with-statedir=/var/lib/samba \
--with-cachedir=/var/lib/samba \
2012-09-26 12:23:24 +00:00
--disable-rpath-install \
2017-05-09 18:59:54 +00:00
--with-shared-modules=%{_samba_modules} \
--bundled-libraries=%{_samba_bundled_libraries} \
--private-libraries=%{_samba_private_libraries} \
2012-10-02 12:51:51 +00:00
--with-pam \
2015-03-03 13:20:23 +00:00
--with-pie \
--with-relro \
2013-11-25 14:06:21 +00:00
--without-fam \
2012-09-26 12:23:24 +00:00
--with-system-mitkrb5 \
2019-12-05 17:22:07 +00:00
--with-experimental-mit-ad-dc \
2020-10-20 05:25:57 +00:00
%if %{without dc} && %{without testsuite}
2012-09-26 12:23:24 +00:00
--without-ad-dc \
%endif
2020-10-19 15:25:56 +00:00
%if %{without vfs_glusterfs}
--disable-glusterfs \
%endif
%if %{with clustering}
2012-09-26 12:23:24 +00:00
--with-cluster-support \
%endif
%if %{with testsuite}
--enable-selftest \
%endif
%if %{with pcp_pmda}
--enable-pmda \
%endif
%if %{with ceph_mutex}
--enable-ceph-reclock \
%endif
%if %{with etcd_mutex}
--enable-etcd-reclock \
2012-09-26 12:23:24 +00:00
%endif
--with-profiling-data \
2017-07-06 09:46:09 +00:00
--with-systemd \
--with-quotas \
2018-09-24 09:59:15 +00:00
--systemd-install-services \
--with-systemddir=/usr/lib/systemd/system \
--systemd-smb-extra=%{_systemd_extra} \
--systemd-nmb-extra=%{_systemd_extra} \
--systemd-winbind-extra=%{_systemd_extra} \
%if %{with clustering}
--systemd-ctdb-extra=%{_systemd_extra} \
%endif
2019-01-31 15:25:00 +00:00
--systemd-samba-extra=%{_systemd_extra}
2012-09-26 12:23:24 +00:00
# Do not use %%make_build, make is just a wrapper around waf in Samba!
%{__make} %{?_smp_mflags} %{_make_verbose}
2012-09-26 12:23:24 +00:00
pushd pidl
%__perl Makefile.PL PREFIX=%{_prefix}
%make_build
popd
pushd lib/ldb
doxygen Doxyfile
popd
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%install
# Do not use %%make_install, make is just a wrapper around waf in Samba!
%{__make} %{?_smp_mflags} %{_make_verbose} install DESTDIR=%{buildroot}
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/usr/{sbin,bin}
install -d -m 0755 %{buildroot}%{_libdir}/security
install -d -m 0755 %{buildroot}/var/lib/samba
install -d -m 0755 %{buildroot}/var/lib/samba/certs
2016-06-07 08:11:09 +00:00
install -d -m 0755 %{buildroot}/var/lib/samba/drivers
install -d -m 0755 %{buildroot}/var/lib/samba/lock
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/var/lib/samba/private
install -d -m 0755 %{buildroot}/var/lib/samba/private/certs
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/var/lib/samba/scripts
install -d -m 0755 %{buildroot}/var/lib/samba/sysvol
install -d -m 0755 %{buildroot}/var/lib/samba/usershares
2016-06-07 08:11:09 +00:00
install -d -m 0755 %{buildroot}/var/lib/samba/winbindd_privileged
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/var/log/samba/old
install -d -m 0755 %{buildroot}/run/samba
install -d -m 0755 %{buildroot}/run/winbindd
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/%{_libdir}/samba
install -d -m 0755 %{buildroot}/%{_libdir}/samba/ldb
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}/%{_libdir}/pkgconfig
2016-02-11 14:33:20 +00:00
touch %{buildroot}%{_libexecdir}/samba/cups_backend_smb
2016-01-27 11:14:58 +00:00
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
# Install other stuff
install -d -m 0755 %{buildroot}%{_sysconfdir}/logrotate.d
2017-02-01 14:18:09 +00:00
install -m 0644 %{SOURCE10} %{buildroot}%{_sysconfdir}/logrotate.d/samba
2017-02-01 14:18:09 +00:00
install -m 0644 %{SOURCE11} %{buildroot}%{_sysconfdir}/samba/smb.conf
install -m 0644 %{SOURCE12} %{buildroot}%{_sysconfdir}/samba/smb.conf.example
install -m 0644 %{SOURCE15} %{buildroot}%{_sysconfdir}/samba/usershares.conf
install -d -m 0755 %{buildroot}%{_sysconfdir}/security
2017-02-01 14:18:09 +00:00
install -m 0644 %{SOURCE13} %{buildroot}%{_sysconfdir}/security/pam_winbind.conf
2012-09-26 12:23:24 +00:00
2015-02-23 10:27:37 +00:00
install -d -m 0755 %{buildroot}%{_sysconfdir}/pam.d
2017-02-01 14:18:09 +00:00
install -m 0644 %{SOURCE14} %{buildroot}%{_sysconfdir}/pam.d/samba
2015-02-23 10:27:37 +00:00
2012-09-26 12:23:24 +00:00
echo 127.0.0.1 localhost > %{buildroot}%{_sysconfdir}/samba/lmhosts
# openLDAP database schema
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}%{_sysconfdir}/openldap/schema
install -m644 examples/LDAP/samba.schema %{buildroot}%{_sysconfdir}/openldap/schema/samba.schema
2012-10-30 09:34:19 +00:00
install -m 0744 packaging/printing/smbprint %{buildroot}%{_bindir}/smbprint
2016-05-25 08:40:41 +00:00
install -d -m 0755 %{buildroot}%{_tmpfilesdir}
# Create /run/samba.
echo "d /run/samba 755 root root" > %{buildroot}%{_tmpfilesdir}/samba.conf
%if %{with clustering}
echo "d /run/ctdb 755 root root" > %{buildroot}%{_tmpfilesdir}/ctdb.conf
2015-01-05 15:31:20 +00:00
%endif
2012-04-23 09:51:58 +00:00
install -d -m 0755 %{buildroot}%{_sysusersdir}
install -m 0644 %{SOURCE16} %{buildroot}%{_sysusersdir}/samba.conf
install -m 0644 %{SOURCE17} %{buildroot}%{_sysusersdir}/samba-usershares.conf
install -m 0644 %{SOURCE18} %{buildroot}%{_sysusersdir}/samba-winbind.conf
2012-09-26 12:23:24 +00:00
install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
install -m 0644 packaging/systemd/samba.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/samba
%if %{with clustering}
2017-02-16 13:41:38 +00:00
cat > %{buildroot}%{_sysconfdir}/sysconfig/ctdb <<EOF
2019-12-05 17:22:07 +00:00
# CTDB configuration is now in %%{_sysconfdir}/ctdb/ctdb.conf
2017-02-16 13:41:38 +00:00
EOF
install -d -m 0755 %{buildroot}%{_sysconfdir}/ctdb
2018-07-12 10:43:59 +00:00
install -m 0644 ctdb/config/ctdb.conf %{buildroot}%{_sysconfdir}/ctdb/ctdb.conf
2015-01-05 15:31:20 +00:00
%endif
2012-09-26 12:23:24 +00:00
install -m 0644 %{SOURCE201} packaging/README.downgrade
2012-09-26 12:23:24 +00:00
2012-11-13 11:59:39 +00:00
# NetworkManager online/offline script
install -d -m 0755 %{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d/
2012-11-13 11:59:39 +00:00
install -m 0755 packaging/NetworkManager/30-winbind-systemd \
%{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d/30-winbind
2018-06-27 11:48:45 +00:00
# winbind krb5 plugins
install -d -m 0755 %{buildroot}%{_libdir}/krb5/plugins/libkrb5
touch %{buildroot}%{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
2020-10-20 05:25:57 +00:00
%if %{without dc} && %{without testsuite}
2017-10-26 10:57:17 +00:00
for i in \
%{_mandir}/man8/samba.8 \
2019-10-30 13:07:14 +00:00
%{_mandir}/man8/samba_downgrade_db.8 \
2018-04-12 09:25:30 +00:00
%{_unitdir}/samba.service \
2017-10-26 10:57:17 +00:00
; do
rm -f %{buildroot}$i
done
%endif
2023-11-15 09:37:35 +00:00
%if %{without gpupdate}
rm -f %{buildroot}%{_sbindir}/samba-gpupdate
rm -f %{buildroot}%{_mandir}/man8/samba-gpupdate.8*
2023-11-15 09:37:35 +00:00
%endif
2020-10-19 15:25:56 +00:00
%if %{without vfs_glusterfs}
rm -f %{buildroot}%{_mandir}/man8/vfs_glusterfs.8*
%endif
2020-10-19 15:23:08 +00:00
%if %{without vfs_cephfs}
rm -f %{buildroot}%{_mandir}/man8/vfs_ceph.8*
rm -f %{buildroot}%{_mandir}/man8/vfs_ceph_snapshots.8*
%endif
2012-09-26 12:23:24 +00:00
# This makes the right links, as rpmlint requires that
# the ldconfig-created links be recorded in the RPM.
/sbin/ldconfig -N -n %{buildroot}%{_libdir}
2008-08-25 15:50:14 +00:00
2020-10-20 05:25:57 +00:00
%if %{without dc} && %{without testsuite}
for f in samba/libsamba-python-private-samba.so; do
2018-08-01 16:28:10 +00:00
rm -f %{buildroot}%{_libdir}/$f
done
2020-10-20 05:25:57 +00:00
#endif without dc
%endif
2020-10-20 12:18:49 +00:00
%if %{with testsuite}
rm -f %{buildroot}%{_mandir}/man8/vfs_nfs4acl_xattr.8*
#endif with testsuite
%endif
pushd pidl
2020-11-03 13:31:00 +00:00
%{__make} DESTDIR=%{buildroot} install_vendor
rm -f %{buildroot}%{perl_archlib}/perllocal.pod
rm -f %{buildroot}%{perl_archlib}/vendor_perl/auto/Parse/Pidl/.packlist
2019-12-02 11:06:24 +00:00
# Already packaged by perl Parse:Yapp
rm -rf %{buildroot}%{perl_vendorlib}/Parse/Yapp
popd
# Install libldb manpages
cp -a lib/ldb/apidocs/man/* %{buildroot}%{_mandir}
# Remove manpages we don't want
rm -f %{buildroot}%{_mandir}/man3/_*
rm -f %{buildroot}%{_mandir}/man3/PyLdb*
%if %{with testsuite}
%check
2020-10-20 12:18:49 +00:00
#
# samba3.smb2.timestamps.*:
#
# The test fails on ext4 as it uses two high-order bits
# in the timestamp so the year 2038 problem is deferred till 2446.
# https://bugzilla.samba.org/show_bug.cgi?id=14546
#
for t in samba3.smb2.timestamps.time_t_15032385535 \
samba3.smb2.timestamps.time_t_10000000000 \
samba3.smb2.timestamps.time_t_4294967295 \
; do
echo "^$t" >> selftest/knownfail.d/fedora.%{dist}
done
cat selftest/knownfail.d/fedora.%{dist}
export TDB_NO_FSYNC=1
export NMBD_DONT_LOG_STDOUT=1
export SMBD_DONT_LOG_STDOUT=1
export WINBINDD_DONT_LOG_STDOUT=1
2020-11-03 13:31:00 +00:00
%{__make} %{?_smp_mflags} test FAIL_IMMEDIATELY=1
#endif with testsuite
%endif
%post
%systemd_post samba-bgqd.service
2012-09-26 12:23:24 +00:00
%systemd_post smb.service
%systemd_post nmb.service
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%preun
%systemd_preun samba-bgqd.service
2012-09-26 12:23:24 +00:00
%systemd_preun smb.service
%systemd_preun nmb.service
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
2011-09-20 15:22:40 +00:00
%postun
%systemd_postun_with_restart samba-bgqd.service
2012-09-26 12:23:24 +00:00
%systemd_postun_with_restart smb.service
%systemd_postun_with_restart nmb.service
2017-07-31 10:13:34 +00:00
%pre common
# This creates the group 'printadmin'
%sysusers_create_compat %{SOURCE16}
2017-07-31 10:13:34 +00:00
2012-10-17 12:13:28 +00:00
%post common
%{?ldconfig}
%tmpfiles_create %{_tmpfilesdir}/samba.conf
if [ -d /var/cache/samba ]; then
mv /var/cache/samba/netsamlogon_cache.tdb /var/lib/samba/ 2>/dev/null
mv /var/cache/samba/winbindd_cache.tdb /var/lib/samba/ 2>/dev/null
rm -rf /var/cache/samba/
ln -sf /var/cache/samba /var/lib/samba/
fi
2012-09-26 12:23:24 +00:00
2016-01-27 11:14:58 +00:00
%post client
%{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \
2016-02-11 09:04:39 +00:00
cups_backend_smb \
%{_bindir}/smbspool 10
2016-01-27 11:14:58 +00:00
%postun client
if [ $1 -eq 0 ] ; then
%{_sbindir}/update-alternatives --remove cups_backend_smb %{_bindir}/smbspool
2016-01-27 11:14:58 +00:00
fi
%ldconfig_scriptlets client-libs
2016-01-27 11:14:58 +00:00
%ldconfig_scriptlets common-libs
2012-09-26 12:23:24 +00:00
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
%ldconfig_scriptlets dc-libs
%post dc
%systemd_post samba.service
%preun dc
%systemd_preun samba.service
%postun dc
%systemd_postun_with_restart samba.service
2020-10-20 05:25:57 +00:00
#endif with dc
%endif
2012-09-26 12:23:24 +00:00
2016-01-27 11:14:58 +00:00
%post krb5-printing
%{_sbindir}/update-alternatives --install %{_libexecdir}/samba/cups_backend_smb \
cups_backend_smb \
%{_libexecdir}/samba/smbspool_krb5_wrapper 50
%postun krb5-printing
if [ $1 -eq 0 ] ; then
%{_sbindir}/update-alternatives --remove cups_backend_smb %{_libexecdir}/samba/smbspool_krb5_wrapper
fi
%ldconfig_scriptlets libs
2007-03-29 18:11:01 +00:00
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
%ldconfig_scriptlets -n libsmbclient
2016-02-15 13:00:42 +00:00
%endif
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
%pre -n libwbclient
if [ $1 -gt 1 ] ; then
rm -rf %{_libdir}/samba/wbclient/ 2>/dev/null
rm -f /etc/alternatives/libwbclient.so* 2>/dev/null
rm -f /var/lib/alternatives/libwbclient.so* 2>/dev/null
fi
%{?ldconfig}
2020-10-19 13:54:28 +00:00
#endif {with libwbclient}
%endif
2007-03-29 18:11:01 +00:00
%ldconfig_scriptlets test
2007-03-29 18:11:01 +00:00
%pre usershares
# This creates the group 'usershares'
%sysusers_create_compat %{SOURCE17}
2012-10-17 12:13:28 +00:00
%pre winbind
# This creates the group 'wbpriv'
%sysusers_create_compat %{SOURCE18}
2012-10-17 12:13:28 +00:00
%post winbind
%systemd_post winbind.service
2012-10-17 12:13:28 +00:00
%preun winbind
%systemd_preun winbind.service
2011-09-20 15:22:40 +00:00
2012-10-17 12:13:28 +00:00
%postun winbind
2019-11-25 10:57:08 +00:00
%systemd_postun_with_restart winbind.service
auto-import changelog data from samba-3.0.0-15.src.rpm * Thu Sep 25 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-15 - New 3.0.0 final release - merge nmbd-netbiosname and testparm patches from 3E branch - updated the -logfiles patch to work against 3.0.0 - updated the pie patch - update the VERSION file during build - use make -j if avaliable - merge the winbindd_privileged change from 3E - merge the "rm /usr/lib" patch that allows Samba to build on 64-bit platforms despite the broken Makefile * Mon Aug 18 2003 Jay Fenlason <fenlason@redhat.com> - Merge from samba-3E-branch after samba-3.0.0rc1 was released * Wed Jul 23 2003 Jay Fenlason <fenlason@redhat.com> 3.0.0-3beta3 - Merge from 3.0.0-2beta3.3E - (Correct log file names (#100981).) - (Fix pidfile directory in samab.log) - (Remove obsolete samba-3.0.0beta2.tar.bz2.md5 file) - (Move libsmbclient to the -common package (#99449)) * Sun Jun 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.8a-4 - rebuild * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> - rebuilt * Wed May 28 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-2 - add libsmbclient.so for gnome-vfs-extras - Edit specfile to specify /var/run for pid files - Move /tmp/.winbindd/socket to /var/run/winbindd/socket * Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de> - add proper ldconfig calls * Thu Apr 24 2003 Jay Fenlason <fenlason@redhat.com> 2.2.8a-1 - upgrade to 2.2.8a - remove old .md5 files - add "pid directory = /var/run" to the smb.conf file. Fixes #88495 - Patch from jra@dp.samba.org to fix a delete-on-close regression
2004-09-09 12:08:44 +00:00
%postun winbind-krb5-locator
if [ "$1" -ge "1" ]; then
2018-06-27 11:48:45 +00:00
if [ "`readlink %{_sysconfdir}/alternatives/winbind_krb5_locator.so`" == "%{_libdir}/samba/krb5/winbind_krb5_locator.so" ]; then
%{_sbindir}/update-alternatives --set winbind_krb5_locator.so %{_libdir}/samba/krb5/winbind_krb5_locator.so
fi
fi
%post winbind-krb5-locator
%{_sbindir}/update-alternatives --install %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so \
2018-06-27 11:48:45 +00:00
winbind_krb5_locator.so %{_libdir}/samba/krb5/winbind_krb5_locator.so 10
%preun winbind-krb5-locator
if [ $1 -eq 0 ]; then
2018-06-27 11:48:45 +00:00
%{_sbindir}/update-alternatives --remove winbind_krb5_locator.so %{_libdir}/samba/krb5/winbind_krb5_locator.so
fi
%ldconfig_scriptlets winbind-modules
%if %{with clustering}
2015-01-05 15:31:20 +00:00
%post -n ctdb
2016-05-25 08:40:41 +00:00
/usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/ctdb.conf
2015-01-05 15:31:20 +00:00
%systemd_post ctdb.service
%preun -n ctdb
%systemd_preun ctdb.service
%postun -n ctdb
%systemd_postun_with_restart ctdb.service
%endif
%ldconfig_scriptlets -n libldb
%ldconfig_scriptlets -n python3-ldb
2015-01-05 15:31:20 +00:00
2012-10-17 12:13:28 +00:00
### SAMBA
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%files
%doc examples/autofs examples/LDAP examples/misc
%doc examples/printer-accounting examples/printing
%doc packaging/README.downgrade
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%{_bindir}/smbstatus
%{_sbindir}/eventlogadm
2012-09-26 12:23:24 +00:00
%{_sbindir}/nmbd
%{_sbindir}/smbd
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
2024-02-01 06:59:36 +00:00
# This is only used by vfs_dfs_samba4
%{_libdir}/samba/libdfs-server-ad-private-samba.so
%endif
%dir %{_libdir}/samba/auth
%{_libdir}/samba/auth/unix.so
%dir %{_libdir}/samba/vfs
%{_libdir}/samba/vfs/acl_tdb.so
%{_libdir}/samba/vfs/acl_xattr.so
%{_libdir}/samba/vfs/aio_fork.so
%{_libdir}/samba/vfs/aio_pthread.so
%{_libdir}/samba/vfs/audit.so
2013-07-17 14:39:05 +00:00
%{_libdir}/samba/vfs/btrfs.so
%{_libdir}/samba/vfs/cap.so
%{_libdir}/samba/vfs/catia.so
%{_libdir}/samba/vfs/commit.so
%{_libdir}/samba/vfs/crossrename.so
%{_libdir}/samba/vfs/default_quota.so
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
%{_libdir}/samba/vfs/dfs_samba4.so
2017-10-26 10:57:17 +00:00
%endif
%{_libdir}/samba/vfs/dirsort.so
%{_libdir}/samba/vfs/expand_msdfs.so
%{_libdir}/samba/vfs/extd_audit.so
%{_libdir}/samba/vfs/fake_perms.so
%{_libdir}/samba/vfs/fileid.so
2014-11-17 14:25:24 +00:00
%{_libdir}/samba/vfs/fruit.so
%{_libdir}/samba/vfs/full_audit.so
%{_libdir}/samba/vfs/gpfs.so
2019-05-10 07:37:55 +00:00
%{_libdir}/samba/vfs/glusterfs_fuse.so
%{_libdir}/samba/vfs/linux_xfs_sgid.so
%{_libdir}/samba/vfs/media_harmony.so
2016-01-27 11:14:58 +00:00
%{_libdir}/samba/vfs/offline.so
%{_libdir}/samba/vfs/preopen.so
%{_libdir}/samba/vfs/readahead.so
%{_libdir}/samba/vfs/readonly.so
%{_libdir}/samba/vfs/recycle.so
%{_libdir}/samba/vfs/shadow_copy.so
%{_libdir}/samba/vfs/shadow_copy2.so
2015-08-31 13:42:47 +00:00
%{_libdir}/samba/vfs/shell_snap.so
2015-04-22 07:45:25 +00:00
%{_libdir}/samba/vfs/snapper.so
%{_libdir}/samba/vfs/streams_depot.so
%{_libdir}/samba/vfs/streams_xattr.so
%{_libdir}/samba/vfs/syncops.so
%{_libdir}/samba/vfs/time_audit.so
2015-08-31 13:42:47 +00:00
%{_libdir}/samba/vfs/unityed_media.so
%{_libdir}/samba/vfs/virusfilter.so
2020-07-09 09:27:48 +00:00
%{_libdir}/samba/vfs/widelinks.so
2014-11-17 14:25:24 +00:00
%{_libdir}/samba/vfs/worm.so
%{_libdir}/samba/vfs/xattr_tdb.so
2020-10-20 12:18:49 +00:00
%if %{with testsuite}
%{_libdir}/samba/vfs/nfs4acl_xattr.so
%endif
2022-01-25 10:55:29 +00:00
%dir %{_libexecdir}/samba
%{_libexecdir}/samba/samba-bgqd
%dir %{_datadir}/samba
%dir %{_datadir}/samba/mdssvc
%{_datadir}/samba/mdssvc/elasticsearch_mappings.json
2011-09-20 15:22:40 +00:00
%{_unitdir}/nmb.service
2012-09-26 12:23:24 +00:00
%{_unitdir}/smb.service
%{_unitdir}/samba-bgqd.service
%dir %{_sysconfdir}/openldap/schema
2016-02-11 09:04:39 +00:00
%config %{_sysconfdir}/openldap/schema/samba.schema
2016-06-08 11:16:07 +00:00
%config(noreplace) %{_sysconfdir}/pam.d/samba
2012-09-26 12:23:24 +00:00
%{_mandir}/man1/smbstatus.1*
%{_mandir}/man8/eventlogadm.8*
%{_mandir}/man8/samba-bgqd.8*
2012-09-26 12:23:24 +00:00
%{_mandir}/man8/smbd.8*
%{_mandir}/man8/nmbd.8*
%{_mandir}/man8/vfs_acl_tdb.8*
%{_mandir}/man8/vfs_acl_xattr.8*
%{_mandir}/man8/vfs_aio_fork.8*
%{_mandir}/man8/vfs_aio_pthread.8*
%{_mandir}/man8/vfs_audit.8*
2013-07-17 14:39:05 +00:00
%{_mandir}/man8/vfs_btrfs.8*
%{_mandir}/man8/vfs_cap.8*
%{_mandir}/man8/vfs_catia.8*
%{_mandir}/man8/vfs_commit.8*
%{_mandir}/man8/vfs_crossrename.8*
%{_mandir}/man8/vfs_default_quota.8*
%{_mandir}/man8/vfs_dirsort.8*
2022-01-25 10:55:29 +00:00
%{_mandir}/man8/vfs_expand_msdfs.8*
%{_mandir}/man8/vfs_extd_audit.8*
%{_mandir}/man8/vfs_fake_perms.8*
%{_mandir}/man8/vfs_fileid.8*
2014-11-17 14:25:24 +00:00
%{_mandir}/man8/vfs_fruit.8*
%{_mandir}/man8/vfs_full_audit.8*
%{_mandir}/man8/vfs_gpfs.8*
2019-05-10 07:37:55 +00:00
%{_mandir}/man8/vfs_glusterfs_fuse.8*
2013-09-11 12:38:36 +00:00
%{_mandir}/man8/vfs_linux_xfs_sgid.8*
%{_mandir}/man8/vfs_media_harmony.8*
2016-01-27 11:14:58 +00:00
%{_mandir}/man8/vfs_offline.8*
%{_mandir}/man8/vfs_preopen.8*
%{_mandir}/man8/vfs_readahead.8*
%{_mandir}/man8/vfs_readonly.8*
%{_mandir}/man8/vfs_recycle.8*
%{_mandir}/man8/vfs_shadow_copy.8*
%{_mandir}/man8/vfs_shadow_copy2.8*
2015-08-31 13:42:47 +00:00
%{_mandir}/man8/vfs_shell_snap.8*
2014-11-17 14:25:24 +00:00
%{_mandir}/man8/vfs_snapper.8*
%{_mandir}/man8/vfs_streams_depot.8*
%{_mandir}/man8/vfs_streams_xattr.8*
2013-09-11 12:38:36 +00:00
%{_mandir}/man8/vfs_syncops.8*
%{_mandir}/man8/vfs_time_audit.8*
2015-08-31 13:42:47 +00:00
%{_mandir}/man8/vfs_unityed_media.8*
%{_mandir}/man8/vfs_virusfilter.8*
2020-07-09 09:27:48 +00:00
%{_mandir}/man8/vfs_widelinks.8*
2014-11-17 14:25:24 +00:00
%{_mandir}/man8/vfs_worm.8*
%{_mandir}/man8/vfs_xattr_tdb.8*
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%attr(775,root,printadmin) %dir /var/lib/samba/drivers
2016-06-07 08:11:09 +00:00
2012-10-17 12:13:28 +00:00
### CLIENT
2012-09-26 12:23:24 +00:00
%files client
2019-12-05 17:09:57 +00:00
%doc source3/client/README.smbspool
2012-09-26 12:23:24 +00:00
%{_bindir}/cifsdd
%{_bindir}/dbwrap_tool
2019-01-15 19:45:03 +00:00
%{_bindir}/dumpmscat
2017-03-01 14:14:02 +00:00
%{_bindir}/mvxattr
%{_bindir}/mdsearch
2012-09-26 12:23:24 +00:00
%{_bindir}/nmblookup
%{_bindir}/oLschema2ldif
%{_bindir}/regdiff
%{_bindir}/regpatch
%{_bindir}/regshell
%{_bindir}/regtree
%{_bindir}/rpcclient
%{_bindir}/samba-regedit
2012-09-26 12:23:24 +00:00
%{_bindir}/sharesec
%{_bindir}/smbcacls
%{_bindir}/smbclient
%{_bindir}/smbcquotas
%{_bindir}/smbget
%{_bindir}/smbprint
2012-09-26 12:23:24 +00:00
%{_bindir}/smbspool
2013-07-03 11:32:31 +00:00
%{_bindir}/smbtar
2012-09-26 12:23:24 +00:00
%{_bindir}/smbtree
%{_bindir}/wspsearch
2016-01-27 11:14:58 +00:00
%dir %{_libexecdir}/samba
%ghost %{_libexecdir}/samba/cups_backend_smb
2013-02-07 14:58:49 +00:00
%{_mandir}/man1/dbwrap_tool.1*
2012-09-26 12:23:24 +00:00
%{_mandir}/man1/nmblookup.1*
%{_mandir}/man1/oLschema2ldif.1*
%{_mandir}/man1/regdiff.1*
%{_mandir}/man1/regpatch.1*
%{_mandir}/man1/regshell.1*
%{_mandir}/man1/regtree.1*
%{_mandir}/man1/log2pcap.1*
%{_mandir}/man1/mdsearch.1*
2017-03-01 14:14:02 +00:00
%{_mandir}/man1/mvxattr.1*
2012-09-26 12:23:24 +00:00
%{_mandir}/man1/rpcclient.1*
%{_mandir}/man1/sharesec.1*
%{_mandir}/man1/smbcacls.1*
%{_mandir}/man1/smbclient.1*
%{_mandir}/man1/smbcquotas.1*
%{_mandir}/man1/smbget.1*
%{_mandir}/man1/smbtar.1*
2012-09-26 12:23:24 +00:00
%{_mandir}/man1/smbtree.1*
%{_mandir}/man1/wspsearch.1*
2018-01-15 14:16:16 +00:00
%{_mandir}/man7/traffic_learner.7.*
%{_mandir}/man7/traffic_replay.7.*
2016-02-23 13:59:15 +00:00
%{_mandir}/man8/cifsdd.8.*
2013-09-11 12:38:36 +00:00
%{_mandir}/man8/samba-regedit.8*
2012-09-26 12:23:24 +00:00
%{_mandir}/man8/smbspool.8*
2020-10-20 12:18:49 +00:00
%if %{with includelibs}
%{_bindir}/ldbadd
%{_bindir}/ldbdel
%{_bindir}/ldbedit
%{_bindir}/ldbmodify
%{_bindir}/ldbrename
%{_bindir}/ldbsearch
%{_bindir}/tdbbackup
%{_bindir}/tdbdump
%{_bindir}/tdbrestore
%{_bindir}/tdbtool
%{_mandir}/man1/ldbadd.1.gz
%{_mandir}/man1/ldbdel.1.gz
%{_mandir}/man1/ldbedit.1.gz
%{_mandir}/man1/ldbmodify.1.gz
%{_mandir}/man1/ldbrename.1.gz
%{_mandir}/man1/ldbsearch.1.gz
%{_mandir}/man8/tdbbackup.8.gz
%{_mandir}/man8/tdbdump.8.gz
%{_mandir}/man8/tdbrestore.8.gz
%{_mandir}/man8/tdbtool.8.gz
#endif with includelibs
%endif
2015-03-12 18:01:41 +00:00
### CLIENT-LIBS
%files client-libs
%{_libdir}/libdcerpc-binding.so.%{libdcerpc_binding_so_version}*
%{_libdir}/libdcerpc-server-core.so.%{libdcerpc_server_core_so_version}*
%{_libdir}/libdcerpc.so.%{libdcerpc_so_version}*
%{_libdir}/libndr-krb5pac.so.%{libndr_krb5pac_so_version}*
%{_libdir}/libndr-nbt.so.%{libndr_nbt_so_version}*
%{_libdir}/libndr-standard.so.%{libndr_standard_so_version}*
%{_libdir}/libndr.so.%{libndr_so_version}*
%{_libdir}/libsamba-credentials.so.%{libsamba_credentials_so_version}*
%{_libdir}/libsamba-errors.so.%{libsamba_errors_so_version}*
%{_libdir}/libsamba-hostconfig.so.%{libsamba_hostconfig_so_version}*
%{_libdir}/libsamba-passdb.so.%{libsamba_passdb_so_version}*
%{_libdir}/libsamba-util.so.%{libsamba_util_so_version}*
%{_libdir}/libsamdb.so.%{libsamdb_so_version}*
%{_libdir}/libsmbconf.so.%{libsmbconf_so_version}*
%{_libdir}/libsmbldap.so.%{libsmbldap_so_version}*
%{_libdir}/libtevent-util.so.%{libtevent_util_so_version}*
2015-03-12 18:01:41 +00:00
%dir %{_libdir}/samba
%{_libdir}/samba/libCHARSET3-private-samba.so
%{_libdir}/samba/libMESSAGING-SEND-private-samba.so
%{_libdir}/samba/libMESSAGING-private-samba.so
%{_libdir}/samba/libaddns-private-samba.so
%{_libdir}/samba/libads-private-samba.so
%{_libdir}/samba/libasn1util-private-samba.so
%{_libdir}/samba/libauth-private-samba.so
%{_libdir}/samba/libauthkrb5-private-samba.so
%{_libdir}/samba/libcli-cldap-private-samba.so
%{_libdir}/samba/libcli-ldap-common-private-samba.so
%{_libdir}/samba/libcli-ldap-private-samba.so
%{_libdir}/samba/libcli-nbt-private-samba.so
%{_libdir}/samba/libcli-smb-common-private-samba.so
%{_libdir}/samba/libcli-spoolss-private-samba.so
%{_libdir}/samba/libcliauth-private-samba.so
%{_libdir}/samba/libclidns-private-samba.so
%{_libdir}/samba/libcluster-private-samba.so
%{_libdir}/samba/libcmdline-contexts-private-samba.so
%{_libdir}/samba/libcommon-auth-private-samba.so
%{_libdir}/samba/libctdb-event-client-private-samba.so
%{_libdir}/samba/libdbwrap-private-samba.so
%{_libdir}/samba/libdcerpc-pkt-auth-private-samba.so
%{_libdir}/samba/libdcerpc-samba-private-samba.so
%{_libdir}/samba/libevents-private-samba.so
%{_libdir}/samba/libflag-mapping-private-samba.so
%{_libdir}/samba/libgenrand-private-samba.so
%{_libdir}/samba/libgensec-private-samba.so
%{_libdir}/samba/libgpext-private-samba.so
%{_libdir}/samba/libgpo-private-samba.so
%{_libdir}/samba/libgse-private-samba.so
%{_libdir}/samba/libhttp-private-samba.so
%{_libdir}/samba/libinterfaces-private-samba.so
%{_libdir}/samba/libiov-buf-private-samba.so
%{_libdir}/samba/libkrb5samba-private-samba.so
%{_libdir}/samba/libldbsamba-private-samba.so
%{_libdir}/samba/liblibcli-lsa3-private-samba.so
%{_libdir}/samba/liblibcli-netlogon3-private-samba.so
%{_libdir}/samba/liblibsmb-private-samba.so
%{_libdir}/samba/libmessages-dgm-private-samba.so
%{_libdir}/samba/libmessages-util-private-samba.so
%{_libdir}/samba/libmscat-private-samba.so
%{_libdir}/samba/libmsghdr-private-samba.so
%{_libdir}/samba/libmsrpc3-private-samba.so
%{_libdir}/samba/libndr-samba-private-samba.so
%{_libdir}/samba/libndr-samba4-private-samba.so
%{_libdir}/samba/libnet-keytab-private-samba.so
%{_libdir}/samba/libnetif-private-samba.so
%{_libdir}/samba/libnpa-tstream-private-samba.so
%{_libdir}/samba/libposix-eadb-private-samba.so
%{_libdir}/samba/libprinter-driver-private-samba.so
%{_libdir}/samba/libprinting-migrate-private-samba.so
%{_libdir}/samba/libreplace-private-samba.so
%{_libdir}/samba/libregistry-private-samba.so
%{_libdir}/samba/libsamba-cluster-support-private-samba.so
%{_libdir}/samba/libsamba-debug-private-samba.so
%{_libdir}/samba/libsamba-modules-private-samba.so
%{_libdir}/samba/libsamba-security-private-samba.so
%{_libdir}/samba/libsamba-sockets-private-samba.so
%{_libdir}/samba/libsamba3-util-private-samba.so
%{_libdir}/samba/libsamdb-common-private-samba.so
%{_libdir}/samba/libsecrets3-private-samba.so
%{_libdir}/samba/libserver-id-db-private-samba.so
%{_libdir}/samba/libserver-role-private-samba.so
%{_libdir}/samba/libsmb-transport-private-samba.so
%{_libdir}/samba/libsmbclient-raw-private-samba.so
%{_libdir}/samba/libsmbd-base-private-samba.so
%{_libdir}/samba/libsmbd-shim-private-samba.so
%{_libdir}/samba/libsmbldaphelper-private-samba.so
%{_libdir}/samba/libstable-sort-private-samba.so
%{_libdir}/samba/libsys-rw-private-samba.so
%{_libdir}/samba/libsocket-blocking-private-samba.so
%{_libdir}/samba/libtalloc-report-printf-private-samba.so
%{_libdir}/samba/libtalloc-report-private-samba.so
%{_libdir}/samba/libtdb-wrap-private-samba.so
%{_libdir}/samba/libtime-basic-private-samba.so
%{_libdir}/samba/libtorture-private-samba.so
%{_libdir}/samba/libutil-reg-private-samba.so
%{_libdir}/samba/libutil-setid-private-samba.so
%{_libdir}/samba/libutil-tdb-private-samba.so
2015-03-12 18:01:41 +00:00
2020-10-19 13:54:28 +00:00
%if %{without libwbclient}
2015-03-12 18:01:41 +00:00
%{_libdir}/samba/libwbclient.so.*
2020-10-19 13:54:28 +00:00
#endif without libwbclient
%endif
2015-03-12 18:01:41 +00:00
2020-10-19 13:53:32 +00:00
%if %{without libsmbclient}
%{_libdir}/samba/libsmbclient.so.%{libsmbclient_so_version}*
2015-03-12 18:01:41 +00:00
%{_mandir}/man7/libsmbclient.7*
2020-10-19 13:53:32 +00:00
#endif without libsmbclient
%endif
2015-03-12 18:01:41 +00:00
2020-10-20 12:18:49 +00:00
%if %{with includelibs}
%{_libdir}/samba/libldb-*.so
%{_libdir}/samba/libtalloc-private-samba.so
%{_libdir}/samba/libtdb-private-samba.so
%{_libdir}/samba/libtevent-private-samba.so
2020-10-20 12:18:49 +00:00
%{_mandir}/man3/ldb.3.gz
%{_mandir}/man3/talloc.3.gz
#endif with includelibs
%endif
2012-10-17 12:13:28 +00:00
### COMMON
%files common
%doc README.md WHATSNEW.txt
%license COPYING
2016-05-25 08:40:41 +00:00
%{_tmpfilesdir}/samba.conf
%{_sysusersdir}/samba.conf
2013-05-21 12:42:38 +00:00
%dir %{_sysconfdir}/logrotate.d/
%config(noreplace) %{_sysconfdir}/logrotate.d/samba
%attr(0700,root,root) %dir /var/log/samba
%attr(0700,root,root) %dir /var/log/samba/old
%ghost %dir /run/samba
%ghost %dir /run/winbindd
2015-06-24 12:01:51 +00:00
%dir /var/lib/samba
%dir /var/lib/samba/certs
2012-10-17 12:13:28 +00:00
%attr(700,root,root) %dir /var/lib/samba/private
%attr(700,root,root) %dir /var/lib/samba/private/certs
%dir /var/lib/samba/lock
2012-10-17 12:13:28 +00:00
%attr(755,root,root) %dir %{_sysconfdir}/samba
%config(noreplace) %{_sysconfdir}/samba/smb.conf
%{_sysconfdir}/samba/smb.conf.example
2012-10-17 12:13:28 +00:00
%config(noreplace) %{_sysconfdir}/samba/lmhosts
%config(noreplace) %{_sysconfdir}/sysconfig/samba
%{_mandir}/man5/lmhosts.5*
%{_mandir}/man5/smb.conf.5*
%{_mandir}/man5/smbpasswd.5*
%{_mandir}/man7/samba.7*
2012-10-17 12:13:28 +00:00
### COMMON-LIBS
%files common-libs
2012-10-17 12:13:28 +00:00
# common libraries
%{_libdir}/samba/libcmdline-private-samba.so
2013-07-16 14:30:50 +00:00
%dir %{_libdir}/samba/ldb
2013-07-16 14:30:50 +00:00
%dir %{_libdir}/samba/pdb
%{_libdir}/samba/pdb/ldapsam.so
%{_libdir}/samba/pdb/smbpasswd.so
%{_libdir}/samba/pdb/tdbsam.so
2012-10-17 12:13:28 +00:00
### COMMON-TOOLS
%files common-tools
%{_bindir}/net
%{_bindir}/pdbedit
%{_bindir}/profiles
%{_bindir}/samba-log-parser
%{_bindir}/smbcontrol
%{_bindir}/smbpasswd
%{_bindir}/testparm
%{_mandir}/man1/profiles.1*
%{_mandir}/man1/samba-log-parser.1*
%{_mandir}/man1/smbcontrol.1*
%{_mandir}/man1/testparm.1*
%{_mandir}/man8/net.8*
%{_mandir}/man8/pdbedit.8*
%{_mandir}/man8/smbpasswd.8*
### TOOLS
%files tools
%{_bindir}/samba-tool
%{_mandir}/man8/samba-tool.8*
### RPC
%files dcerpc
%dir %{_libexecdir}/samba
%{_libexecdir}/samba/samba-dcerpcd
%{_libexecdir}/samba/rpcd_classic
%{_libexecdir}/samba/rpcd_epmapper
%{_libexecdir}/samba/rpcd_fsrvp
%{_libexecdir}/samba/rpcd_lsad
%{_libexecdir}/samba/rpcd_mdssvc
%if %{with testsuite}
%{_libexecdir}/samba/rpcd_rpcecho
%endif
%{_libexecdir}/samba/rpcd_spoolss
%{_libexecdir}/samba/rpcd_winreg
%{_libexecdir}/samba/rpcd_witness
%{_mandir}/man8/samba-dcerpcd.8*
2012-10-17 12:13:28 +00:00
### DC
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
2012-10-17 12:13:28 +00:00
%files dc
%{_unitdir}/samba.service
2012-10-17 12:13:28 +00:00
%{_sbindir}/samba
%{_sbindir}/samba_dnsupdate
2019-09-04 07:13:29 +00:00
%{_sbindir}/samba_downgrade_db
%{_sbindir}/samba_kcc
2012-10-17 12:13:28 +00:00
%{_sbindir}/samba_spnupdate
%{_sbindir}/samba_upgradedns
2017-07-05 07:43:31 +00:00
%{_libdir}/krb5/plugins/kdb/samba.so
2013-09-11 12:38:36 +00:00
%{_libdir}/samba/auth/samba4.so
2015-03-10 18:50:15 +00:00
%dir %{_libdir}/samba/gensec
%{_libdir}/samba/gensec/krb5.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/acl.so
%{_libdir}/samba/ldb/aclread.so
%{_libdir}/samba/ldb/anr.so
2018-07-12 10:43:59 +00:00
%{_libdir}/samba/ldb/audit_log.so
%{_libdir}/samba/ldb/count_attrs.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/descriptor.so
%{_libdir}/samba/ldb/dirsync.so
2015-08-31 13:42:47 +00:00
%{_libdir}/samba/ldb/dns_notify.so
2017-07-05 07:43:31 +00:00
%{_libdir}/samba/ldb/dsdb_notification.so
2018-01-15 14:16:16 +00:00
%{_libdir}/samba/ldb/encrypted_secrets.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/extended_dn_in.so
%{_libdir}/samba/ldb/extended_dn_out.so
%{_libdir}/samba/ldb/extended_dn_store.so
2018-07-12 10:43:59 +00:00
%{_libdir}/samba/ldb/group_audit_log.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/instancetype.so
%{_libdir}/samba/ldb/lazy_commit.so
%{_libdir}/samba/ldb/linked_attributes.so
%{_libdir}/samba/ldb/new_partition.so
%{_libdir}/samba/ldb/objectclass.so
%{_libdir}/samba/ldb/objectclass_attrs.so
%{_libdir}/samba/ldb/objectguid.so
%{_libdir}/samba/ldb/operational.so
2019-01-15 19:45:03 +00:00
%{_libdir}/samba/ldb/paged_results.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/partition.so
%{_libdir}/samba/ldb/password_hash.so
%{_libdir}/samba/ldb/ranged_results.so
%{_libdir}/samba/ldb/repl_meta_data.so
%{_libdir}/samba/ldb/resolve_oids.so
%{_libdir}/samba/ldb/rootdse.so
%{_libdir}/samba/ldb/samba3sam.so
%{_libdir}/samba/ldb/samba3sid.so
%{_libdir}/samba/ldb/samba_dsdb.so
%{_libdir}/samba/ldb/samba_secrets.so
%{_libdir}/samba/ldb/samldb.so
%{_libdir}/samba/ldb/schema_data.so
%{_libdir}/samba/ldb/schema_load.so
%{_libdir}/samba/ldb/secrets_tdb_sync.so
%{_libdir}/samba/ldb/show_deleted.so
%{_libdir}/samba/ldb/subtree_delete.so
%{_libdir}/samba/ldb/subtree_rename.so
2015-08-31 13:42:47 +00:00
%{_libdir}/samba/ldb/tombstone_reanimate.so
2018-01-15 14:16:16 +00:00
%{_libdir}/samba/ldb/unique_object_sids.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/update_keytab.so
2017-07-05 07:43:31 +00:00
%{_libdir}/samba/ldb/vlv.so
2013-07-03 11:32:31 +00:00
%{_libdir}/samba/ldb/wins_ldb.so
2020-10-20 12:18:49 +00:00
%{_libdir}/samba/vfs/posix_eadb.so
2012-10-17 12:13:28 +00:00
%dir /var/lib/samba/sysvol
%{_mandir}/man8/samba.8*
2019-09-04 07:13:29 +00:00
%{_mandir}/man8/samba_downgrade_db.8*
2020-07-09 09:27:48 +00:00
%dir %{_datadir}/samba/admx
%{_datadir}/samba/admx/GNOME_Settings.admx
2020-07-09 09:27:48 +00:00
%{_datadir}/samba/admx/samba.admx
%dir %{_datadir}/samba/admx/en-US
%{_datadir}/samba/admx/en-US/GNOME_Settings.adml
2020-07-09 09:27:48 +00:00
%{_datadir}/samba/admx/en-US/samba.adml
%dir %{_datadir}/samba/admx/ru-RU
%{_datadir}/samba/admx/ru-RU/GNOME_Settings.adml
2012-10-17 12:13:28 +00:00
%files dc-provision
2019-12-06 10:24:03 +00:00
%license source4/setup/ad-schema/licence.txt
%{_datadir}/samba/setup
#endif with dc || with testsuite
%endif
2012-10-17 12:13:28 +00:00
### DC-LIBS
%files dc-libs
%{_libdir}/libsamba-policy.so.%{libsamba_policy_so_version}*
%{_libdir}/samba/libauth4-private-samba.so
%{_libdir}/samba/libsamba-net-private-samba.so
%if %{with dc} || %{with testsuite}
%{_libdir}/samba/libdb-glue-private-samba.so
%{_libdir}/samba/libpac-private-samba.so
%{_libdir}/samba/libprocess-model-private-samba.so
%{_libdir}/samba/libservice-private-samba.so
2020-10-20 12:18:49 +00:00
%if %{with testsuite}
%{_libdir}/samba/libntvfs-private-samba.so
2020-10-20 12:18:49 +00:00
%endif
2015-03-10 18:50:15 +00:00
%dir %{_libdir}/samba/process_model
2018-01-15 14:16:16 +00:00
%{_libdir}/samba/process_model/prefork.so
2015-03-10 18:50:15 +00:00
%{_libdir}/samba/process_model/standard.so
%dir %{_libdir}/samba/service
%{_libdir}/samba/service/cldap.so
%{_libdir}/samba/service/dcerpc.so
%{_libdir}/samba/service/dns.so
%{_libdir}/samba/service/dns_update.so
%{_libdir}/samba/service/drepl.so
%{_libdir}/samba/service/kcc.so
%{_libdir}/samba/service/kdc.so
%{_libdir}/samba/service/ldap.so
%{_libdir}/samba/service/nbtd.so
%{_libdir}/samba/service/ntp_signd.so
%{_libdir}/samba/service/s3fs.so
%{_libdir}/samba/service/winbindd.so
%{_libdir}/samba/service/wrepl.so
2020-10-20 12:18:49 +00:00
%if %{with testsuite}
%{_libdir}/samba/service/smb.so
%endif
2012-10-17 12:13:28 +00:00
%{_libdir}/libdcerpc-server.so.*
%{_libdir}/samba/libad-claims-private-samba.so
%{_libdir}/samba/libauthn-policy-util-private-samba.so
%{_libdir}/samba/libdsdb-module-private-samba.so
%{_libdir}/samba/libdsdb-garbage-collect-tombstones-private-samba.so
%{_libdir}/samba/libscavenge-dns-records-private-samba.so
2012-10-17 12:13:28 +00:00
### DC-BIND
%files dc-bind-dlz
%attr(770,root,named) %dir /var/lib/samba/bind-dns
%dir %{_libdir}/samba/bind9
%{_libdir}/samba/bind9/dlz_bind9_10.so
%{_libdir}/samba/bind9/dlz_bind9_11.so
2019-01-15 19:45:03 +00:00
%{_libdir}/samba/bind9/dlz_bind9_12.so
2020-11-03 13:47:34 +00:00
%{_libdir}/samba/bind9/dlz_bind9_14.so
%{_libdir}/samba/bind9/dlz_bind9_16.so
2022-07-18 15:37:37 +00:00
%{_libdir}/samba/bind9/dlz_bind9_18.so
2020-10-20 05:25:57 +00:00
#endif with dc
%endif
2012-10-17 12:13:28 +00:00
### DEVEL
2012-09-26 12:23:24 +00:00
%files devel
%{_includedir}/samba-4.0/charset.h
%{_includedir}/samba-4.0/core/doserr.h
%{_includedir}/samba-4.0/core/error.h
2014-11-17 14:25:24 +00:00
%{_includedir}/samba-4.0/core/hresult.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/core/ntstatus.h
2017-07-05 06:23:19 +00:00
%{_includedir}/samba-4.0/core/ntstatus_gen.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/core/werror.h
2017-07-05 06:23:19 +00:00
%{_includedir}/samba-4.0/core/werror_gen.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/credentials.h
%{_includedir}/samba-4.0/dcerpc.h
2020-01-21 19:51:37 +00:00
%{_includedir}/samba-4.0/dcesrv_core.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/domain_credentials.h
%{_includedir}/samba-4.0/gen_ndr/atsvc.h
%{_includedir}/samba-4.0/gen_ndr/auth.h
%{_includedir}/samba-4.0/gen_ndr/claims.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/gen_ndr/dcerpc.h
%{_includedir}/samba-4.0/gen_ndr/krb5pac.h
%{_includedir}/samba-4.0/gen_ndr/lsa.h
%{_includedir}/samba-4.0/gen_ndr/misc.h
%{_includedir}/samba-4.0/gen_ndr/nbt.h
%{_includedir}/samba-4.0/gen_ndr/drsblobs.h
%{_includedir}/samba-4.0/gen_ndr/drsuapi.h
%{_includedir}/samba-4.0/gen_ndr/ndr_drsblobs.h
%{_includedir}/samba-4.0/gen_ndr/ndr_drsuapi.h
%{_includedir}/samba-4.0/gen_ndr/ndr_atsvc.h
%{_includedir}/samba-4.0/gen_ndr/ndr_dcerpc.h
%{_includedir}/samba-4.0/gen_ndr/ndr_krb5pac.h
%{_includedir}/samba-4.0/gen_ndr/ndr_misc.h
%{_includedir}/samba-4.0/gen_ndr/ndr_nbt.h
%{_includedir}/samba-4.0/gen_ndr/ndr_samr.h
%{_includedir}/samba-4.0/gen_ndr/ndr_samr_c.h
%{_includedir}/samba-4.0/gen_ndr/ndr_svcctl.h
%{_includedir}/samba-4.0/gen_ndr/ndr_svcctl_c.h
%{_includedir}/samba-4.0/gen_ndr/netlogon.h
%{_includedir}/samba-4.0/gen_ndr/samr.h
%{_includedir}/samba-4.0/gen_ndr/security.h
%{_includedir}/samba-4.0/gen_ndr/server_id.h
%{_includedir}/samba-4.0/gen_ndr/svcctl.h
%{_includedir}/samba-4.0/ldb_wrap.h
%{_includedir}/samba-4.0/lookup_sid.h
%{_includedir}/samba-4.0/machine_sid.h
%{_includedir}/samba-4.0/ndr.h
2014-11-17 14:25:24 +00:00
%dir %{_includedir}/samba-4.0/ndr
%{_includedir}/samba-4.0/ndr/ndr_dcerpc.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/ndr/ndr_drsblobs.h
%{_includedir}/samba-4.0/ndr/ndr_drsuapi.h
2016-07-28 13:42:11 +00:00
%{_includedir}/samba-4.0/ndr/ndr_krb5pac.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/ndr/ndr_svcctl.h
%{_includedir}/samba-4.0/ndr/ndr_nbt.h
%{_includedir}/samba-4.0/param.h
%{_includedir}/samba-4.0/passdb.h
%{_includedir}/samba-4.0/policy.h
%{_includedir}/samba-4.0/rpc_common.h
%{_includedir}/samba-4.0/samba/session.h
%{_includedir}/samba-4.0/samba/version.h
%{_includedir}/samba-4.0/share.h
2014-11-17 14:25:24 +00:00
%{_includedir}/samba-4.0/smb2_lease_struct.h
%{_includedir}/samba-4.0/smb3posix.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/smbconf.h
%{_includedir}/samba-4.0/smb_ldap.h
%{_includedir}/samba-4.0/smbldap.h
%{_includedir}/samba-4.0/tdr.h
%{_includedir}/samba-4.0/tsocket.h
%{_includedir}/samba-4.0/tsocket_internal.h
2014-11-17 14:25:24 +00:00
%dir %{_includedir}/samba-4.0/util
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/util/attr.h
2015-01-05 15:31:20 +00:00
%{_includedir}/samba-4.0/util/blocking.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/util/data_blob.h
%{_includedir}/samba-4.0/util/debug.h
2019-02-14 14:09:59 +00:00
%{_includedir}/samba-4.0/util/discard.h
2015-01-05 15:31:20 +00:00
%{_includedir}/samba-4.0/util/fault.h
2015-08-31 13:42:47 +00:00
%{_includedir}/samba-4.0/util/genrand.h
2014-11-17 14:25:24 +00:00
%{_includedir}/samba-4.0/util/idtree.h
%{_includedir}/samba-4.0/util/idtree_random.h
2015-01-05 15:31:20 +00:00
%{_includedir}/samba-4.0/util/signal.h
%{_includedir}/samba-4.0/util/substitute.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/util/tevent_ntstatus.h
%{_includedir}/samba-4.0/util/tevent_unix.h
%{_includedir}/samba-4.0/util/tevent_werror.h
%{_includedir}/samba-4.0/util/time.h
2017-07-05 06:23:19 +00:00
%{_includedir}/samba-4.0/util/tfork.h
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/util_ldb.h
%{_libdir}/libdcerpc-binding.so
%{_libdir}/libdcerpc-samr.so
%{_libdir}/libdcerpc-server-core.so
2012-09-26 12:23:24 +00:00
%{_libdir}/libdcerpc.so
%{_libdir}/libndr-krb5pac.so
%{_libdir}/libndr-nbt.so
%{_libdir}/libndr-standard.so
%{_libdir}/libndr.so
%{_libdir}/libsamba-credentials.so
2016-01-27 11:14:58 +00:00
%{_libdir}/libsamba-errors.so
2012-09-26 12:23:24 +00:00
%{_libdir}/libsamba-hostconfig.so
%{_libdir}/libsamba-util.so
%{_libdir}/libsamdb.so
%{_libdir}/libsmbconf.so
%{_libdir}/libtevent-util.so
%{_libdir}/pkgconfig/dcerpc.pc
%{_libdir}/pkgconfig/dcerpc_samr.pc
%{_libdir}/pkgconfig/ndr.pc
%{_libdir}/pkgconfig/ndr_krb5pac.pc
%{_libdir}/pkgconfig/ndr_nbt.pc
%{_libdir}/pkgconfig/ndr_standard.pc
%{_libdir}/pkgconfig/samba-credentials.pc
%{_libdir}/pkgconfig/samba-hostconfig.pc
%{_libdir}/pkgconfig/samba-policy.pc
2012-09-26 12:23:24 +00:00
%{_libdir}/pkgconfig/samba-util.pc
%{_libdir}/pkgconfig/samdb.pc
2015-01-05 15:31:20 +00:00
%{_libdir}/libsamba-passdb.so
%{_libdir}/libsamba-policy.so
2012-09-26 12:23:24 +00:00
%{_libdir}/libsmbldap.so
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/dcerpc_server.h
%{_libdir}/libdcerpc-server.so
%{_libdir}/pkgconfig/dcerpc_server.pc
%endif
2020-10-19 13:53:32 +00:00
%if %{without libsmbclient}
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/libsmbclient.h
2020-10-19 13:53:32 +00:00
#endif without libsmbclient
%endif
2012-09-26 12:23:24 +00:00
2020-10-19 13:54:28 +00:00
%if %{without libwbclient}
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/wbclient.h
2020-10-19 13:54:28 +00:00
#endif without libwbclient
%endif
2012-09-26 12:23:24 +00:00
2015-01-05 15:31:20 +00:00
### VFS-CEPHFS
2020-10-19 15:23:08 +00:00
%if %{with vfs_cephfs}
2015-01-05 15:31:20 +00:00
%files vfs-cephfs
%{_libdir}/samba/vfs/ceph.so
%{_libdir}/samba/vfs/ceph_new.so
%{_libdir}/samba/vfs/ceph_snapshots.so
2015-03-05 22:34:39 +00:00
%{_mandir}/man8/vfs_ceph.8*
%{_mandir}/man8/vfs_ceph_new.8*
%{_mandir}/man8/vfs_ceph_snapshots.8*
2015-01-05 15:31:20 +00:00
%endif
2021-06-24 09:24:59 +00:00
### VFS-IOURING
2021-06-24 08:29:25 +00:00
%if %{with vfs_io_uring}
%files vfs-iouring
%{_libdir}/samba/vfs/io_uring.so
%{_mandir}/man8/vfs_io_uring.8*
%endif
### VFS-GLUSTERFS
2020-10-19 15:25:56 +00:00
%if %{with vfs_glusterfs}
%files vfs-glusterfs
%{_libdir}/samba/vfs/glusterfs.so
2015-02-23 10:27:37 +00:00
%{_mandir}/man8/vfs_glusterfs.8*
%endif
### GPUPDATE
2023-11-15 09:37:35 +00:00
%if %{with gpupdate}
%files gpupdate
%{_mandir}/man8/samba-gpupdate.8*
%{_sbindir}/samba-gpupdate
2023-11-15 09:37:35 +00:00
#endif with gpupdate
%endif
2016-01-27 11:14:58 +00:00
### KRB5-PRINTING
%files krb5-printing
%attr(0700,root,root) %{_libexecdir}/samba/smbspool_krb5_wrapper
2016-02-10 12:28:06 +00:00
%{_mandir}/man8/smbspool_krb5_wrapper.8*
2016-01-27 11:14:58 +00:00
### LDB-LDAP-MODULES
%files ldb-ldap-modules
%{_libdir}/samba/ldb/ldbsamba_extensions.so
%{_libdir}/samba/ldb/ildap.so
%{_libdir}/samba/ldb/ldap.so
2012-10-17 12:13:28 +00:00
### LIBS
%files libs
%{_libdir}/libdcerpc-samr.so.*
2012-09-26 12:23:24 +00:00
%{_libdir}/samba/libLIBWBCLIENT-OLD-private-samba.so
%{_libdir}/samba/libauth-unix-token-private-samba.so
%{_libdir}/samba/libdcerpc-samba4-private-samba.so
%{_libdir}/samba/libdnsserver-common-private-samba.so
%{_libdir}/samba/libshares-private-samba.so
%{_libdir}/samba/libsmbpasswdparser-private-samba.so
%{_libdir}/samba/libxattr-tdb-private-samba.so
%{_libdir}/samba/libREG-FULL-private-samba.so
%{_libdir}/samba/libRPC-SERVER-LOOP-private-samba.so
%{_libdir}/samba/libRPC-WORKER-private-samba.so
2012-09-26 12:23:24 +00:00
### LIBNETAPI
%files -n libnetapi
%{_libdir}/libnetapi.so.%{libnetapi_so_version}*
### LIBNETAPI-DEVEL
%files -n libnetapi-devel
%{_includedir}/samba-4.0/netapi.h
%{_libdir}/libnetapi.so
%{_libdir}/pkgconfig/netapi.pc
2012-10-17 12:13:28 +00:00
### LIBSMBCLIENT
2020-10-19 13:53:32 +00:00
%if %{with libsmbclient}
%files -n libsmbclient
2013-07-24 08:45:41 +00:00
%{_libdir}/libsmbclient.so.*
2012-10-17 12:13:28 +00:00
### LIBSMBCLIENT-DEVEL
%files -n libsmbclient-devel
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/libsmbclient.h
2008-03-05 20:14:17 +00:00
%{_libdir}/libsmbclient.so
%{_libdir}/pkgconfig/smbclient.pc
%{_mandir}/man7/libsmbclient.7*
2020-10-19 13:53:32 +00:00
#endif {with libsmbclient}
%endif
2008-03-05 20:14:17 +00:00
2012-10-17 12:13:28 +00:00
### LIBWBCLIENT
2020-10-19 13:54:28 +00:00
%if %{with libwbclient}
2012-02-13 10:12:35 +00:00
%files -n libwbclient
%{_libdir}/libwbclient.so.%{libwbclient_so_version}*
2012-02-13 10:12:35 +00:00
2012-10-17 12:13:28 +00:00
### LIBWBCLIENT-DEVEL
2012-02-13 10:12:35 +00:00
%files -n libwbclient-devel
2012-09-26 12:23:24 +00:00
%{_includedir}/samba-4.0/wbclient.h
%{_libdir}/libwbclient.so
2012-02-13 10:12:35 +00:00
%{_libdir}/pkgconfig/wbclient.pc
2020-10-19 13:54:28 +00:00
#endif {with libwbclient}
%endif
### PIDL
%files pidl
2019-12-05 17:09:57 +00:00
%doc pidl/README
%attr(755,root,root) %{_bindir}/pidl
%dir %{perl_vendorlib}/Parse
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl.pm
%dir %{perl_vendorlib}/Parse/Pidl
2020-01-21 19:51:37 +00:00
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Base.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/CUtil.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Expr.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/ODL.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Typelist.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/IDL.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Compat.pm
%dir %{perl_vendorlib}/Parse/Pidl/Wireshark
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Wireshark/Conformance.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Wireshark/NDR.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Dump.pm
%dir %{perl_vendorlib}/Parse/Pidl/Samba3
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba3/ServerNDR.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba3/ClientNDR.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba3/Template.pm
%dir %{perl_vendorlib}/Parse/Pidl/Samba4
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/Header.pm
%dir %{perl_vendorlib}/Parse/Pidl/Samba4/COM
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Header.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Proxy.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/COM/Stub.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/Python.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/Template.pm
%dir %{perl_vendorlib}/Parse/Pidl/Samba4/NDR
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Server.pm
2020-07-09 09:27:48 +00:00
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/ServerCompat.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Client.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/NDR/Parser.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Samba4/TDR.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/NDR.pm
%attr(644,root,root) %{perl_vendorlib}/Parse/Pidl/Util.pm
%attr(644,root,root) %{_mandir}/man1/pidl.1*
%attr(644,root,root) %{_mandir}/man3/Parse::Pidl::Dump.3pm*
%attr(644,root,root) %{_mandir}/man3/Parse::Pidl::NDR.3pm*
%attr(644,root,root) %{_mandir}/man3/Parse::Pidl::Util.3pm*
%attr(644,root,root) %{_mandir}/man3/Parse::Pidl::Wireshark::Conformance.3pm*
%attr(644,root,root) %{_mandir}/man3/Parse::Pidl::Wireshark::NDR.3pm*
2017-07-06 09:46:09 +00:00
### PYTHON3
%files -n python3-%{name}
%dir %{python3_sitearch}/samba/
%{python3_sitearch}/samba/__init__.py
%dir %{python3_sitearch}/samba/__pycache__
%{python3_sitearch}/samba/__pycache__/__init__.*.pyc
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/__pycache__/auth_util.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/__pycache__/colour.*.pyc
%{python3_sitearch}/samba/__pycache__/common.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/dbchecker.*.pyc
%{python3_sitearch}/samba/__pycache__/descriptor.*.pyc
%{python3_sitearch}/samba/__pycache__/dnsresolver.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/drs_utils.*.pyc
%{python3_sitearch}/samba/__pycache__/functional_level.*.pyc
%{python3_sitearch}/samba/__pycache__/getopt.*.pyc
%{python3_sitearch}/samba/__pycache__/gkdi.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/__pycache__/graph.*.pyc
%{python3_sitearch}/samba/__pycache__/hostconfig.*.pyc
%{python3_sitearch}/samba/__pycache__/idmap.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/join.*.pyc
%{python3_sitearch}/samba/__pycache__/lsa_utils.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/__pycache__/logger.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/mdb_util.*.pyc
%{python3_sitearch}/samba/__pycache__/ms_display_specifiers.*.pyc
%{python3_sitearch}/samba/__pycache__/ms_schema.*.pyc
%{python3_sitearch}/samba/__pycache__/ndr.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/ntacls.*.pyc
%{python3_sitearch}/samba/__pycache__/nt_time.*.pyc
%{python3_sitearch}/samba/__pycache__/policies.*.pyc
%{python3_sitearch}/samba/__pycache__/safe_tarfile.*.pyc
%{python3_sitearch}/samba/__pycache__/sd_utils.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/sites.*.pyc
%{python3_sitearch}/samba/__pycache__/subnets.*.pyc
%{python3_sitearch}/samba/__pycache__/tdb_util.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/__pycache__/upgrade.*.pyc
%{python3_sitearch}/samba/__pycache__/upgradehelpers.*.pyc
%{python3_sitearch}/samba/__pycache__/xattr.*.pyc
%{python3_sitearch}/samba/_glue.*.so
%{python3_sitearch}/samba/_ldb.*.so
%{python3_sitearch}/samba/auth.*.so
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/auth_util.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/dbchecker.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/colour.py
%{python3_sitearch}/samba/common.py
%{python3_sitearch}/samba/compression.*.so
%{python3_sitearch}/samba/credentials.*.so
%{python3_sitearch}/samba/crypto.*.so
%dir %{python3_sitearch}/samba/dcerpc
%dir %{python3_sitearch}/samba/dcerpc/__pycache__
%{python3_sitearch}/samba/dcerpc/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/dcerpc/__init__.py
%{python3_sitearch}/samba/dcerpc/atsvc.*.so
%{python3_sitearch}/samba/dcerpc/auth.*.so
%{python3_sitearch}/samba/dcerpc/base.*.so
%{python3_sitearch}/samba/dcerpc/claims.*.so
%{python3_sitearch}/samba/dcerpc/conditional_ace.*.so
%{python3_sitearch}/samba/dcerpc/dcerpc.*.so
%{python3_sitearch}/samba/dcerpc/dfs.*.so
%{python3_sitearch}/samba/dcerpc/dns.*.so
%{python3_sitearch}/samba/dcerpc/dnsp.*.so
%{python3_sitearch}/samba/dcerpc/drsblobs.*.so
%{python3_sitearch}/samba/dcerpc/drsuapi.*.so
%{python3_sitearch}/samba/dcerpc/echo.*.so
%{python3_sitearch}/samba/dcerpc/epmapper.*.so
%{python3_sitearch}/samba/dcerpc/gkdi.*.so
%{python3_sitearch}/samba/dcerpc/gmsa.*.so
%{python3_sitearch}/samba/dcerpc/idmap.*.so
%{python3_sitearch}/samba/dcerpc/initshutdown.*.so
%{python3_sitearch}/samba/dcerpc/irpc.*.so
%{python3_sitearch}/samba/dcerpc/krb5ccache.*.so
%{python3_sitearch}/samba/dcerpc/krb5pac.*.so
%{python3_sitearch}/samba/dcerpc/lsa.*.so
%{python3_sitearch}/samba/dcerpc/messaging.*.so
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/dcerpc/mdssvc.*.so
%{python3_sitearch}/samba/dcerpc/mgmt.*.so
%{python3_sitearch}/samba/dcerpc/misc.*.so
%{python3_sitearch}/samba/dcerpc/nbt.*.so
%{python3_sitearch}/samba/dcerpc/netlogon.*.so
%{python3_sitearch}/samba/dcerpc/ntlmssp.*.so
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/dcerpc/preg.*.so
%{python3_sitearch}/samba/dcerpc/samr.*.so
%{python3_sitearch}/samba/dcerpc/security.*.so
%{python3_sitearch}/samba/dcerpc/server_id.*.so
%{python3_sitearch}/samba/dcerpc/smb_acl.*.so
%{python3_sitearch}/samba/dcerpc/smb3posix.*.so
%{python3_sitearch}/samba/dcerpc/smbXsrv.*.so
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/dcerpc/spoolss.*.so
%{python3_sitearch}/samba/dcerpc/srvsvc.*.so
%{python3_sitearch}/samba/dcerpc/svcctl.*.so
%{python3_sitearch}/samba/dcerpc/unixinfo.*.so
%{python3_sitearch}/samba/dcerpc/winbind.*.so
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/dcerpc/windows_event_ids.*.so
%{python3_sitearch}/samba/dcerpc/winreg.*.so
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/dcerpc/winspool.*.so
%{python3_sitearch}/samba/dcerpc/witness.*.so
%{python3_sitearch}/samba/dcerpc/wkssvc.*.so
%{python3_sitearch}/samba/dcerpc/xattr.*.so
%{python3_sitearch}/samba/descriptor.py
%{python3_sitearch}/samba/dnsresolver.py
%dir %{python3_sitearch}/samba/domain
%{python3_sitearch}/samba/domain/__init__.py
%{python3_sitearch}/samba/domain/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/domain/models/__init__.py
%{python3_sitearch}/samba/domain/models/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/auth_policy.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/auth_silo.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/claim_type.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/computer.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/constants.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/container.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/exceptions.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/fields.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/gmsa.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/group.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/model.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/org.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/person.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/query.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/registry.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/schema.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/site.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/subnet.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/types.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/user.*.pyc
%{python3_sitearch}/samba/domain/models/__pycache__/value_type.*.pyc
%{python3_sitearch}/samba/domain/models/auth_policy.py
%{python3_sitearch}/samba/domain/models/auth_silo.py
%{python3_sitearch}/samba/domain/models/claim_type.py
%{python3_sitearch}/samba/domain/models/computer.py
%{python3_sitearch}/samba/domain/models/constants.py
%{python3_sitearch}/samba/domain/models/container.py
%{python3_sitearch}/samba/domain/models/exceptions.py
%{python3_sitearch}/samba/domain/models/fields.py
%{python3_sitearch}/samba/domain/models/gmsa.py
%{python3_sitearch}/samba/domain/models/group.py
%{python3_sitearch}/samba/domain/models/model.py
%{python3_sitearch}/samba/domain/models/org.py
%{python3_sitearch}/samba/domain/models/person.py
%{python3_sitearch}/samba/domain/models/query.py
%{python3_sitearch}/samba/domain/models/registry.py
%{python3_sitearch}/samba/domain/models/schema.py
%{python3_sitearch}/samba/domain/models/site.py
%{python3_sitearch}/samba/domain/models/subnet.py
%{python3_sitearch}/samba/domain/models/types.py
%{python3_sitearch}/samba/domain/models/user.py
%{python3_sitearch}/samba/domain/models/value_type.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/drs_utils.py
%{python3_sitearch}/samba/dsdb.*.so
%{python3_sitearch}/samba/dsdb_dns.*.so
%{python3_sitearch}/samba/functional_level.py
%{python3_sitearch}/samba/gensec.*.so
%{python3_sitearch}/samba/getopt.py
%{python3_sitearch}/samba/gkdi.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/graph.py
%{python3_sitearch}/samba/hostconfig.py
%{python3_sitearch}/samba/idmap.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/join.py
%{python3_sitearch}/samba/lsa_utils.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/messaging.*.so
%{python3_sitearch}/samba/ndr.py
%{python3_sitearch}/samba/net.*.so
%{python3_sitearch}/samba/net_s3.*.so
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/ntstatus.*.so
%{python3_sitearch}/samba/posix_eadb.*.so
%dir %{python3_sitearch}/samba/emulate
%dir %{python3_sitearch}/samba/emulate/__pycache__
%{python3_sitearch}/samba/emulate/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/emulate/__pycache__/traffic.*.pyc
%{python3_sitearch}/samba/emulate/__pycache__/traffic_packets.*.pyc
%{python3_sitearch}/samba/emulate/__init__.py
%{python3_sitearch}/samba/emulate/traffic.py
%{python3_sitearch}/samba/emulate/traffic_packets.py
%dir %{python3_sitearch}/samba/gp
%dir %{python3_sitearch}/samba/gp/__pycache__
%{python3_sitearch}/samba/gp/__init__.py
%{python3_sitearch}/samba/gp/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gpclass.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_centrify_crontab_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_centrify_sudoers_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_cert_auto_enroll_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_drive_maps_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_chromium_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_ext_loader.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_firefox_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_firewalld_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_gnome_settings_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_msgs_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_scripts_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_sec_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_smb_conf_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/gp_sudoers_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_access_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_files_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_issue_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_motd_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_openssh_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_startup_scripts_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_sudoers_ext.*.pyc
%{python3_sitearch}/samba/gp/__pycache__/vgp_symlink_ext.*.pyc
%{python3_sitearch}/samba/gp/gpclass.py
%{python3_sitearch}/samba/gp/gp_gnome_settings_ext.py
%{python3_sitearch}/samba/gp/gp_scripts_ext.py
%{python3_sitearch}/samba/gp/gp_sec_ext.py
%{python3_sitearch}/samba/gp/gp_centrify_crontab_ext.py
%{python3_sitearch}/samba/gp/gp_centrify_sudoers_ext.py
%{python3_sitearch}/samba/gp/gp_cert_auto_enroll_ext.py
%{python3_sitearch}/samba/gp/gp_drive_maps_ext.py
%{python3_sitearch}/samba/gp/gp_chromium_ext.py
%{python3_sitearch}/samba/gp/gp_ext_loader.py
%{python3_sitearch}/samba/gp/gp_firefox_ext.py
%{python3_sitearch}/samba/gp/gp_firewalld_ext.py
%{python3_sitearch}/samba/gp/gp_msgs_ext.py
%{python3_sitearch}/samba/gp/gp_smb_conf_ext.py
%{python3_sitearch}/samba/gp/gp_sudoers_ext.py
%dir %{python3_sitearch}/samba/gp/util
%dir %{python3_sitearch}/samba/gp/util/__pycache__
%{python3_sitearch}/samba/gp/util/__pycache__/logging.*.pyc
%{python3_sitearch}/samba/gp/util/logging.py
%{python3_sitearch}/samba/gp/vgp_access_ext.py
%{python3_sitearch}/samba/gp/vgp_files_ext.py
%{python3_sitearch}/samba/gp/vgp_issue_ext.py
%{python3_sitearch}/samba/gp/vgp_motd_ext.py
%{python3_sitearch}/samba/gp/vgp_openssh_ext.py
%{python3_sitearch}/samba/gp/vgp_startup_scripts_ext.py
%{python3_sitearch}/samba/gp/vgp_sudoers_ext.py
%{python3_sitearch}/samba/gp/vgp_symlink_ext.py
%{python3_sitearch}/samba/gpo.*.so
2019-01-15 19:45:03 +00:00
%dir %{python3_sitearch}/samba/gp_parse
%{python3_sitearch}/samba/gp_parse/__init__.py
%dir %{python3_sitearch}/samba/gp_parse/__pycache__
%{python3_sitearch}/samba/gp_parse/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/gp_parse/__pycache__/gp_aas.*.pyc
%{python3_sitearch}/samba/gp_parse/__pycache__/gp_csv.*.pyc
%{python3_sitearch}/samba/gp_parse/__pycache__/gp_inf.*.pyc
%{python3_sitearch}/samba/gp_parse/__pycache__/gp_ini.*.pyc
%{python3_sitearch}/samba/gp_parse/__pycache__/gp_pol.*.pyc
%{python3_sitearch}/samba/gp_parse/gp_aas.py
%{python3_sitearch}/samba/gp_parse/gp_csv.py
%{python3_sitearch}/samba/gp_parse/gp_inf.py
%{python3_sitearch}/samba/gp_parse/gp_ini.py
%{python3_sitearch}/samba/gp_parse/gp_pol.py
%{python3_sitearch}/samba/hresult.*.so
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/logger.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/mdb_util.py
%{python3_sitearch}/samba/ms_display_specifiers.py
%{python3_sitearch}/samba/ms_schema.py
%{python3_sitearch}/samba/netbios.*.so
%dir %{python3_sitearch}/samba/netcmd
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__init__.py
%dir %{python3_sitearch}/samba/netcmd/__pycache__
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/common.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/computer.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/contact.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/dbcheck.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/delegation.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/dns.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/drs.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/dsacl.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/encoders.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/forest.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/fsmo.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/gpcommon.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/gpo.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/group.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/ldapcmp.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/main.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/nettime.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/ntacl.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/ou.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/processes.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/pso.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/rodc.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/shell.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/schema.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/sites.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/spn.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/testparm.*.pyc
%{python3_sitearch}/samba/netcmd/__pycache__/validators.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/netcmd/__pycache__/visualize.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/common.py
%{python3_sitearch}/samba/netcmd/computer.py
%{python3_sitearch}/samba/netcmd/contact.py
%{python3_sitearch}/samba/netcmd/dbcheck.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/delegation.py
%dir %{python3_sitearch}/samba/netcmd/domain
%{python3_sitearch}/samba/netcmd/domain/__init__.py
%dir %{python3_sitearch}/samba/netcmd/domain/__pycache__
%{python3_sitearch}/samba/netcmd/domain/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/backup.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/classicupgrade.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/common.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/dcpromo.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/demote.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/functional_prep.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/info.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/join.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/keytab.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/leave.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/level.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/passwordsettings.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/provision.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/samba3upgrade.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/schemaupgrade.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/tombstones.*.pyc
%{python3_sitearch}/samba/netcmd/domain/__pycache__/trust.*.pyc
%dir %{python3_sitearch}/samba/netcmd/domain/auth
%{python3_sitearch}/samba/netcmd/domain/auth/__init__.py
%dir %{python3_sitearch}/samba/netcmd/domain/auth/__pycache__
%{python3_sitearch}/samba/netcmd/domain/auth/__pycache__/__init__.*.pyc
%dir %{python3_sitearch}/samba/netcmd/domain/auth/policy
%{python3_sitearch}/samba/netcmd/domain/auth/policy/computer_allowed_to_authenticate_to.py
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__init__.py
%{python3_sitearch}/samba/netcmd/domain/auth/policy/policy.py
%dir %{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/computer_allowed_to_authenticate_to.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/policy.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/service_allowed_to_authenticate_from.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/service_allowed_to_authenticate_to.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/user_allowed_to_authenticate_from.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/__pycache__/user_allowed_to_authenticate_to.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/policy/service_allowed_to_authenticate_from.py
%{python3_sitearch}/samba/netcmd/domain/auth/policy/service_allowed_to_authenticate_to.py
%{python3_sitearch}/samba/netcmd/domain/auth/policy/user_allowed_to_authenticate_from.py
%{python3_sitearch}/samba/netcmd/domain/auth/policy/user_allowed_to_authenticate_to.py
%dir %{python3_sitearch}/samba/netcmd/domain/auth/silo
%{python3_sitearch}/samba/netcmd/domain/auth/silo/__init__.py
%{python3_sitearch}/samba/netcmd/domain/auth/silo/member.py
%dir %{python3_sitearch}/samba/netcmd/domain/auth/silo/__pycache__
%{python3_sitearch}/samba/netcmd/domain/auth/silo/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/silo/__pycache__/member.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/silo/__pycache__/silo.*.pyc
%{python3_sitearch}/samba/netcmd/domain/auth/silo/silo.py
%{python3_sitearch}/samba/netcmd/domain/backup.py
%dir %{python3_sitearch}/samba/netcmd/domain/claim
%{python3_sitearch}/samba/netcmd/domain/claim/__init__.py
%dir %{python3_sitearch}/samba/netcmd/domain/claim/__pycache__
%{python3_sitearch}/samba/netcmd/domain/claim/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/domain/claim/__pycache__/claim_type.*.pyc
%{python3_sitearch}/samba/netcmd/domain/claim/__pycache__/value_type.*.pyc
%{python3_sitearch}/samba/netcmd/domain/claim/claim_type.py
%{python3_sitearch}/samba/netcmd/domain/claim/value_type.py
%{python3_sitearch}/samba/netcmd/domain/classicupgrade.py
%{python3_sitearch}/samba/netcmd/domain/common.py
%{python3_sitearch}/samba/netcmd/domain/dcpromo.py
%{python3_sitearch}/samba/netcmd/domain/demote.py
%{python3_sitearch}/samba/netcmd/domain/functional_prep.py
%{python3_sitearch}/samba/netcmd/domain/info.py
%{python3_sitearch}/samba/netcmd/domain/join.py
%dir %{python3_sitearch}/samba/netcmd/domain/kds
%{python3_sitearch}/samba/netcmd/domain/kds/__init__.py
%dir %{python3_sitearch}/samba/netcmd/domain/kds/__pycache__
%{python3_sitearch}/samba/netcmd/domain/kds/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/domain/kds/__pycache__/root_key.*.pyc
%{python3_sitearch}/samba/netcmd/domain/kds/root_key.py
%{python3_sitearch}/samba/netcmd/domain/keytab.py
%{python3_sitearch}/samba/netcmd/domain/leave.py
%{python3_sitearch}/samba/netcmd/domain/level.py
%{python3_sitearch}/samba/netcmd/domain/passwordsettings.py
%{python3_sitearch}/samba/netcmd/domain/provision.py
%{python3_sitearch}/samba/netcmd/domain/samba3upgrade.py
%{python3_sitearch}/samba/netcmd/domain/schemaupgrade.py
%{python3_sitearch}/samba/netcmd/domain/tombstones.py
%{python3_sitearch}/samba/netcmd/domain/trust.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/dns.py
%{python3_sitearch}/samba/netcmd/drs.py
%{python3_sitearch}/samba/netcmd/dsacl.py
%{python3_sitearch}/samba/netcmd/encoders.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/forest.py
%{python3_sitearch}/samba/netcmd/fsmo.py
%{python3_sitearch}/samba/netcmd/gpcommon.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/gpo.py
%{python3_sitearch}/samba/netcmd/group.py
%{python3_sitearch}/samba/netcmd/ldapcmp.py
%{python3_sitearch}/samba/netcmd/main.py
%{python3_sitearch}/samba/netcmd/nettime.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/ntacl.py
%{python3_sitearch}/samba/netcmd/ou.py
%{python3_sitearch}/samba/netcmd/processes.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/pso.py
%{python3_sitearch}/samba/netcmd/rodc.py
%{python3_sitearch}/samba/netcmd/schema.py
%dir %{python3_sitearch}/samba/netcmd/service_account
%{python3_sitearch}/samba/netcmd/service_account/__init__.py
%{python3_sitearch}/samba/netcmd/service_account/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/service_account/__pycache__/group_msa_membership.*.pyc
%{python3_sitearch}/samba/netcmd/service_account/__pycache__/service_account.*.pyc
%{python3_sitearch}/samba/netcmd/service_account/group_msa_membership.py
%{python3_sitearch}/samba/netcmd/service_account/service_account.py
%{python3_sitearch}/samba/netcmd/shell.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/sites.py
%{python3_sitearch}/samba/netcmd/spn.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/netcmd/testparm.py
%dir %{python3_sitearch}/samba/netcmd/user
%{python3_sitearch}/samba/netcmd/user/__init__.py
%{python3_sitearch}/samba/netcmd/user/add.py
%{python3_sitearch}/samba/netcmd/user/add_unix_attrs.py
%dir %{python3_sitearch}/samba/netcmd/user/auth
%{python3_sitearch}/samba/netcmd/user/auth/__init__.py
%{python3_sitearch}/samba/netcmd/user/auth/policy.py
%dir %{python3_sitearch}/samba/netcmd/user/auth/__pycache__
%{python3_sitearch}/samba/netcmd/user/auth/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/user/auth/__pycache__/policy.*.pyc
%{python3_sitearch}/samba/netcmd/user/auth/__pycache__/silo.*.pyc
%{python3_sitearch}/samba/netcmd/user/auth/silo.py
%{python3_sitearch}/samba/netcmd/user/delete.py
%{python3_sitearch}/samba/netcmd/user/disable.py
%{python3_sitearch}/samba/netcmd/user/edit.py
%{python3_sitearch}/samba/netcmd/user/enable.py
%{python3_sitearch}/samba/netcmd/user/getgroups.py
%{python3_sitearch}/samba/netcmd/user/list.py
%{python3_sitearch}/samba/netcmd/user/move.py
%{python3_sitearch}/samba/netcmd/user/password.py
%dir %{python3_sitearch}/samba/netcmd/user/__pycache__
%{python3_sitearch}/samba/netcmd/user/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/add.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/add_unix_attrs.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/delete.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/disable.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/edit.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/enable.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/getgroups.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/list.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/move.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/password.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/rename.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/sensitive.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/setexpiry.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/setpassword.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/setprimarygroup.*.pyc
%{python3_sitearch}/samba/netcmd/user/__pycache__/unlock.*.pyc
%dir %{python3_sitearch}/samba/netcmd/user/readpasswords
%{python3_sitearch}/samba/netcmd/user/readpasswords/common.py
%{python3_sitearch}/samba/netcmd/user/readpasswords/get_kerberos_ticket.py
%{python3_sitearch}/samba/netcmd/user/readpasswords/getpassword.py
%{python3_sitearch}/samba/netcmd/user/readpasswords/__init__.py
%dir %{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/common.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/get_kerberos_ticket.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/getpassword.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/show.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/__pycache__/syncpasswords.*.pyc
%{python3_sitearch}/samba/netcmd/user/readpasswords/show.py
%{python3_sitearch}/samba/netcmd/user/readpasswords/syncpasswords.py
%{python3_sitearch}/samba/netcmd/user/rename.py
%{python3_sitearch}/samba/netcmd/user/sensitive.py
%{python3_sitearch}/samba/netcmd/user/setexpiry.py
%{python3_sitearch}/samba/netcmd/user/setpassword.py
%{python3_sitearch}/samba/netcmd/user/setprimarygroup.py
%{python3_sitearch}/samba/netcmd/user/unlock.py
%{python3_sitearch}/samba/netcmd/validators.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/netcmd/visualize.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/ntacls.py
%{python3_sitearch}/samba/nt_time.py
%{python3_sitearch}/samba/param.*.so
%{python3_sitearch}/samba/policies.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/policy.*.so
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/registry.*.so
%{python3_sitearch}/samba/reparse_symlink.*.so
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/security.*.so
%{python3_sitearch}/samba/safe_tarfile.py
%dir %{python3_sitearch}/samba/samba3
%{python3_sitearch}/samba/samba3/__init__.py
%dir %{python3_sitearch}/samba/samba3/__pycache__
%{python3_sitearch}/samba/samba3/__pycache__/__init__.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/samba3/__pycache__/libsmb_samba_internal.*.pyc
%{python3_sitearch}/samba/samba3/libsmb_samba_cwrapper.cpython*.so
%{python3_sitearch}/samba/samba3/libsmb_samba_internal.py
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/samba3/mdscli.*.so
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/samba3/param.*.so
%{python3_sitearch}/samba/samba3/passdb.*.so
%{python3_sitearch}/samba/samba3/smbconf.*.so
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/samba3/smbd.*.so
%{python3_sitearch}/samba/sd_utils.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/sites.py
%{python3_sitearch}/samba/smbconf.*.so
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/subnets.py
%dir %{python3_sitearch}/samba/subunit
%{python3_sitearch}/samba/subunit/__init__.py
%dir %{python3_sitearch}/samba/subunit/__pycache__
%{python3_sitearch}/samba/subunit/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/subunit/__pycache__/run.*.pyc
%{python3_sitearch}/samba/subunit/run.py
%{python3_sitearch}/samba/tdb_util.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/upgrade.py
%{python3_sitearch}/samba/upgradehelpers.py
%{python3_sitearch}/samba/werror.*.so
%{python3_sitearch}/samba/xattr.py
%{python3_sitearch}/samba/xattr_native.*.so
%{python3_sitearch}/samba/xattr_tdb.*.so
%{_libdir}/samba/libsamba-net-join.cpython*.so
2020-11-03 13:20:23 +00:00
%{_libdir}/samba/libsamba-python.cpython*.so
2020-11-03 13:20:23 +00:00
%if %{with includelibs}
%{_libdir}/samba/libpyldb-util.cpython*.so
2020-10-20 12:18:49 +00:00
%{python3_sitearch}/__pycache__/_ldb_text*.pyc
%{python3_sitearch}/__pycache__/_tdb_text*.pyc
%{python3_sitearch}/__pycache__/tevent*.pyc
%{python3_sitearch}/_ldb_text.py
%{python3_sitearch}/_tdb_text.py
%{python3_sitearch}/_tevent.cpython*.so
%{python3_sitearch}/ldb.cpython*.so
#FIXME why is it missing?
#%{python3_sitearch}/talloc.cpython*.so
2020-10-20 12:18:49 +00:00
%{python3_sitearch}/tdb.cpython*.so
%{python3_sitearch}/tevent.py
2020-11-03 13:20:23 +00:00
#endif with includelibs
2020-10-20 12:18:49 +00:00
%endif
2017-10-26 10:57:17 +00:00
%files -n python3-%{name}-dc
%{python3_sitearch}/samba/samdb.py
%{python3_sitearch}/samba/schema.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/__pycache__/domain_update.*.pyc
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/__pycache__/dnsserver.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/__pycache__/forest_update.*.pyc
%{python3_sitearch}/samba/__pycache__/ms_forest_updates_markdown.*.pyc
%{python3_sitearch}/samba/__pycache__/ms_schema_markdown.*.pyc
2018-07-15 00:24:15 +00:00
%{python3_sitearch}/samba/__pycache__/remove_dc.*.pyc
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/__pycache__/samdb.*.pyc
%{python3_sitearch}/samba/__pycache__/schema.*.pyc
2019-03-19 16:45:56 +00:00
%{python3_sitearch}/samba/__pycache__/uptodateness.*.pyc
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/dcerpc/dnsserver.*.so
%if %{with dc} || %{with testsuite}
2018-07-15 00:24:15 +00:00
%{python3_sitearch}/samba/dckeytab.*.so
%endif
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/domain_update.py
%{python3_sitearch}/samba/forest_update.py
%{python3_sitearch}/samba/ms_forest_updates_markdown.py
%{python3_sitearch}/samba/ms_schema_markdown.py
2017-10-26 10:57:17 +00:00
%dir %{python3_sitearch}/samba/kcc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/kcc/__init__.py
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/kcc/debug.py
%{python3_sitearch}/samba/kcc/graph.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/kcc/graph_utils.py
%{python3_sitearch}/samba/kcc/kcc_utils.py
%{python3_sitearch}/samba/kcc/ldif_import_export.py
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/dnsserver.py
%dir %{python3_sitearch}/samba/kcc/__pycache__
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/kcc/__pycache__/__init__.*.pyc
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/kcc/__pycache__/debug.*.pyc
%{python3_sitearch}/samba/kcc/__pycache__/graph.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/kcc/__pycache__/graph_utils.*.pyc
%{python3_sitearch}/samba/kcc/__pycache__/kcc_utils.*.pyc
%{python3_sitearch}/samba/kcc/__pycache__/ldif_import_export.*.pyc
2017-10-26 10:57:17 +00:00
%dir %{python3_sitearch}/samba/provision
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/provision/backend.py
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/provision/common.py
%{python3_sitearch}/samba/provision/kerberos.py
%{python3_sitearch}/samba/provision/kerberos_implementation.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/provision/sambadns.py
2017-10-26 10:57:17 +00:00
%dir %{python3_sitearch}/samba/provision/__pycache__
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/provision/__init__.py
%{python3_sitearch}/samba/provision/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/provision/__pycache__/backend.*.pyc
2017-10-26 10:57:17 +00:00
%{python3_sitearch}/samba/provision/__pycache__/common.*.pyc
%{python3_sitearch}/samba/provision/__pycache__/kerberos.*.pyc
%{python3_sitearch}/samba/provision/__pycache__/kerberos_implementation.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/provision/__pycache__/sambadns.*.pyc
%{python3_sitearch}/samba/remove_dc.py
%{python3_sitearch}/samba/uptodateness.py
2017-10-26 10:57:17 +00:00
%files -n python3-%{name}-test
%dir %{python3_sitearch}/samba/tests
%{python3_sitearch}/samba/tests/__init__.py
%dir %{python3_sitearch}/samba/tests/__pycache__
%{python3_sitearch}/samba/tests/__pycache__/__init__.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/audit_log_base.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/audit_log_dsdb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/audit_log_pass_change.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/auth_log.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_base.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_pass_change.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_ncalrpc.*.pyc
2017-08-29 09:51:57 +00:00
%{python3_sitearch}/samba/tests/__pycache__/auth_log_netlogon.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_netlogon_bad_creds.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_samlogon.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/auth_log_winbind.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/common.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/complex_expressions.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/compression.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/conditional_ace_assembler.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/conditional_ace_bytes.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/conditional_ace_claims.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/core.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/credentials.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/__pycache__/cred_opt.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/dckeytab.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns_aging.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/dns_base.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns_forwarder.*.pyc
2018-08-16 11:12:36 +00:00
%{python3_sitearch}/samba/tests/__pycache__/dns_invalid.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns_packet.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns_tkey.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dns_wildcard.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb_api.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb_dns.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/dsdb_lock.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb_quiet_env_tests.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb_quiet_provision_tests.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/dsdb_schema_attributes.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/docs.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/domain_backup.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/domain_backup_offline.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/encrypted_secrets.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/gensec.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/get_opt.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/getdcname.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/gkdi.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/glue.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/gpo.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/gpo_member.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/graph.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/group_audit.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/hostconfig.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/imports.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/join.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/krb5_credentials.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ldap_raw.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ldap_referrals.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ldap_spn.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ldap_upn_sam_account.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ldap_whoami.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/loadparm.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/logfiles.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/libsmb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/libsmb-basic.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/lsa_string.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/messaging.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/netbios.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/netcmd.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/net_join_no_spnego.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/net_join.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/netlogonsvc.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ntacls.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/ntacls_backup.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/ntlmdisabled.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/ntlm_auth.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ntlm_auth_base.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/ntlm_auth_krb5.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/pam_winbind.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/pam_winbind_chauthtok.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/pam_winbind_setcred.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/pam_winbind_warn_pwd_expire.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/param.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/password_hash.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/password_hash_fl2003.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/password_hash_fl2008.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/password_hash_gpgme.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/password_hash_ldap.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/password_quality.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/password_test.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/policy.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/posixacl.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/__pycache__/prefork_restart.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/process_limits.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/provision.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/pso.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/py_credentials.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/registry.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/reparsepoints.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/s3idmapdb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/s3param.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/s3passdb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/s3registry.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/s3windb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/s3_net_join.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/safe_tarfile.*.pyc
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/tests/__pycache__/samba_upgradedns_lmdb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/samba_startup_fl_change.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/samba3sam.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/samdb.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/samdb_api.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/sddl.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/sddl_conditional_ace.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/security.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/security_descriptors.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/segfault.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/sid_strings.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/smb.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/smb1posix.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/smb2symlink.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/smb3unix.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/smbconf.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/__pycache__/smb-notify.*.pyc
2019-04-09 09:22:35 +00:00
%{python3_sitearch}/samba/tests/__pycache__/smbd_base.*.pyc
2019-12-16 15:21:48 +00:00
%{python3_sitearch}/samba/tests/__pycache__/smbd_fuzztest.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/__pycache__/source.*.pyc
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/__pycache__/source_chars.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/strings.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/subunitrun.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/__pycache__/tdb_util.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/token_factory.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/upgrade.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/upgradeprovision.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/upgradeprovisionneeddc.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/usage.*.pyc
%{python3_sitearch}/samba/tests/__pycache__/xattr.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/audit_log_base.py
%{python3_sitearch}/samba/tests/audit_log_dsdb.py
%{python3_sitearch}/samba/tests/audit_log_pass_change.py
%{python3_sitearch}/samba/tests/auth.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/auth_log.py
%{python3_sitearch}/samba/tests/auth_log_base.py
%{python3_sitearch}/samba/tests/auth_log_ncalrpc.py
2017-08-29 09:51:57 +00:00
%{python3_sitearch}/samba/tests/auth_log_netlogon_bad_creds.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/auth_log_netlogon.py
%{python3_sitearch}/samba/tests/auth_log_pass_change.py
%{python3_sitearch}/samba/tests/auth_log_samlogon.py
%{python3_sitearch}/samba/tests/auth_log_winbind.py
%dir %{python3_sitearch}/samba/tests/blackbox
%{python3_sitearch}/samba/tests/blackbox/__init__.py
%dir %{python3_sitearch}/samba/tests/blackbox/__pycache__
%{python3_sitearch}/samba/tests/blackbox/__pycache__/__init__.*.pyc
2018-11-08 10:12:44 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/bug13653.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/check_output.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/claims.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/downgradedatabase.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/gmsa.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/http_chunk.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/http_content.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/mdsearch.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/misc_dfs_widelink.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/ndrdump.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/netads_dns.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/netads_json.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/rpcd_witness_samba_only.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/samba_dnsupdate.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcacls.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcacls_basic.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcacls_dfs_propagate_inherit.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcacls_propagate_inhertance.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcacls_save_restore.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcontrol.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/smbcontrol_process.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/__pycache__/traffic_learner.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/traffic_replay.*.pyc
%{python3_sitearch}/samba/tests/blackbox/__pycache__/traffic_summary.*.pyc
2018-11-08 10:12:44 +00:00
%{python3_sitearch}/samba/tests/blackbox/bug13653.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/check_output.py
%{python3_sitearch}/samba/tests/blackbox/claims.py
%{python3_sitearch}/samba/tests/blackbox/downgradedatabase.py
%{python3_sitearch}/samba/tests/blackbox/gmsa.py
%{python3_sitearch}/samba/tests/blackbox/http_chunk.py
%{python3_sitearch}/samba/tests/blackbox/http_content.py
%{python3_sitearch}/samba/tests/blackbox/mdsearch.py
%{python3_sitearch}/samba/tests/blackbox/misc_dfs_widelink.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/blackbox/ndrdump.py
%{python3_sitearch}/samba/tests/blackbox/netads_dns.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/blackbox/netads_json.py
%{python3_sitearch}/samba/tests/blackbox/rpcd_witness_samba_only.py
%{python3_sitearch}/samba/tests/blackbox/samba_dnsupdate.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/blackbox/smbcacls.py
%{python3_sitearch}/samba/tests/blackbox/smbcacls_basic.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py
%{python3_sitearch}/samba/tests/blackbox/smbcacls_propagate_inhertance.py
%{python3_sitearch}/samba/tests/blackbox/smbcacls_save_restore.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/smbcontrol.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/blackbox/smbcontrol_process.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/blackbox/traffic_learner.py
%{python3_sitearch}/samba/tests/blackbox/traffic_replay.py
%{python3_sitearch}/samba/tests/blackbox/traffic_summary.py
%{python3_sitearch}/samba/tests/common.py
%{python3_sitearch}/samba/tests/compression.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/complex_expressions.py
%{python3_sitearch}/samba/tests/conditional_ace_assembler.py
%{python3_sitearch}/samba/tests/conditional_ace_bytes.py
%{python3_sitearch}/samba/tests/conditional_ace_claims.py
%{python3_sitearch}/samba/tests/core.py
%{python3_sitearch}/samba/tests/credentials.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/cred_opt.py
%dir %{python3_sitearch}/samba/tests/dcerpc
%{python3_sitearch}/samba/tests/dcerpc/__init__.py
%dir %{python3_sitearch}/samba/tests/dcerpc/__pycache__
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/__init__.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/array.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/bare.*.pyc
2020-11-25 11:52:50 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/binding.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/dnsserver.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/integer.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/lsa.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/lsa_utils.*.pyc
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/mdssvc.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/misc.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/raw_protocol.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/raw_testcase.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/registry.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/rpc_talloc.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/rpcecho.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/sam.*.pyc
2020-11-25 11:52:50 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/samr_change_password.*.pyc
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/srvsvc.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/string_tests.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/testrpc.*.pyc
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/__pycache__/unix.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/array.py
%{python3_sitearch}/samba/tests/dcerpc/bare.py
2020-11-25 11:52:50 +00:00
%{python3_sitearch}/samba/tests/dcerpc/binding.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/dnsserver.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/integer.py
%{python3_sitearch}/samba/tests/dcerpc/lsa.py
%{python3_sitearch}/samba/tests/dcerpc/lsa_utils.py
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/tests/dcerpc/mdssvc.py
%{python3_sitearch}/samba/tests/dcerpc/misc.py
%{python3_sitearch}/samba/tests/dcerpc/raw_protocol.py
%{python3_sitearch}/samba/tests/dcerpc/raw_testcase.py
%{python3_sitearch}/samba/tests/dcerpc/registry.py
%{python3_sitearch}/samba/tests/dcerpc/rpc_talloc.py
%{python3_sitearch}/samba/tests/dcerpc/rpcecho.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/sam.py
2020-11-25 11:52:50 +00:00
%{python3_sitearch}/samba/tests/dcerpc/samr_change_password.py
%{python3_sitearch}/samba/tests/dcerpc/srvsvc.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/string_tests.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dcerpc/testrpc.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/dcerpc/unix.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dckeytab.py
%{python3_sitearch}/samba/tests/dns.py
%{python3_sitearch}/samba/tests/dns_aging.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/dns_base.py
%{python3_sitearch}/samba/tests/dns_forwarder.py
2018-08-16 11:12:36 +00:00
%dir %{python3_sitearch}/samba/tests/dns_forwarder_helpers
%{python3_sitearch}/samba/tests/dns_forwarder_helpers/__pycache__/server.*.pyc
%{python3_sitearch}/samba/tests/dns_forwarder_helpers/server.py
%{python3_sitearch}/samba/tests/dns_invalid.py
%{python3_sitearch}/samba/tests/dns_packet.py
%{python3_sitearch}/samba/tests/dns_tkey.py
2017-11-02 12:48:02 +00:00
%{python3_sitearch}/samba/tests/dns_wildcard.py
%{python3_sitearch}/samba/tests/dsdb.py
%{python3_sitearch}/samba/tests/dsdb_api.py
%{python3_sitearch}/samba/tests/dsdb_dns.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/dsdb_lock.py
%{python3_sitearch}/samba/tests/dsdb_schema_attributes.py
%{python3_sitearch}/samba/tests/dsdb_quiet_env_tests.py
%{python3_sitearch}/samba/tests/dsdb_quiet_provision_tests.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/docs.py
%{python3_sitearch}/samba/tests/domain_backup.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/domain_backup_offline.py
2018-01-15 14:16:16 +00:00
%dir %{python3_sitearch}/samba/tests/emulate
%{python3_sitearch}/samba/tests/emulate/__init__.py
%dir %{python3_sitearch}/samba/tests/emulate/__pycache__
%{python3_sitearch}/samba/tests/emulate/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/tests/emulate/__pycache__/traffic.*.pyc
%{python3_sitearch}/samba/tests/emulate/__pycache__/traffic_packet.*.pyc
%{python3_sitearch}/samba/tests/emulate/traffic.py
%{python3_sitearch}/samba/tests/emulate/traffic_packet.py
%{python3_sitearch}/samba/tests/encrypted_secrets.py
%{python3_sitearch}/samba/tests/gensec.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/getdcname.py
%{python3_sitearch}/samba/tests/get_opt.py
%{python3_sitearch}/samba/tests/gkdi.py
%{python3_sitearch}/samba/tests/glue.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/gpo.py
%{python3_sitearch}/samba/tests/gpo_member.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/graph.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/group_audit.py
%{python3_sitearch}/samba/tests/hostconfig.py
%{python3_sitearch}/samba/tests/imports.py
%{python3_sitearch}/samba/tests/join.py
%dir %{python3_sitearch}/samba/tests/kcc
%{python3_sitearch}/samba/tests/kcc/__init__.py
%dir %{python3_sitearch}/samba/tests/kcc/__pycache__
%{python3_sitearch}/samba/tests/kcc/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/tests/kcc/__pycache__/graph.*.pyc
%{python3_sitearch}/samba/tests/kcc/__pycache__/graph_utils.*.pyc
%{python3_sitearch}/samba/tests/kcc/__pycache__/kcc_utils.*.pyc
%{python3_sitearch}/samba/tests/kcc/__pycache__/ldif_import_export.*.pyc
%{python3_sitearch}/samba/tests/kcc/graph.py
%{python3_sitearch}/samba/tests/kcc/graph_utils.py
%{python3_sitearch}/samba/tests/kcc/kcc_utils.py
%{python3_sitearch}/samba/tests/kcc/ldif_import_export.py
2020-07-09 09:27:48 +00:00
%dir %{python3_sitearch}/samba/tests/krb5
%dir %{python3_sitearch}/samba/tests/krb5/__pycache__
%{python3_sitearch}/samba/tests/krb5/__pycache__/alias_tests.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/as_canonicalization_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/as_req_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/authn_policy_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/claims_in_pac.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/claims_tests.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/compatability_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/conditional_ace_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/device_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/etype_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/fast_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/gkdi_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/gmsa_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/group_tests.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/kcrypto.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/kdc_base_test.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/kdc_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/kdc_tgs_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/kdc_tgt_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/kpasswd_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/lockout_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/ms_kile_client_principal_lookup_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/nt_hash_tests.*.pyc
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/pac_align_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/pkinit_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/protected_users_tests.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/raw_testcase.*.pyc
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/rfc4120_constants.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/rfc4120_pyasn1.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/rfc4120_pyasn1_generated.*.pyc
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/rodc_tests.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/simple_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/s4u_tests.*.pyc
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/salt_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/spn_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_ccache.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_idmap_nss.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_ldap.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_min_domain_uid.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_rpc.*.pyc
%{python3_sitearch}/samba/tests/krb5/__pycache__/test_smb.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/__pycache__/xrealm_tests.*.pyc
%{python3_sitearch}/samba/tests/krb5/alias_tests.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/as_canonicalization_tests.py
%{python3_sitearch}/samba/tests/krb5/as_req_tests.py
%{python3_sitearch}/samba/tests/krb5/authn_policy_tests.py
%{python3_sitearch}/samba/tests/krb5/claims_in_pac.py
%{python3_sitearch}/samba/tests/krb5/claims_tests.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/compatability_tests.py
%{python3_sitearch}/samba/tests/krb5/conditional_ace_tests.py
%{python3_sitearch}/samba/tests/krb5/device_tests.py
%{python3_sitearch}/samba/tests/krb5/etype_tests.py
%{python3_sitearch}/samba/tests/krb5/fast_tests.py
%{python3_sitearch}/samba/tests/krb5/gkdi_tests.py
%{python3_sitearch}/samba/tests/krb5/gmsa_tests.py
%{python3_sitearch}/samba/tests/krb5/group_tests.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/kcrypto.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/kdc_base_test.py
%{python3_sitearch}/samba/tests/krb5/kdc_tests.py
%{python3_sitearch}/samba/tests/krb5/kdc_tgs_tests.py
%{python3_sitearch}/samba/tests/krb5/kdc_tgt_tests.py
%{python3_sitearch}/samba/tests/krb5/kpasswd_tests.py
%{python3_sitearch}/samba/tests/krb5/lockout_tests.py
%{python3_sitearch}/samba/tests/krb5/ms_kile_client_principal_lookup_tests.py
%{python3_sitearch}/samba/tests/krb5/nt_hash_tests.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/pac_align_tests.py
%{python3_sitearch}/samba/tests/krb5/pkinit_tests.py
%{python3_sitearch}/samba/tests/krb5/protected_users_tests.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/raw_testcase.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/krb5/rfc4120_constants.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/rfc4120_pyasn1.py
%{python3_sitearch}/samba/tests/krb5/rfc4120_pyasn1_generated.py
%{python3_sitearch}/samba/tests/krb5/rodc_tests.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/simple_tests.py
%{python3_sitearch}/samba/tests/krb5/test_idmap_nss.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/test_ccache.py
%{python3_sitearch}/samba/tests/krb5/test_ldap.py
%{python3_sitearch}/samba/tests/krb5/test_min_domain_uid.py
%{python3_sitearch}/samba/tests/krb5/test_rpc.py
%{python3_sitearch}/samba/tests/krb5/test_smb.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/s4u_tests.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/krb5/salt_tests.py
%{python3_sitearch}/samba/tests/krb5/spn_tests.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/krb5/xrealm_tests.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/krb5_credentials.py
%{python3_sitearch}/samba/tests/ldap_raw.py
%{python3_sitearch}/samba/tests/ldap_spn.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/ldap_referrals.py
%{python3_sitearch}/samba/tests/ldap_upn_sam_account.py
%{python3_sitearch}/samba/tests/ldap_whoami.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/libsmb.py
%{python3_sitearch}/samba/tests/libsmb-basic.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/loadparm.py
%{python3_sitearch}/samba/tests/logfiles.py
%{python3_sitearch}/samba/tests/lsa_string.py
%{python3_sitearch}/samba/tests/messaging.py
%dir %{python3_sitearch}/samba/tests/ndr
%{python3_sitearch}/samba/tests/ndr/gkdi.py
%{python3_sitearch}/samba/tests/ndr/gmsa.py
%dir %{python3_sitearch}/samba/tests/ndr/__pycache__
%{python3_sitearch}/samba/tests/ndr/__pycache__/gkdi.*.pyc
%{python3_sitearch}/samba/tests/ndr/__pycache__/gmsa.*.pyc
%{python3_sitearch}/samba/tests/ndr/__pycache__/wbint.*.pyc
%{python3_sitearch}/samba/tests/ndr/wbint.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/netbios.py
%{python3_sitearch}/samba/tests/netcmd.py
%{python3_sitearch}/samba/tests/net_join_no_spnego.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/net_join.py
%{python3_sitearch}/samba/tests/netlogonsvc.py
%{python3_sitearch}/samba/tests/ntacls.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/ntacls_backup.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/ntlmdisabled.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/ntlm_auth.py
%{python3_sitearch}/samba/tests/ntlm_auth_base.py
%{python3_sitearch}/samba/tests/ntlm_auth_krb5.py
%{python3_sitearch}/samba/tests/pam_winbind.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/pam_winbind_chauthtok.py
%{python3_sitearch}/samba/tests/pam_winbind_setcred.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/pam_winbind_warn_pwd_expire.py
%{python3_sitearch}/samba/tests/param.py
%{python3_sitearch}/samba/tests/password_hash.py
%{python3_sitearch}/samba/tests/password_hash_fl2003.py
%{python3_sitearch}/samba/tests/password_hash_fl2008.py
%{python3_sitearch}/samba/tests/password_hash_gpgme.py
%{python3_sitearch}/samba/tests/password_hash_ldap.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/password_quality.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/password_test.py
%{python3_sitearch}/samba/tests/policy.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/posixacl.py
2019-01-15 19:45:03 +00:00
%{python3_sitearch}/samba/tests/prefork_restart.py
%{python3_sitearch}/samba/tests/process_limits.py
%{python3_sitearch}/samba/tests/provision.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/pso.py
%{python3_sitearch}/samba/tests/py_credentials.py
%{python3_sitearch}/samba/tests/registry.py
%{python3_sitearch}/samba/tests/reparsepoints.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/s3idmapdb.py
%{python3_sitearch}/samba/tests/s3param.py
%{python3_sitearch}/samba/tests/s3passdb.py
%{python3_sitearch}/samba/tests/s3registry.py
%{python3_sitearch}/samba/tests/s3windb.py
%{python3_sitearch}/samba/tests/s3_net_join.py
%{python3_sitearch}/samba/tests/safe_tarfile.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba3sam.py
%{python3_sitearch}/samba/tests/samba_startup_fl_change.py
2020-01-21 19:51:37 +00:00
%{python3_sitearch}/samba/tests/samba_upgradedns_lmdb.py
%dir %{python3_sitearch}/samba/tests/samba_tool
%{python3_sitearch}/samba/tests/samba_tool/__init__.py
%dir %{python3_sitearch}/samba/tests/samba_tool/__pycache__
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/__init__.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/base.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/computer.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/contact.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/demote.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/dnscmd.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/domain_auth_policy.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/domain_auth_silo.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/domain_claim.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/domain_kds_root_key.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/domain_models.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/drs_clone_dc_data_lmdb_size.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/dsacl.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/forest.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/fsmo.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/gpo.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/gpo_exts.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/group.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/help.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/join.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/join_lmdb_size.*.pyc
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/join_member.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/ntacl.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/ou.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/passwordsettings.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/processes.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/promote_dc_lmdb_size.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/provision_lmdb_size.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/provision_password_check.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/provision_userPassword_crypt.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/rodc.*.pyc
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/schema.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/service_account.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/silo_base.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/sites.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/timecmd.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_auth_policy.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_auth_silo.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_check_password_script.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_get_kerberos_ticket.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_getpassword_gmsa.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_virtualCryptSHA.*.pyc
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_virtualCryptSHA_base.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_virtualCryptSHA_gpg.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_virtualCryptSHA_userPassword.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/user_wdigest.*.pyc
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/visualize.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/__pycache__/visualize_drs.*.pyc
%{python3_sitearch}/samba/tests/samba_tool/base.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/computer.py
%{python3_sitearch}/samba/tests/samba_tool/contact.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/demote.py
%{python3_sitearch}/samba/tests/samba_tool/dnscmd.py
%{python3_sitearch}/samba/tests/samba_tool/domain_auth_policy.py
%{python3_sitearch}/samba/tests/samba_tool/domain_auth_silo.py
%{python3_sitearch}/samba/tests/samba_tool/domain_claim.py
%{python3_sitearch}/samba/tests/samba_tool/domain_kds_root_key.py
%{python3_sitearch}/samba/tests/samba_tool/domain_models.py
%{python3_sitearch}/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py
%{python3_sitearch}/samba/tests/samba_tool/dsacl.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/forest.py
%{python3_sitearch}/samba/tests/samba_tool/fsmo.py
%{python3_sitearch}/samba/tests/samba_tool/gpo.py
%{python3_sitearch}/samba/tests/samba_tool/gpo_exts.py
%{python3_sitearch}/samba/tests/samba_tool/group.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/help.py
%{python3_sitearch}/samba/tests/samba_tool/join.py
%{python3_sitearch}/samba/tests/samba_tool/join_lmdb_size.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/samba_tool/join_member.py
%{python3_sitearch}/samba/tests/samba_tool/ntacl.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/ou.py
%{python3_sitearch}/samba/tests/samba_tool/passwordsettings.py
%{python3_sitearch}/samba/tests/samba_tool/processes.py
%{python3_sitearch}/samba/tests/samba_tool/promote_dc_lmdb_size.py
%{python3_sitearch}/samba/tests/samba_tool/provision_lmdb_size.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/provision_password_check.py
%{python3_sitearch}/samba/tests/samba_tool/provision_userPassword_crypt.py
%{python3_sitearch}/samba/tests/samba_tool/rodc.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samba_tool/schema.py
%{python3_sitearch}/samba/tests/samba_tool/service_account.py
%{python3_sitearch}/samba/tests/samba_tool/silo_base.py
%{python3_sitearch}/samba/tests/samba_tool/sites.py
%{python3_sitearch}/samba/tests/samba_tool/timecmd.py
%{python3_sitearch}/samba/tests/samba_tool/user.py
%{python3_sitearch}/samba/tests/samba_tool/user_auth_policy.py
%{python3_sitearch}/samba/tests/samba_tool/user_auth_silo.py
%{python3_sitearch}/samba/tests/samba_tool/user_check_password_script.py
%{python3_sitearch}/samba/tests/samba_tool/user_get_kerberos_ticket.py
%{python3_sitearch}/samba/tests/samba_tool/user_getpassword_gmsa.py
%{python3_sitearch}/samba/tests/samba_tool/user_virtualCryptSHA.py
2020-07-09 09:27:48 +00:00
%{python3_sitearch}/samba/tests/samba_tool/user_virtualCryptSHA_base.py
%{python3_sitearch}/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py
%{python3_sitearch}/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py
%{python3_sitearch}/samba/tests/samba_tool/user_wdigest.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/samba_tool/visualize.py
%{python3_sitearch}/samba/tests/samba_tool/visualize_drs.py
%{python3_sitearch}/samba/tests/samdb.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/samdb_api.py
%{python3_sitearch}/samba/tests/sddl.py
%{python3_sitearch}/samba/tests/sddl_conditional_ace.py
%{python3_sitearch}/samba/tests/security.py
%{python3_sitearch}/samba/tests/security_descriptors.py
%{python3_sitearch}/samba/tests/segfault.py
%{python3_sitearch}/samba/tests/sid_strings.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/smb.py
%{python3_sitearch}/samba/tests/smb1posix.py
%{python3_sitearch}/samba/tests/smb2symlink.py
%{python3_sitearch}/samba/tests/smb3unix.py
%{python3_sitearch}/samba/tests/smbconf.py
2021-01-25 15:43:30 +00:00
%{python3_sitearch}/samba/tests/smb-notify.py
2019-04-09 09:22:35 +00:00
%{python3_sitearch}/samba/tests/smbd_base.py
2019-12-16 15:21:48 +00:00
%{python3_sitearch}/samba/tests/smbd_fuzztest.py
2018-07-12 10:43:59 +00:00
%{python3_sitearch}/samba/tests/source.py
2022-01-25 10:55:29 +00:00
%{python3_sitearch}/samba/tests/source_chars.py
%{python3_sitearch}/samba/tests/strings.py
%{python3_sitearch}/samba/tests/subunitrun.py
2018-01-15 14:16:16 +00:00
%{python3_sitearch}/samba/tests/tdb_util.py
%{python3_sitearch}/samba/tests/token_factory.py
%{python3_sitearch}/samba/tests/upgrade.py
%{python3_sitearch}/samba/tests/upgradeprovision.py
%{python3_sitearch}/samba/tests/upgradeprovisionneeddc.py
%{python3_sitearch}/samba/tests/usage.py
%{python3_sitearch}/samba/tests/xattr.py
2012-10-17 12:13:28 +00:00
### TEST
%files test
%{_bindir}/gentest
%{_bindir}/locktest
%{_bindir}/masktest
%{_bindir}/ndrdump
%{_bindir}/smbtorture
%{_mandir}/man1/gentest.1*
%{_mandir}/man1/locktest.1*
%{_mandir}/man1/masktest.1*
%{_mandir}/man1/ndrdump.1*
%{_mandir}/man1/smbtorture.1*
%if %{with testsuite}
%{_mandir}/man1/vfstest.1*
# files to ignore in testsuite mode
2015-03-10 18:50:15 +00:00
%{_libdir}/samba/libnss-wrapper.so
%{_libdir}/samba/libsocket-wrapper.so
%{_libdir}/samba/libuid-wrapper.so
%endif
2014-03-18 13:53:20 +00:00
### TEST-LIBS
%files test-libs
2020-10-20 05:25:57 +00:00
%if %{with dc} || %{with testsuite}
%{_libdir}/samba/libdlz-bind9-for-torture-private-samba.so
2014-03-18 13:53:20 +00:00
%else
%{_libdir}/samba/libdsdb-module-private-samba.so
2014-03-18 13:53:20 +00:00
%endif
### USERSHARES
%files usershares
%config(noreplace) %{_sysconfdir}/samba/usershares.conf
%attr(1770,root,usershares) %dir /var/lib/samba/usershares
%{_sysusersdir}/samba-usershares.conf
2012-10-17 12:13:28 +00:00
### WINBIND
%files winbind
%{_libdir}/samba/idmap
%{_libdir}/samba/nss_info
%{_libdir}/samba/libnss-info-private-samba.so
%{_libdir}/samba/libidmap-private-samba.so
2012-10-17 12:13:28 +00:00
%{_sbindir}/winbindd
%{_sysusersdir}/samba-winbind.conf
2012-10-17 12:13:28 +00:00
%attr(750,root,wbpriv) %dir /var/lib/samba/winbindd_privileged
%{_unitdir}/winbind.service
%{_prefix}/lib/NetworkManager
2012-10-17 12:13:28 +00:00
%{_mandir}/man8/winbindd.8*
%{_mandir}/man8/idmap_*.8*
### WINBIND-CLIENTS
%files winbind-clients
%{_bindir}/ntlm_auth
%{_bindir}/wbinfo
2018-06-27 11:48:45 +00:00
%{_libdir}/samba/krb5/winbind_krb5_localauth.so
2012-10-17 12:13:28 +00:00
%{_mandir}/man1/ntlm_auth.1.gz
%{_mandir}/man1/wbinfo.1*
2018-06-27 11:48:45 +00:00
%{_mandir}/man8/winbind_krb5_localauth.8*
2012-10-17 12:13:28 +00:00
### WINBIND-KRB5-LOCATOR
%files winbind-krb5-locator
%ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
2020-08-12 08:16:17 +00:00
%dir %{_libdir}/samba/krb5
2018-06-27 11:48:45 +00:00
%{_libdir}/samba/krb5/winbind_krb5_locator.so
2021-01-25 15:43:30 +00:00
# correct rpm package?
%{_libdir}/samba/krb5/async_dns_krb5_locator.so
2018-06-27 11:48:45 +00:00
%{_mandir}/man8/winbind_krb5_locator.8*
2012-10-17 12:13:28 +00:00
### WINBIND-MODULES
%files winbind-modules
%{_libdir}/libnss_winbind.so*
%{_libdir}/libnss_wins.so*
%{_libdir}/security/pam_winbind.so
%config(noreplace) %{_sysconfdir}/security/pam_winbind.conf
%{_mandir}/man5/pam_winbind.conf.5*
%{_mandir}/man8/pam_winbind.8*
%if %{with clustering}
2015-01-05 15:31:20 +00:00
%files -n ctdb
%doc ctdb/README
%doc ctdb/doc/examples
2017-02-16 13:41:38 +00:00
# Obsolete
%config(noreplace, missingok) %{_sysconfdir}/sysconfig/ctdb
2015-01-05 15:31:20 +00:00
%dir %{_sysconfdir}/ctdb
2018-07-12 10:43:59 +00:00
%config(noreplace) %{_sysconfdir}/ctdb/ctdb.conf
2017-02-16 13:41:38 +00:00
%config(noreplace) %{_sysconfdir}/ctdb/notify.sh
%config(noreplace) %{_sysconfdir}/ctdb/debug-hung-script.sh
%config(noreplace) %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh
%config(noreplace) %{_sysconfdir}/ctdb/debug_locks.sh
%{_sysconfdir}/ctdb/functions
2015-08-31 13:42:47 +00:00
%{_sysconfdir}/ctdb/nfs-linux-kernel-callout
2017-02-16 13:41:38 +00:00
%{_sysconfdir}/ctdb/statd-callout
2016-05-25 08:51:11 +00:00
# CTDB scripts, no config files
# script with executable bit means activated
2018-07-12 10:43:59 +00:00
%dir %{_sysconfdir}/ctdb/events
%dir %{_sysconfdir}/ctdb/events/legacy
2018-07-12 10:43:59 +00:00
%dir %{_sysconfdir}/ctdb/events/notification
%{_sysconfdir}/ctdb/events/notification/README
2017-02-16 13:41:38 +00:00
# CTDB scripts, no config files
# script with executable bit means activated
%dir %{_sysconfdir}/ctdb/nfs-checks.d
%{_sysconfdir}/ctdb/nfs-checks.d/README
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/00.portmapper.check
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/10.status.check
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/20.nfs.check
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/30.nlockmgr.check
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/40.mountd.check
%config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/50.rquotad.check
2015-01-05 15:31:20 +00:00
%{_sbindir}/ctdbd
%{_bindir}/ctdb
2016-08-18 09:40:04 +00:00
%{_bindir}/ctdb_diagnostics
2021-01-25 15:43:30 +00:00
%{_bindir}/ltdbtool
2016-08-18 09:40:04 +00:00
%{_bindir}/onnode
2021-01-25 15:43:30 +00:00
%{_bindir}/ping_pong
2017-01-05 15:54:29 +00:00
2016-08-18 09:40:04 +00:00
%dir %{_libexecdir}/ctdb
2018-07-12 10:43:59 +00:00
%{_libexecdir}/ctdb/ctdb-config
%{_libexecdir}/ctdb/ctdb-event
%{_libexecdir}/ctdb/ctdb-eventd
2016-07-28 13:42:11 +00:00
%{_libexecdir}/ctdb/ctdb_killtcp
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/ctdb_lock_helper
2016-07-28 13:42:11 +00:00
%{_libexecdir}/ctdb/ctdb_lvs
%{_libexecdir}/ctdb/ctdb_mutex_fcntl_helper
2016-02-23 13:59:15 +00:00
%{_libexecdir}/ctdb/ctdb_natgw
2018-07-12 10:43:59 +00:00
%{_libexecdir}/ctdb/ctdb-path
2016-02-23 13:59:15 +00:00
%{_libexecdir}/ctdb/ctdb_recovery_helper
2017-01-05 10:28:05 +00:00
%{_libexecdir}/ctdb/ctdb_takeover_helper
2016-02-23 13:59:15 +00:00
%{_libexecdir}/ctdb/smnotify
%{_libexecdir}/ctdb/statd_callout
%{_libexecdir}/ctdb/statd_callout_helper
%{_libexecdir}/ctdb/tdb_mutex_check
2017-01-05 15:54:29 +00:00
2017-02-16 13:41:38 +00:00
%dir %{_localstatedir}/lib/ctdb/
%dir %{_localstatedir}/lib/ctdb/persistent
%dir %{_localstatedir}/lib/ctdb/state
%dir %{_localstatedir}/lib/ctdb/volatile
2017-02-16 13:41:38 +00:00
2015-01-05 15:31:20 +00:00
%{_mandir}/man1/ctdb.1.gz
2016-07-28 13:42:11 +00:00
%{_mandir}/man1/ctdb_diagnostics.1.gz
2015-01-05 15:31:20 +00:00
%{_mandir}/man1/ctdbd.1.gz
%{_mandir}/man1/onnode.1.gz
%{_mandir}/man1/ltdbtool.1.gz
%{_mandir}/man1/ping_pong.1.gz
2018-07-12 10:43:59 +00:00
%{_mandir}/man5/ctdb.conf.5.gz
%{_mandir}/man5/ctdb-script.options.5.gz
%{_mandir}/man5/ctdb.sysconfig.5.gz
2015-01-05 15:31:20 +00:00
%{_mandir}/man7/ctdb.7.gz
%{_mandir}/man7/ctdb-tunables.7.gz
%{_mandir}/man7/ctdb-statistics.7.gz
2017-02-16 13:41:38 +00:00
%{_tmpfilesdir}/ctdb.conf
%{_unitdir}/ctdb.service
2018-07-12 10:43:59 +00:00
%dir %{_datadir}/ctdb
%dir %{_datadir}/ctdb/events
%dir %{_datadir}/ctdb/events/legacy/
%{_datadir}/ctdb/events/legacy/00.ctdb.script
%{_datadir}/ctdb/events/legacy/01.reclock.script
%{_datadir}/ctdb/events/legacy/05.system.script
%{_datadir}/ctdb/events/legacy/10.interface.script
%{_datadir}/ctdb/events/legacy/11.natgw.script
%{_datadir}/ctdb/events/legacy/11.routing.script
%{_datadir}/ctdb/events/legacy/13.per_ip_routing.script
%{_datadir}/ctdb/events/legacy/20.multipathd.script
%{_datadir}/ctdb/events/legacy/31.clamd.script
%{_datadir}/ctdb/events/legacy/40.vsftpd.script
%{_datadir}/ctdb/events/legacy/41.httpd.script
%{_datadir}/ctdb/events/legacy/46.update-keytabs.script
%{_datadir}/ctdb/events/legacy/47.samba-dcerpcd.script
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/events/legacy/48.netbios.script
2018-07-12 10:43:59 +00:00
%{_datadir}/ctdb/events/legacy/49.winbind.script
%{_datadir}/ctdb/events/legacy/50.samba.script
%{_datadir}/ctdb/events/legacy/60.nfs.script
%{_datadir}/ctdb/events/legacy/70.iscsi.script
%{_datadir}/ctdb/events/legacy/91.lvs.script
%dir %{_datadir}/ctdb/scripts
%{_datadir}/ctdb/scripts/winbind_ctdb_updatekeytab.sh
2018-07-12 10:43:59 +00:00
2021-01-25 15:43:30 +00:00
%if %{with testsuite}
2015-01-05 15:31:20 +00:00
%files -n ctdb-tests
2017-02-14 17:30:25 +00:00
%doc ctdb/tests/README
2021-01-25 15:43:30 +00:00
%{_bindir}/ctdb_local_daemons
2017-02-14 17:30:25 +00:00
%{_bindir}/ctdb_run_tests
%{_bindir}/ctdb_run_cluster_tests
%dir %{_libexecdir}/ctdb
2016-08-18 09:40:04 +00:00
%dir %{_libexecdir}/ctdb/tests
2020-01-21 19:51:37 +00:00
%{_libexecdir}/ctdb/tests/cluster_mutex_test
2018-07-12 10:43:59 +00:00
%{_libexecdir}/ctdb/tests/cmdline_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/comm_client_test
%{_libexecdir}/ctdb/tests/comm_server_test
%{_libexecdir}/ctdb/tests/comm_test
2018-07-12 10:43:59 +00:00
%{_libexecdir}/ctdb/tests/conf_test
2020-01-21 19:51:37 +00:00
%{_libexecdir}/ctdb/tests/ctdb-db-test
2019-03-06 10:19:14 +00:00
%{_libexecdir}/ctdb/tests/ctdb_io_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/ctdb_packet_parse
%{_libexecdir}/ctdb/tests/ctdb_takeover_tests
%{_libexecdir}/ctdb/tests/db_hash_test
2017-09-17 21:57:50 +00:00
%{_libexecdir}/ctdb/tests/dummy_client
2018-07-31 23:54:00 +00:00
%{_libexecdir}/ctdb/tests/errcode
2018-07-12 10:43:59 +00:00
%{_libexecdir}/ctdb/tests/event_protocol_test
2018-07-31 23:54:00 +00:00
%{_libexecdir}/ctdb/tests/event_script_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/fake_ctdbd
%{_libexecdir}/ctdb/tests/fetch_loop
%{_libexecdir}/ctdb/tests/fetch_loop_key
%{_libexecdir}/ctdb/tests/fetch_readonly
%{_libexecdir}/ctdb/tests/fetch_readonly_loop
%{_libexecdir}/ctdb/tests/fetch_ring
%{_libexecdir}/ctdb/tests/g_lock_loop
2017-07-05 06:23:19 +00:00
%{_libexecdir}/ctdb/tests/hash_count_test
2018-07-31 23:54:00 +00:00
%{_libexecdir}/ctdb/tests/line_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/lock_tdb
%{_libexecdir}/ctdb/tests/message_ring
2016-10-26 10:06:11 +00:00
%{_libexecdir}/ctdb/tests/pidfile_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/pkt_read_test
%{_libexecdir}/ctdb/tests/pkt_write_test
%{_libexecdir}/ctdb/tests/porting_tests
2018-01-15 14:16:16 +00:00
%{_libexecdir}/ctdb/tests/protocol_basic_test
%{_libexecdir}/ctdb/tests/protocol_ctdb_compat_test
%{_libexecdir}/ctdb/tests/protocol_ctdb_test
%{_libexecdir}/ctdb/tests/protocol_types_compat_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/protocol_types_test
%{_libexecdir}/ctdb/tests/protocol_util_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/rb_test
%{_libexecdir}/ctdb/tests/reqid_test
2017-07-05 06:23:19 +00:00
%{_libexecdir}/ctdb/tests/run_event_test
%{_libexecdir}/ctdb/tests/run_proc_test
2018-07-31 23:54:00 +00:00
%{_libexecdir}/ctdb/tests/sigcode
%{_libexecdir}/ctdb/tests/sock_daemon_test
2017-01-27 08:17:46 +00:00
%{_libexecdir}/ctdb/tests/sock_io_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/srvid_test
2019-01-15 19:45:03 +00:00
%{_libexecdir}/ctdb/tests/system_socket_test
%{_libexecdir}/ctdb/tests/tmon_ping_test
%{_libexecdir}/ctdb/tests/tmon_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/transaction_loop
%{_libexecdir}/ctdb/tests/tunable_test
2018-01-15 14:16:16 +00:00
%{_libexecdir}/ctdb/tests/tunnel_cmd
%{_libexecdir}/ctdb/tests/tunnel_test
2016-08-18 09:40:04 +00:00
%{_libexecdir}/ctdb/tests/update_record
%{_libexecdir}/ctdb/tests/update_record_persistent
2017-02-14 17:30:25 +00:00
%dir %{_datadir}/ctdb/tests
2020-01-21 19:51:37 +00:00
%dir %{_datadir}/ctdb/tests/CLUSTER
%dir %{_datadir}/ctdb/tests/CLUSTER/complex
%{_datadir}/ctdb/tests/CLUSTER/complex/11_ctdb_delip_removes_ip.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/18_ctdb_reloadips.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/30_nfs_tickle_killtcp.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/31_nfs_tickle.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/32_cifs_tickle.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/33_gratuitous_arp.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/34_nfs_tickle_restart.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/36_smb_reset_server.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/37_nfs_reset_server.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/41_failover_ping_discrete.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/42_failover_ssh_hostname.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/43_failover_nfs_basic.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/44_failover_nfs_oneway.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/45_failover_nfs_kill.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/60_rogueip_releaseip.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/61_rogueip_takeip.sh
%{_datadir}/ctdb/tests/CLUSTER/complex/README
%dir %{_datadir}/ctdb/tests/CLUSTER/complex/scripts
%{_datadir}/ctdb/tests/CLUSTER/complex/scripts/local.bash
2017-02-14 17:30:25 +00:00
2019-01-15 19:45:03 +00:00
%dir %{_datadir}/ctdb/tests/etc-ctdb
%dir %{_datadir}/ctdb/tests/etc-ctdb/events
%dir %{_datadir}/ctdb/tests/etc-ctdb/events/legacy
%{_datadir}/ctdb/tests/etc-ctdb/events/legacy/00.test.script
2020-01-21 19:51:37 +00:00
%dir %{_datadir}/ctdb/tests/INTEGRATION
%dir %{_datadir}/ctdb/tests/INTEGRATION/database
%{_datadir}/ctdb/tests/INTEGRATION/database/basics.001.attach.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/basics.002.attach.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/basics.003.detach.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/basics.004.wipe.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/basics.010.backup_restore.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/fetch.001.ring.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/INTEGRATION/database/fetch.002.ring-hotkeys.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/INTEGRATION/database/readonly.001.basic.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/recovery.001.volatile.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/recovery.002.large.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/recovery.003.no_resurrect.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/recovery.010.persistent.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/recovery.011.continue.sh
%dir %{_datadir}/ctdb/tests/INTEGRATION/database/scripts
%{_datadir}/ctdb/tests/INTEGRATION/database/scripts/local.bash
%{_datadir}/ctdb/tests/INTEGRATION/database/transaction.001.ptrans.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/transaction.002.loop.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/transaction.003.loop_recovery.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/transaction.004.update_record.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/transaction.010.loop_recovery.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/traverse.001.one.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/traverse.002.many.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.001.fast.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.002.full.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.003.recreate.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.030.locked.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.031.locked.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.032.locked.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.033.locked.sh
%{_datadir}/ctdb/tests/INTEGRATION/database/vacuum.034.locked.sh
%dir %{_datadir}/ctdb/tests/INTEGRATION/failover
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.001.list.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.010.addip.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.011.delip.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.012.reloadips.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.013.failover_noop.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.014.iface_gc.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.020.moveip.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.032.stop_continue.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.040.NoIPTakeover.sh
%{_datadir}/ctdb/tests/INTEGRATION/failover/pubips.050.missing_ip.sh
%dir %{_datadir}/ctdb/tests/INTEGRATION/simple
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.000.onnode.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.001.listnodes.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.002.tunables.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.003.ping.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.004.getpid.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.005.process_exists.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.010.statistics.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/basics.011.statistics_reset.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.001.stop_leader_yield.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.002.ban_leader_yield.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.003.capability_leader_yield.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.006.stop_leader_yield_no_lock.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.007.ban_leader_yield_no_lock.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.008.capability_leader_yield_no_lock.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.010.getrelock.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.012.reclock_command.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.015.reclock_remove_lock.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.016.reclock_move_lock_dir.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.020.message_ring.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.021.tunnel_ring.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.030.node_stall_leader_timeout.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.090.unreachable.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/cluster.091.version_check.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/debug.001.getdebug.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/debug.002.setdebug.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/debug.003.dumpmemory.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/eventscripts.001.zero_scripts.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/eventscripts.090.debug_hung.sh
%{_datadir}/ctdb/tests/INTEGRATION/simple/README
2016-12-07 13:34:32 +00:00
%dir %{_datadir}/ctdb/tests/scripts
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/scripts/cluster.bash
2016-12-07 13:34:32 +00:00
%{_datadir}/ctdb/tests/scripts/common.sh
%{_datadir}/ctdb/tests/scripts/integration.bash
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/scripts/integration_local_daemons.bash
%{_datadir}/ctdb/tests/scripts/integration_real_cluster.bash
2016-12-07 13:34:32 +00:00
%{_datadir}/ctdb/tests/scripts/script_install_paths.sh
%{_datadir}/ctdb/tests/scripts/test_wrap
%{_datadir}/ctdb/tests/scripts/unit.sh
2020-01-21 19:51:37 +00:00
%dir %{_datadir}/ctdb/tests/UNIT
%dir %{_datadir}/ctdb/tests/UNIT/cunit
%{_datadir}/ctdb/tests/UNIT/cunit/cluster_mutex_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/cluster_mutex_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/cluster_mutex_003.sh
%{_datadir}/ctdb/tests/UNIT/cunit/cmdline_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/comm_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/comm_test_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/conf_test_001.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_003.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_004.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_005.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_006.sh
%{_datadir}/ctdb/tests/UNIT/cunit/config_test_007.sh
%{_datadir}/ctdb/tests/UNIT/cunit/ctdb_io_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/db_hash_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/event_protocol_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/event_script_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/hash_count_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/line_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/path_tests_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/pidfile_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/pkt_read_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/pkt_write_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/porting_tests_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_012.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_101.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_111.sh
%{_datadir}/ctdb/tests/UNIT/cunit/protocol_test_201.sh
%{_datadir}/ctdb/tests/UNIT/cunit/rb_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/reqid_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/run_event_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/run_proc_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/sock_daemon_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/sock_io_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/srvid_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/system_socket_test_001.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/cunit/system_socket_test_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/system_socket_test_003.sh
%{_datadir}/ctdb/tests/UNIT/cunit/tmon_test_001.sh
%{_datadir}/ctdb/tests/UNIT/cunit/tmon_test_002.sh
%{_datadir}/ctdb/tests/UNIT/cunit/tunable_test_001.sh
2020-01-21 19:51:37 +00:00
%dir %{_datadir}/ctdb/tests/UNIT/eventd
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/ctdb.conf
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/debug-script.sh
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/data
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/data/03.notalink.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/data/README
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/empty
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/empty/README
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/multi
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/multi/01.test.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/multi/02.test.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/multi/03.test.script
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/random
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/random/01.disabled.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/random/02.enabled.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/random/a.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/events/random/README.script
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/data
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/data/01.dummy.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/data/02.disabled.script
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/empty
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/empty/README
%dir %{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/random
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/random/01.disabled.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/random/02.enabled.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/random/a.script
%{_datadir}/ctdb/tests/UNIT/eventd/etc-ctdb/share/events/random/README.script
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_001.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_002.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_003.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_004.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_005.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_006.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_007.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_008.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_009.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_011.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_012.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_013.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_014.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_021.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_022.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_023.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_024.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_031.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_032.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_033.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_041.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_042.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_043.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_044.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_051.sh
%{_datadir}/ctdb/tests/UNIT/eventd/eventd_052.sh
%{_datadir}/ctdb/tests/UNIT/eventd/README
%dir %{_datadir}/ctdb/tests/UNIT/eventd/scripts
%{_datadir}/ctdb/tests/UNIT/eventd/scripts/local.sh
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.007.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.008.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/00.ctdb.init.009.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/01.reclock.init.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/01.reclock.init.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/01.reclock.init.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.007.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.014.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.015.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.017.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/05.system.monitor.018.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/06.nfs.releaseip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/06.nfs.releaseip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/06.nfs.takeip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/06.nfs.takeip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.010.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.013.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.init.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.init.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.init.021.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.init.022.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.init.023.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.009.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.010.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.013.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.014.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.015.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.016.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.017.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.monitor.018.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.multi.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.releaseip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.releaseip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.startup.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.startup.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.takeip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.takeip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/10.interface.takeip.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.013.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.014.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.015.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.021.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.022.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.023.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.024.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.025.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.031.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.041.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.042.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.051.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.052.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.053.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/11.natgw.054.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.007.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.008.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.009.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.010.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.013.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.014.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.015.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.016.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.017.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.018.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.019.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.021.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.022.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.023.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/13.per_ip_routing.024.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/20.multipathd.monitor.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/20.multipathd.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/20.multipathd.monitor.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/20.multipathd.monitor.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/31.clamd.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/31.clamd.monitor.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/40.vsftpd.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/40.vsftpd.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/40.vsftpd.startup.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/41.httpd.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/41.httpd.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/41.httpd.startup.002.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/48.netbios.shutdown.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/48.netbios.startup.011.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/49.winbind.monitor.101.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/49.winbind.monitor.102.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/49.winbind.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/49.winbind.startup.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.101.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.103.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.104.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.105.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.106.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.110.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.111.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.112.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.monitor.113.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.shutdown.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.shutdown.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/50.samba.startup.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.101.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.102.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.103.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.104.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.105.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.106.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.107.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.108.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.109.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.111.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.112.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.113.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.114.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.121.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.122.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.131.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.132.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.141.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.142.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.143.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.144.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.151.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.152.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.153.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.161.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.monitor.162.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.multi.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.multi.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.releaseip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.releaseip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.shutdown.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.startup.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.startup.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.takeip.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/60.nfs.takeip.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.ipreallocated.011.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.ipreallocated.012.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.ipreallocated.013.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.ipreallocated.014.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.monitor.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.monitor.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.monitor.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.shutdown.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.shutdown.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.startup.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/91.lvs.startup.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.007.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.008.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.021.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.022.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.023.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.024.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.025.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.026.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.027.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/debug_locks.sh.028.sh
2020-01-21 19:51:37 +00:00
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/etc
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/etc-ctdb
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc-ctdb/public_addresses
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc-ctdb/rc.local
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/etc/init.d
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc/init.d/nfs
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc/init.d/nfslock
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/etc/samba
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc/samba/smb.conf
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/etc/sysconfig
%{_datadir}/ctdb/tests/UNIT/eventscripts/etc/sysconfig/nfs
%{_datadir}/ctdb/tests/UNIT/eventscripts/README
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/scripts
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/00.ctdb.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/01.reclock.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/05.system.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/06.nfs.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/10.interface.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/11.natgw.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/13.per_ip_routing.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/20.multipathd.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/31.clamd.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/41.httpd.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/48.netbios.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/49.winbind.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/50.samba.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/60.nfs.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/91.lvs.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/debug_locks.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/local.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/scripts/statd-callout.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.001.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.002.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.003.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.004.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.005.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.006.sh
%{_datadir}/ctdb/tests/UNIT/eventscripts/statd-callout.007.sh
%dir %{_datadir}/ctdb/tests/UNIT/eventscripts/stubs
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ctdb
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ctdb-config
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ctdb_killtcp
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ctdb_lvs
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ctdb_natgw
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/date
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/df
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ethtool
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/exportfs
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/gstack
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/id
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ip
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ip6tables
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/iptables
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ipvsadm
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/kill
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/killall
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/multipath
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/net
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/nfs-fake-callout
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/nfsconf
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/pidof
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/pkill
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ps
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rm
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rpc.lockd
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rpc.mountd
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rpc.rquotad
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rpc.statd
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/rpcinfo
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/service
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/sleep
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/smnotify
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/ss
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/stat
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/tdb_mutex_check
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/tdbdump
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/tdbtool
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/testparm
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/timeout
%{_datadir}/ctdb/tests/UNIT/eventscripts/stubs/wbinfo
%dir %{_datadir}/ctdb/tests/UNIT/onnode
%{_datadir}/ctdb/tests/UNIT/onnode/0001.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0002.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0003.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0004.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0005.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0006.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0010.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0011.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0070.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0071.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0072.sh
%{_datadir}/ctdb/tests/UNIT/onnode/0075.sh
%dir %{_datadir}/ctdb/tests/UNIT/onnode/etc-ctdb
%{_datadir}/ctdb/tests/UNIT/onnode/etc-ctdb/nodes
%dir %{_datadir}/ctdb/tests/UNIT/onnode/scripts
%{_datadir}/ctdb/tests/UNIT/onnode/scripts/local.sh
%dir %{_datadir}/ctdb/tests/UNIT/onnode/stubs
%{_datadir}/ctdb/tests/UNIT/onnode/stubs/ctdb
%{_datadir}/ctdb/tests/UNIT/onnode/stubs/ssh
%dir %{_datadir}/ctdb/tests/UNIT/shellcheck
%{_datadir}/ctdb/tests/UNIT/shellcheck/base_scripts.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/ctdb_helpers.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/event_scripts.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/functions.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/init_script.sh
%dir %{_datadir}/ctdb/tests/UNIT/shellcheck/scripts
%{_datadir}/ctdb/tests/UNIT/shellcheck/scripts/local.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/tests.sh
%{_datadir}/ctdb/tests/UNIT/shellcheck/tools.sh
%dir %{_datadir}/ctdb/tests/UNIT/takeover
%{_datadir}/ctdb/tests/UNIT/takeover/det.001.sh
%{_datadir}/ctdb/tests/UNIT/takeover/det.002.sh
%{_datadir}/ctdb/tests/UNIT/takeover/det.003.sh
%dir %{_datadir}/ctdb/tests/UNIT/takeover_helper
%{_datadir}/ctdb/tests/UNIT/takeover_helper/000.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/010.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/011.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/012.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/013.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/014.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/016.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/017.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/018.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/019.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/021.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/022.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/023.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/024.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/025.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/026.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/027.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/028.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/030.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/031.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/110.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/111.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/120.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/121.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/122.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/130.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/131.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/132.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/140.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/150.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/160.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/210.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/211.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/220.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/230.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/240.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/250.sh
%{_datadir}/ctdb/tests/UNIT/takeover_helper/260.sh
%dir %{_datadir}/ctdb/tests/UNIT/takeover_helper/scripts
%{_datadir}/ctdb/tests/UNIT/takeover_helper/scripts/local.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.001.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.002.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.003.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.004.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.005.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.006.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.007.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.008.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.009.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.010.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.011.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.012.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.013.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.014.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.015.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.016.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.024.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.025.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.027.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.028.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.029.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.030.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.031.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.032.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.033.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.034.sh
%{_datadir}/ctdb/tests/UNIT/takeover/lcp2.035.sh
%{_datadir}/ctdb/tests/UNIT/takeover/nondet.001.sh
%{_datadir}/ctdb/tests/UNIT/takeover/nondet.002.sh
%{_datadir}/ctdb/tests/UNIT/takeover/nondet.003.sh
%{_datadir}/ctdb/tests/UNIT/takeover/README
%dir %{_datadir}/ctdb/tests/UNIT/takeover/scripts
%{_datadir}/ctdb/tests/UNIT/takeover/scripts/local.sh
%dir %{_datadir}/ctdb/tests/UNIT/tool
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.attach.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.attach.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.attach.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ban.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ban.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ban.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.catdb.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.catdb.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.cattdb.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.cattdb.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.continue.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.continue.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.continue.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.deletekey.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.disable.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.disable.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.disable.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.disable.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.enable.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.enable.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.enable.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getcapabilities.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getcapabilities.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getcapabilities.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getcapabilities.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getdbmap.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getdbseqnum.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getdbseqnum.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getdbstatus.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getdbstatus.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getpid.001.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getpid.010.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getreclock.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getreclock.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getvar.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.getvar.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ifaces.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.006.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ip.007.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ipinfo.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ipinfo.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ipinfo.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.leader.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.leader.002.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.listnodes.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.listnodes.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.listvars.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.006.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.007.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.008.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.lvs.010.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.006.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.007.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.008.sh
2020-07-09 09:27:48 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.natgw.010.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.006.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.nodestatus.007.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.pdelete.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ping.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.pnn.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.process-exists.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.process-exists.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.process-exists.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.pstore.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.ptrans.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.readkey.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.recover.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.011.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.012.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.013.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.014.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.015.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.016.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.017.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.018.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.019.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.020.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.021.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.023.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.reloadnodes.024.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.runstate.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.runstate.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.runstate.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.runstate.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.runstate.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbreadonly.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbreadonly.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbreadonly.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbreadonly.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbreadonly.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbsticky.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbsticky.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbsticky.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbsticky.004.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdbsticky.005.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdebug.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdebug.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setdebug.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setifacelink.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setifacelink.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setvar.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.setvar.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.status.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.status.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.status.003.sh
2020-01-21 19:51:37 +00:00
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.stop.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.stop.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.stop.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.unban.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.unban.002.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.unban.003.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.uptime.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/ctdb.writekey.001.sh
%{_datadir}/ctdb/tests/UNIT/tool/README
%dir %{_datadir}/ctdb/tests/UNIT/tool/scripts
%{_datadir}/ctdb/tests/UNIT/tool/scripts/local.sh
2021-01-25 15:43:30 +00:00
#endif with selftest
%endif
2017-02-14 17:30:25 +00:00
%if %{with pcp_pmda}
%files -n ctdb-pcp-pmda
%dir %{_localstatedir}/lib/pcp/pmdas/ctdb
%{_localstatedir}/lib/pcp/pmdas/ctdb/Install
%{_localstatedir}/lib/pcp/pmdas/ctdb/README
%{_localstatedir}/lib/pcp/pmdas/ctdb/Remove
%{_localstatedir}/lib/pcp/pmdas/ctdb/domain.h
%{_localstatedir}/lib/pcp/pmdas/ctdb/help
%{_localstatedir}/lib/pcp/pmdas/ctdb/pmdactdb
%{_localstatedir}/lib/pcp/pmdas/ctdb/pmns
#endif with pcp_pmda
%endif
%if %{with etcd_mutex}
%files -n ctdb-etcd-mutex
%{_libexecdir}/ctdb/ctdb_etcd_lock
%{_mandir}/man7/ctdb-etcd.7.gz
#endif with etcd_mutex
%endif
%if %{with ceph_mutex}
%files -n ctdb-ceph-mutex
%{_libexecdir}/ctdb/ctdb_mutex_ceph_rados_helper
%{_mandir}/man7/ctdb_mutex_ceph_rados_helper.7.gz
#endif with ceph_mutex
%endif
#endif with clustering
%endif
2015-01-05 15:31:20 +00:00
2020-08-28 15:57:42 +00:00
%if %{with winexe}
### WINEXE
%files winexe
%{_bindir}/winexe
2020-08-28 09:49:44 +00:00
%{_mandir}/man1/winexe.1.gz
%endif
%files -n libldb
%{_libdir}/libldb.so.*
%dir %{_libdir}/samba
%{_libdir}/samba/libldb-key-value-private-samba.so
%{_libdir}/samba/libldb-tdb-err-map-private-samba.so
%{_libdir}/samba/libldb-tdb-int-private-samba.so
%if %{with lmdb}
%{_libdir}/samba/libldb-mdb-int-private-samba.so
%endif
%dir %{_libdir}/samba/ldb
%{_libdir}/samba/ldb/asq.so
%{_libdir}/samba/ldb/ldb.so
%if %{with lmdb}
%{_libdir}/samba/ldb/mdb.so
%endif
%{_libdir}/samba/ldb/paged_searches.so
%{_libdir}/samba/ldb/rdn_name.so
%{_libdir}/samba/ldb/sample.so
%{_libdir}/samba/ldb/server_sort.so
%{_libdir}/samba/ldb/skel.so
%{_libdir}/samba/ldb/tdb.so
%files -n libldb-devel
%{_includedir}/samba-4.0/ldb_module.h
%{_includedir}/samba-4.0/ldb_handlers.h
%{_includedir}/samba-4.0/ldb_errors.h
%{_includedir}/samba-4.0/ldb_version.h
%{_includedir}/samba-4.0/ldb.h
%{_libdir}/libldb.so
%{_libdir}/pkgconfig/ldb.pc
%{_mandir}/man3/ldb*.gz
%{_mandir}/man3/ldif*.gz
%files -n ldb-tools
%{_bindir}/ldbadd
%{_bindir}/ldbdel
%{_bindir}/ldbedit
%{_bindir}/ldbmodify
%{_bindir}/ldbrename
%{_bindir}/ldbsearch
%{_libdir}/samba/libldb-cmdline-private-samba.so
%{_mandir}/man1/ldbadd.1.*
%{_mandir}/man1/ldbdel.1.*
%{_mandir}/man1/ldbedit.1.*
%{_mandir}/man1/ldbmodify.1.*
%{_mandir}/man1/ldbrename.1.*
%{_mandir}/man1/ldbsearch.1.*
%files -n python3-ldb
%{python3_sitearch}/ldb.cpython-*.so
%{_libdir}/samba/libpyldb-util.cpython-*-private-samba.so
%{python3_sitearch}/_ldb_text.py
%{python3_sitearch}/__pycache__/_ldb_text.cpython-*.py*
auto-import changelog data from samba-2.0.7-20.src.rpm * Sun Aug 06 2000 Philipp Knirsch <pknirsch@redhat.com> - bugfix for smbadduser script (#15148) * Mon Jul 31 2000 Matt Wilson <msw@redhat.com> - patch configure.ing (patch11) to disable cups test - turn off swat by default * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com> - fix condrestart stuff * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com> - add copytruncate to logrotate file (#14360) - fix init script (#13708) * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com> - move initscript back - remove 'Using Samba' book from %doc - move stuff to /etc/samba (#13708) - default configuration tweaks (#13704) - some logrotate tweaks * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> - fix logrotate script (#13698) * Thu Jul 06 2000 Bill Nottingham <notting@redhat.com> - fix initscripts req (prereq /etc/init.d) * Wed Jul 05 2000 Than Ngo <than@redhat.de> - add initdir macro to handle the initscript directory - add a new macro to handle /etc/pam.d/system-auth * Thu Jun 29 2000 Bill Nottingham <notting@redhat.com> - fix init script * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com> - rename samba logs (#11606) * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> - initscript munging * Fri Jun 16 2000 Bill Nottingham <notting@redhat.com> - configure the swat stuff usefully - re-integrate some specfile tweaks that got lost somewhere * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> - rebuild to get rid of cups dependency * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com> - tweak logrotate configurations to use the PID file in /var/lock/samba * Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment * Thu Jun 01 2000 Nalin Dahyabhai <nalin@redhat.com> - change PAM setup to use system-auth * Mon May 08 2000 Bill Nottingham <notting@redhat.com> - fixes for ia64 * Sat May 06 2000 Bill Nottingham <notting@redhat.com> - switch to %configure * Wed Apr 26 2000 Nils Philippsen <nils@redhat.de> - version 2.0.7 * Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com> - simplify preun * Thu Mar 16 2000 Bill Nottingham <notting@redhat.com> - fix yp_get_default_domain in autoconf - only link against readline for smbclient - fix log rotation (#9909) * Fri Feb 25 2000 Bill Nottingham <notting@redhat.com> - fix trigger, again. * Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix trigger. * Fri Feb 04 2000 Bill Nottingham <notting@redhat.com> - turn on quota support * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com> - rebuild to fox dependencies - man pages are compressed * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> - munge post scripts slightly * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> - turn on mmap again. Wheee. - ship smbmount on alpha * Mon Dec 06 1999 Bill Nottingham <notting@redhat.com> - turn off mmap. ;) * Wed Dec 01 1999 Bill Nottingham <notting@redhat.com> - change /var/log/samba to 0700 - turn on mmap support * Thu Nov 11 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.6 * Fri Oct 29 1999 Bill Nottingham <notting@redhat.com> - add a %defattr for -common * Tue Oct 05 1999 Bill Nottingham <notting@redhat.com> - shift some files into -client - remove /home/samba from package. * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> - initscript oopsie. killproc <name> -HUP, not other way around. * Sun Sep 26 1999 Bill Nottingham <notting@redhat.com> - script cleanups. Again. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com> - add a patch to fix dropped reconnection attempts * Mon Sep 06 1999 Jeff Johnson <jbj@redhat.com> - use cp rather than mv to preserve /etc/services perms (#4938 et al). - use mktemp to generate /etc/tmp.XXXXXX file name. - add prereqs on sed/mktemp/killall (need to move killall to /bin). - fix trigger syntax (i.e. "samba < 1.9.18p7" not "samba < samba-1.9.18p7") * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> - sed "s|nawk|gawk|" /usr/bin/convert_smbpasswd * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com> - fix typo in mount.smb * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> - add a %trigger to work around (sort of) broken scripts in previous releases * Mon Aug 16 1999 Bill Nottingham <notting@redhat.com> - initscript munging * Mon Aug 09 1999 Bill Nottingham <notting@redhat.com> - add domain parsing to mount.smb * Fri Aug 06 1999 Bill Nottingham <notting@redhat.com> - add a -common package, shuffle files around. * Fri Jul 23 1999 Bill Nottingham <notting@redhat.com> - add a chmod in %postun so /etc/services & inetd.conf don't become unreadable * Wed Jul 21 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.5 - fix mount.smb - smbmount options changed again......... - fix postun. oops. - update some stuff from the samba team's spec file. * Fri Jun 18 1999 Bill Nottingham <notting@redhat.com> - split off clients into separate package - don't run samba by default * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> - fix one problem with mount.smb script - fix smbpasswd on sparc with a really ugly kludge * Thu Jun 10 1999 Dale Lovelace <dale@redhat.com> - fixed logrotate script * Tue May 25 1999 Bill Nottingham <notting@redhat.com> - turn of 64-bit locking on 32-bit platforms * Thu May 20 1999 Bill Nottingham <notting@redhat.com> - so many releases, so little time - explicitly uncomment 'printing = bsd' in sample config * Tue May 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.4a - fix mount.smb arg ordering * Fri Apr 16 1999 Bill Nottingham <notting@redhat.com> - go back to stop/start for restart (-HUP didn't work in testing) * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> - add a mount.smb to make smb mounting a little easier. - smb filesystems apparently don't work on alpha. Oops. * Thu Mar 25 1999 Bill Nottingham <notting@redhat.com> - always create codepages * Tue Mar 23 1999 Bill Nottingham <notting@redhat.com> - logrotate changes * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 3) * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com> - updated init script to use graceful restart (not stop/start) * Tue Mar 09 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.3 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.2 * Mon Feb 15 1999 Bill Nottingham <notting@redhat.com> - swat swat * Tue Feb 09 1999 Bill Nottingham <notting@redhat.com> - fix bash2 breakage in post script * Fri Feb 05 1999 Bill Nottingham <notting@redhat.com> - update to 2.0.0 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> - make sure all binaries are stripped * Thu Sep 17 1998 Jeff Johnson <jbj@redhat.com> - update to 1.9.18p10. - fix %triggerpostun. * Tue Jul 07 1998 Erik Troan <ewt@redhat.com> - updated postun triggerscript to check $0 - clear /etc/codepages from %preun instead of %postun * Mon Jun 08 1998 Erik Troan <ewt@redhat.com> - made the %postun script a tad less agressive; no reason to remove the logs or lock file (after all, if the lock file is still there, samba is still running) - the %postun and %preun should only exectute if this is the final removal - migrated %triggerpostun from Red Hat's samba package to work around packaging problems in some Red Hat samba releases * Sun Apr 26 1998 John H Terpstra <jht@samba.anu.edu.au> - minor tidy up in preparation for release of 1.9.18p5 - added findsmb utility from SGI package * Wed Mar 18 1998 John H Terpstra <jht@samba.anu.edu.au> - Updated version and codepage info. - Release to test name resolve order * Sat Jan 24 1998 John H Terpstra <jht@samba.anu.edu.au> - Many optimisations (some suggested by Manoj Kasichainula <manojk@io.com> - Use of chkconfig in place of individual symlinks to /etc/rc.d/init/smb - Compounded make line - Updated smb.init restart mechanism - Use compound mkdir -p line instead of individual calls to mkdir - Fixed smb.conf file path for log files - Fixed smb.conf file path for incoming smb print spool directory - Added a number of options to smb.conf file - Added smbadduser command (missed from all previous RPMs) - Doooh! - Added smbuser file and smb.conf file updates for username map
2004-09-09 12:00:52 +00:00
%changelog
%autochangelog