Update to FreeIPA 4.8.10
This commit is contained in:
parent
be9ba85ab6
commit
3c2acac7db
2
.gitignore
vendored
2
.gitignore
vendored
@ -92,3 +92,5 @@
|
|||||||
/freeipa-4.8.7.tar.gz.asc
|
/freeipa-4.8.7.tar.gz.asc
|
||||||
/freeipa-4.8.9.tar.gz
|
/freeipa-4.8.9.tar.gz
|
||||||
/freeipa-4.8.9.tar.gz.asc
|
/freeipa-4.8.9.tar.gz.asc
|
||||||
|
/freeipa-4.8.10.tar.gz
|
||||||
|
/freeipa-4.8.10.tar.gz.asc
|
||||||
|
112
freeipa.spec
112
freeipa.spec
@ -53,7 +53,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Include SELinux subpackage
|
# Include SELinux subpackage
|
||||||
%if 0%{?fedora} >= 30 || 0%{?rhel} > 8
|
%if 0%{?fedora} >= 30 || 0%{?rhel}
|
||||||
%global with_selinux 1
|
%global with_selinux 1
|
||||||
%global selinuxtype targeted
|
%global selinuxtype targeted
|
||||||
%global modulename ipa
|
%global modulename ipa
|
||||||
@ -62,7 +62,7 @@
|
|||||||
%if 0%{?rhel}
|
%if 0%{?rhel}
|
||||||
%global package_name ipa
|
%global package_name ipa
|
||||||
%global alt_name freeipa
|
%global alt_name freeipa
|
||||||
%global krb5_version 1.16.1
|
%global krb5_version 1.18
|
||||||
# 0.7.16: https://github.com/drkjam/netaddr/issues/71
|
# 0.7.16: https://github.com/drkjam/netaddr/issues/71
|
||||||
%global python_netaddr_version 0.7.16
|
%global python_netaddr_version 0.7.16
|
||||||
# Require 4.7.0 which brings Python 3 bindings
|
# Require 4.7.0 which brings Python 3 bindings
|
||||||
@ -89,14 +89,19 @@
|
|||||||
# Require 4.12 which has DsRGetForestTrustInformation access rights fixes
|
# Require 4.12 which has DsRGetForestTrustInformation access rights fixes
|
||||||
%global samba_version 2:4.12
|
%global samba_version 2:4.12
|
||||||
|
|
||||||
%global selinux_policy_version 3.14.5-40
|
# SELinux context for dirsrv unit file, BZ 1820298
|
||||||
|
%if 0%{?fedora} >= 32
|
||||||
|
%global selinux_policy_version 3.14.5-39
|
||||||
|
%else
|
||||||
|
%global selinux_policy_version 3.14.4-52
|
||||||
|
%endif
|
||||||
%global slapi_nis_version 0.56.5
|
%global slapi_nis_version 0.56.5
|
||||||
|
|
||||||
# fix for segfault in python3-ldap, https://pagure.io/freeipa/issue/7324
|
# fix for segfault in python3-ldap, https://pagure.io/freeipa/issue/7324
|
||||||
%global python_ldap_version 3.1.0-1
|
%global python_ldap_version 3.1.0-1
|
||||||
# Fix for create suffix
|
# 1.4.3 moved nsslapd-db-locks to cn=bdb sub-entry
|
||||||
# https://pagure.io/389-ds-base/issue/49984
|
# https://pagure.io/freeipa/issue/8515
|
||||||
%global ds_version 1.4.1.1
|
%global ds_version 1.4.3
|
||||||
|
|
||||||
# Fix for TLS 1.3 PHA, RHBZ#1775146
|
# Fix for TLS 1.3 PHA, RHBZ#1775146
|
||||||
%if 0%{?fedora} >= 31
|
%if 0%{?fedora} >= 31
|
||||||
@ -120,9 +125,9 @@
|
|||||||
%global krb5_kdb_version 7.0
|
%global krb5_kdb_version 7.0
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# 10.7.3 supports LWCA key replication using AES
|
# PKIConnection has been modified to always validate certs.
|
||||||
# https://pagure.io/freeipa/issue/8020
|
# https://pagure.io/freeipa/issue/8379
|
||||||
%global pki_version 10.7.3-1
|
%global pki_version 10.9.0-0.4
|
||||||
|
|
||||||
# https://pagure.io/certmonger/issue/90
|
# https://pagure.io/certmonger/issue/90
|
||||||
%global certmonger_version 0.79.7-1
|
%global certmonger_version 0.79.7-1
|
||||||
@ -147,7 +152,7 @@
|
|||||||
|
|
||||||
# Work-around fact that RPM SPEC parser does not accept
|
# Work-around fact that RPM SPEC parser does not accept
|
||||||
# "Version: @VERSION@" in freeipa.spec.in used for Autoconf string replacement
|
# "Version: @VERSION@" in freeipa.spec.in used for Autoconf string replacement
|
||||||
%define IPA_VERSION 4.8.9
|
%define IPA_VERSION 4.8.10
|
||||||
%define AT_SIGN @
|
%define AT_SIGN @
|
||||||
# redefine IPA_VERSION only if its value matches the Autoconf placeholder
|
# redefine IPA_VERSION only if its value matches the Autoconf placeholder
|
||||||
%if "%{IPA_VERSION}" == "%{AT_SIGN}VERSION%{AT_SIGN}"
|
%if "%{IPA_VERSION}" == "%{AT_SIGN}VERSION%{AT_SIGN}"
|
||||||
@ -156,14 +161,13 @@
|
|||||||
|
|
||||||
Name: %{package_name}
|
Name: %{package_name}
|
||||||
Version: %{IPA_VERSION}
|
Version: %{IPA_VERSION}
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The Identity, Policy and Audit system
|
Summary: The Identity, Policy and Audit system
|
||||||
|
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: http://www.freeipa.org/
|
URL: http://www.freeipa.org/
|
||||||
Source0: https://releases.pagure.org/freeipa/freeipa-%{version}.tar.gz
|
Source0: https://releases.pagure.org/freeipa/freeipa-%{version}.tar.gz
|
||||||
Source1: https://releases.pagure.org/freeipa/freeipa-%{version}.tar.gz.asc
|
Source1: https://releases.pagure.org/freeipa/freeipa-%{version}.tar.gz.asc
|
||||||
Patch0001: freeipa-4.8.9-support-older-installations.patch
|
|
||||||
|
|
||||||
# For the timestamp trick in patch application
|
# For the timestamp trick in patch application
|
||||||
BuildRequires: diffstat
|
BuildRequires: diffstat
|
||||||
@ -202,14 +206,20 @@ BuildRequires: libtevent-devel
|
|||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
BuildRequires: libsss_idmap-devel
|
BuildRequires: libsss_idmap-devel
|
||||||
BuildRequires: libsss_certmap-devel
|
BuildRequires: libsss_certmap-devel
|
||||||
BuildRequires: libsss_nss_idmap-devel >= %{sssd_version}
|
BuildRequires: libsss_nss_idmap-devel >= %{sssd_version}
|
||||||
BuildRequires: nodejs(abi)
|
BuildRequires: nodejs(abi)
|
||||||
BuildRequires: python-rjsmin
|
# use old dependency on RHEL 8 for now
|
||||||
|
%if 0%{?fedora} >= 31 || 0%{?rhel} > 8
|
||||||
|
BuildRequires: python3-rjsmin
|
||||||
|
%else
|
||||||
|
BuildRequires: uglify-js
|
||||||
|
%endif
|
||||||
BuildRequires: libverto-devel
|
BuildRequires: libverto-devel
|
||||||
BuildRequires: libunistring-devel
|
BuildRequires: libunistring-devel
|
||||||
# 0.13.0: https://bugzilla.redhat.com/show_bug.cgi?id=1584773
|
# 0.13.0: https://bugzilla.redhat.com/show_bug.cgi?id=1584773
|
||||||
# 0.13.0-2: fix for missing dependency on python-six
|
# 0.13.0-2: fix for missing dependency on python-six
|
||||||
BuildRequires: python3-lesscpy >= 0.13.0-2
|
BuildRequires: python3-lesscpy >= 0.13.0-2
|
||||||
|
|
||||||
# ONLY_CLIENT
|
# ONLY_CLIENT
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -224,6 +234,7 @@ BuildRequires: python3-netaddr >= %{python_netaddr_version}
|
|||||||
BuildRequires: python3-pyasn1
|
BuildRequires: python3-pyasn1
|
||||||
BuildRequires: python3-pyasn1-modules
|
BuildRequires: python3-pyasn1-modules
|
||||||
BuildRequires: python3-six
|
BuildRequires: python3-six
|
||||||
|
BuildRequires: python3-psutil
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build dependencies for wheel packaging and PyPI upload
|
# Build dependencies for wheel packaging and PyPI upload
|
||||||
@ -245,10 +256,12 @@ BuildRequires: python3-wheel
|
|||||||
# Build dependencies for lint and fastcheck
|
# Build dependencies for lint and fastcheck
|
||||||
#
|
#
|
||||||
%if 0%{?with_lint}
|
%if 0%{?with_lint}
|
||||||
|
BuildRequires: git
|
||||||
BuildRequires: jsl
|
BuildRequires: jsl
|
||||||
|
BuildRequires: nss-tools
|
||||||
BuildRequires: rpmlint
|
BuildRequires: rpmlint
|
||||||
BuildRequires: softhsm
|
BuildRequires: softhsm
|
||||||
|
BuildRequires: keyutils
|
||||||
BuildRequires: python3-augeas
|
BuildRequires: python3-augeas
|
||||||
BuildRequires: python3-cffi
|
BuildRequires: python3-cffi
|
||||||
BuildRequires: python3-cryptography >= 1.6
|
BuildRequires: python3-cryptography >= 1.6
|
||||||
@ -289,6 +302,7 @@ BuildRequires: python3-sss
|
|||||||
BuildRequires: python3-sss-murmur
|
BuildRequires: python3-sss-murmur
|
||||||
BuildRequires: python3-sssdconfig >= %{sssd_version}
|
BuildRequires: python3-sssdconfig >= %{sssd_version}
|
||||||
BuildRequires: python3-systemd
|
BuildRequires: python3-systemd
|
||||||
|
BuildRequires: python3-yaml
|
||||||
BuildRequires: python3-yubico
|
BuildRequires: python3-yubico
|
||||||
# with_lint
|
# with_lint
|
||||||
%endif
|
%endif
|
||||||
@ -419,6 +433,7 @@ Requires: python3-lxml
|
|||||||
Requires: python3-pki >= %{pki_version}
|
Requires: python3-pki >= %{pki_version}
|
||||||
Requires: python3-pyasn1 >= 0.3.2-2
|
Requires: python3-pyasn1 >= 0.3.2-2
|
||||||
Requires: python3-sssdconfig >= %{sssd_version}
|
Requires: python3-sssdconfig >= %{sssd_version}
|
||||||
|
Requires: python3-psutil
|
||||||
Requires: rpm-libs
|
Requires: rpm-libs
|
||||||
# Indirect dependency: use newer urllib3 with TLS 1.3 PHA support
|
# Indirect dependency: use newer urllib3 with TLS 1.3 PHA support
|
||||||
%if 0%{?rhel}
|
%if 0%{?rhel}
|
||||||
@ -443,7 +458,6 @@ BuildArch: noarch
|
|||||||
Requires: %{name}-client-common = %{version}-%{release}
|
Requires: %{name}-client-common = %{version}-%{release}
|
||||||
Requires: httpd >= %{httpd_version}
|
Requires: httpd >= %{httpd_version}
|
||||||
Requires: systemd-units >= 38
|
Requires: systemd-units >= 38
|
||||||
Requires: custodia >= 0.3.1
|
|
||||||
|
|
||||||
Provides: %{alt_name}-server-common = %{version}
|
Provides: %{alt_name}-server-common = %{version}
|
||||||
Conflicts: %{alt_name}-server-common
|
Conflicts: %{alt_name}-server-common
|
||||||
@ -588,7 +602,6 @@ Requires: cifs-utils
|
|||||||
This package provides command-line tools to deploy Samba domain member
|
This package provides command-line tools to deploy Samba domain member
|
||||||
on the machine enrolled into a FreeIPA environment
|
on the machine enrolled into a FreeIPA environment
|
||||||
|
|
||||||
%if ! %{ONLY_CLIENT}
|
|
||||||
%package client-epn
|
%package client-epn
|
||||||
Summary: Tools to configure Expiring Password Notification in IPA
|
Summary: Tools to configure Expiring Password Notification in IPA
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -601,7 +614,6 @@ Requires: %{name}-client = %{version}-%{release}
|
|||||||
%description client-epn
|
%description client-epn
|
||||||
This package provides a service to collect and send expiring password
|
This package provides a service to collect and send expiring password
|
||||||
notifications via email (SMTP).
|
notifications via email (SMTP).
|
||||||
%endif
|
|
||||||
|
|
||||||
%package -n python3-ipaclient
|
%package -n python3-ipaclient
|
||||||
Summary: Python libraries used by IPA client
|
Summary: Python libraries used by IPA client
|
||||||
@ -776,6 +788,7 @@ This package contains tests that verify IPA functionality under Python 3.
|
|||||||
%package selinux
|
%package selinux
|
||||||
Summary: FreeIPA SELinux policy
|
Summary: FreeIPA SELinux policy
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
Requires: %{name}-server = %{version}-%{release}
|
||||||
Requires: selinux-policy-%{selinuxtype}
|
Requires: selinux-policy-%{selinuxtype}
|
||||||
Requires(post): selinux-policy-%{selinuxtype}
|
Requires(post): selinux-policy-%{selinuxtype}
|
||||||
%{?selinux_requires}
|
%{?selinux_requires}
|
||||||
@ -816,8 +829,7 @@ done
|
|||||||
export PATH=/usr/bin:/usr/sbin:$PATH
|
export PATH=/usr/bin:/usr/sbin:$PATH
|
||||||
|
|
||||||
export PYTHON=%{__python3}
|
export PYTHON=%{__python3}
|
||||||
aclocal --force
|
autoreconf -ivf
|
||||||
autoconf --force
|
|
||||||
%configure --with-vendor-suffix=-%{release} \
|
%configure --with-vendor-suffix=-%{release} \
|
||||||
%{enable_server_option} \
|
%{enable_server_option} \
|
||||||
%{with_ipatests_option} \
|
%{with_ipatests_option} \
|
||||||
@ -915,18 +927,6 @@ mkdir -p %{buildroot}%{_sysconfdir}/cron.d
|
|||||||
# ONLY_CLIENT
|
# ONLY_CLIENT
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{ONLY_CLIENT}
|
|
||||||
# Remove ipa-epn parts as we don't have ipa-epn systemd integration generated
|
|
||||||
# for client-only build
|
|
||||||
rm %{buildroot}/%{_sbindir}/ipa-epn
|
|
||||||
rm %{buildroot}/%{_mandir}/man1/ipa-epn.1*
|
|
||||||
rm %{buildroot}/%{_mandir}/man5/epn.conf.5*
|
|
||||||
rm %{buildroot}/%{_unitdir}/ipa-epn.service
|
|
||||||
rm %{buildroot}/%{_unitdir}/ipa-epn.timer
|
|
||||||
rm %{buildroot}/%{_sysconfdir}/ipa/epn.conf
|
|
||||||
rm %{buildroot}/%{_sysconfdir}/ipa/epn/expire_msg.template
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if ! %{ONLY_CLIENT}
|
%if ! %{ONLY_CLIENT}
|
||||||
|
|
||||||
%post server
|
%post server
|
||||||
@ -1037,6 +1037,9 @@ if [ $1 -eq 0 ]; then
|
|||||||
/bin/systemctl reload-or-try-restart oddjobd
|
/bin/systemctl reload-or-try-restart oddjobd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# ONLY_CLIENT
|
||||||
|
%endif
|
||||||
|
|
||||||
%preun client-epn
|
%preun client-epn
|
||||||
%systemd_preun ipa-epn.service
|
%systemd_preun ipa-epn.service
|
||||||
%systemd_preun ipa-epn.timer
|
%systemd_preun ipa-epn.timer
|
||||||
@ -1049,10 +1052,6 @@ fi
|
|||||||
%systemd_post ipa-epn.service
|
%systemd_post ipa-epn.service
|
||||||
%systemd_post ipa-epn.timer
|
%systemd_post ipa-epn.timer
|
||||||
|
|
||||||
# ONLY_CLIENT
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%post client
|
%post client
|
||||||
if [ $1 -gt 1 ] ; then
|
if [ $1 -gt 1 ] ; then
|
||||||
# Has the client been configured?
|
# Has the client been configured?
|
||||||
@ -1076,14 +1075,10 @@ if [ $1 -gt 1 ] ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%{__python3} -c 'from ipaclient.install.client import configure_krb5_snippet; configure_krb5_snippet()' >>/var/log/ipaupgrade.log 2>&1
|
%{__python3} -c 'from ipaclient.install.client import configure_krb5_snippet; configure_krb5_snippet()' >>/var/log/ipaupgrade.log 2>&1
|
||||||
fi
|
SSH_CLIENT_SYSTEM_CONF="/etc/ssh/ssh_config"
|
||||||
|
if [ -f "$SSH_CLIENT_SYSTEM_CONF" ]; then
|
||||||
if [ $restore -ge 2 ]; then
|
sed -E --in-place=.orig 's/^(HostKeyAlgorithms ssh-rsa,ssh-dss)$/# disabled by ipa-client update\n# \1/' "$SSH_CLIENT_SYSTEM_CONF"
|
||||||
%{__python3} -c 'from ipaclient.install.client import update_ipa_nssdb; update_ipa_nssdb()' >>/var/log/ipaupgrade.log 2>&1
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $restore -ge 2 ]; then
|
|
||||||
sed -E --in-place=.orig 's/^(HostKeyAlgorithms ssh-rsa,ssh-dss)$/# disabled by ipa-client update\n# \1/' /etc/ssh/ssh_config
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1110,7 +1105,7 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%triggerin client -- openssh-server
|
%triggerin client -- openssh-server < 8.2
|
||||||
# Has the client been configured?
|
# Has the client been configured?
|
||||||
restore=0
|
restore=0
|
||||||
test -f '/var/lib/ipa-client/sysrestore/sysrestore.index' && restore=$(wc -l '/var/lib/ipa-client/sysrestore/sysrestore.index' | awk '{print $1}')
|
test -f '/var/lib/ipa-client/sysrestore/sysrestore.index' && restore=$(wc -l '/var/lib/ipa-client/sysrestore/sysrestore.index' | awk '{print $1}')
|
||||||
@ -1145,6 +1140,25 @@ if [ -f '/etc/ssh/sshd_config' -a $restore -ge 2 ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
%triggerin client -- openssh-server >= 8.2
|
||||||
|
# Has the client been configured?
|
||||||
|
restore=0
|
||||||
|
test -f '/var/lib/ipa-client/sysrestore/sysrestore.index' && restore=$(wc -l '/var/lib/ipa-client/sysrestore/sysrestore.index' | awk '{print $1}')
|
||||||
|
|
||||||
|
if [ -f '/etc/ssh/sshd_config' -a $restore -ge 2 ]; then
|
||||||
|
# If the snippet already exists, skip
|
||||||
|
if [ ! -f '/etc/ssh/sshd_config.d/04-ipa.conf' ]; then
|
||||||
|
# Take the values from /etc/ssh/sshd_config and put them in 04-ipa.conf
|
||||||
|
grep -E '^(PubkeyAuthentication|KerberosAuthentication|GSSAPIAuthentication|UsePAM|ChallengeResponseAuthentication|AuthorizedKeysCommand|AuthorizedKeysCommandUser)' /etc/ssh/sshd_config 2>/dev/null > /etc/ssh/sshd_config.d/04-ipa.conf
|
||||||
|
# Remove the values from sshd_conf
|
||||||
|
sed -ri '
|
||||||
|
/^(PubkeyAuthentication|KerberosAuthentication|GSSAPIAuthentication|UsePAM|ChallengeResponseAuthentication|AuthorizedKeysCommand|AuthorizedKeysCommandUser)[ \t]/ d
|
||||||
|
' /etc/ssh/sshd_config
|
||||||
|
|
||||||
|
/bin/systemctl condrestart sshd.service 2>&1 || :
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
%if ! %{ONLY_CLIENT}
|
%if ! %{ONLY_CLIENT}
|
||||||
|
|
||||||
@ -1209,7 +1223,6 @@ fi
|
|||||||
%attr(755,root,root) %{plugin_dir}/libipa_uuid.so
|
%attr(755,root,root) %{plugin_dir}/libipa_uuid.so
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_modrdn.so
|
%attr(755,root,root) %{plugin_dir}/libipa_modrdn.so
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_lockout.so
|
%attr(755,root,root) %{plugin_dir}/libipa_lockout.so
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_cldap.so
|
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_dns.so
|
%attr(755,root,root) %{plugin_dir}/libipa_dns.so
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_range_check.so
|
%attr(755,root,root) %{plugin_dir}/libipa_range_check.so
|
||||||
%attr(755,root,root) %{plugin_dir}/libipa_otp_counter.so
|
%attr(755,root,root) %{plugin_dir}/libipa_otp_counter.so
|
||||||
@ -1266,6 +1279,7 @@ fi
|
|||||||
%{_usr}/share/ipa/kdcproxy.wsgi
|
%{_usr}/share/ipa/kdcproxy.wsgi
|
||||||
%{_usr}/share/ipa/ipaca*.ini
|
%{_usr}/share/ipa/ipaca*.ini
|
||||||
%{_usr}/share/ipa/*.ldif
|
%{_usr}/share/ipa/*.ldif
|
||||||
|
%exclude %{_datadir}/ipa/ipa-cldap-conf.ldif
|
||||||
%{_usr}/share/ipa/*.uldif
|
%{_usr}/share/ipa/*.uldif
|
||||||
%{_usr}/share/ipa/*.template
|
%{_usr}/share/ipa/*.template
|
||||||
%dir %{_usr}/share/ipa/advise
|
%dir %{_usr}/share/ipa/advise
|
||||||
@ -1357,6 +1371,8 @@ fi
|
|||||||
%{_sbindir}/ipa-adtrust-install
|
%{_sbindir}/ipa-adtrust-install
|
||||||
%{_usr}/share/ipa/smb.conf.empty
|
%{_usr}/share/ipa/smb.conf.empty
|
||||||
%attr(755,root,root) %{_libdir}/samba/pdb/ipasam.so
|
%attr(755,root,root) %{_libdir}/samba/pdb/ipasam.so
|
||||||
|
%attr(755,root,root) %{plugin_dir}/libipa_cldap.so
|
||||||
|
%{_datadir}/ipa/ipa-cldap-conf.ldif
|
||||||
%{_mandir}/man1/ipa-adtrust-install.1*
|
%{_mandir}/man1/ipa-adtrust-install.1*
|
||||||
%ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
|
%ghost %{_libdir}/krb5/plugins/libkrb5/winbind_krb5_locator.so
|
||||||
%{_sysconfdir}/dbus-1/system.d/oddjob-ipa-trust.conf
|
%{_sysconfdir}/dbus-1/system.d/oddjob-ipa-trust.conf
|
||||||
@ -1393,7 +1409,6 @@ fi
|
|||||||
%{_sbindir}/ipa-client-samba
|
%{_sbindir}/ipa-client-samba
|
||||||
%{_mandir}/man1/ipa-client-samba.1*
|
%{_mandir}/man1/ipa-client-samba.1*
|
||||||
|
|
||||||
%if ! %{ONLY_CLIENT}
|
|
||||||
%files client-epn
|
%files client-epn
|
||||||
%doc README.md Contributors.txt
|
%doc README.md Contributors.txt
|
||||||
%dir %{_sysconfdir}/ipa/epn
|
%dir %{_sysconfdir}/ipa/epn
|
||||||
@ -1404,8 +1419,7 @@ fi
|
|||||||
%attr(644,root,root) %{_unitdir}/ipa-epn.service
|
%attr(644,root,root) %{_unitdir}/ipa-epn.service
|
||||||
%attr(644,root,root) %{_unitdir}/ipa-epn.timer
|
%attr(644,root,root) %{_unitdir}/ipa-epn.timer
|
||||||
%attr(600,root,root) %config(noreplace) %{_sysconfdir}/ipa/epn.conf
|
%attr(600,root,root) %config(noreplace) %{_sysconfdir}/ipa/epn.conf
|
||||||
%attr(644,root,root) %{_sysconfdir}/ipa/epn/expire_msg.template
|
%attr(644,root,root) %config(noreplace) %{_sysconfdir}/ipa/epn/expire_msg.template
|
||||||
%endif
|
|
||||||
|
|
||||||
%files -n python3-ipaclient
|
%files -n python3-ipaclient
|
||||||
%doc README.md Contributors.txt
|
%doc README.md Contributors.txt
|
||||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
|||||||
SHA512 (freeipa-4.8.9.tar.gz) = 5db9056b63316023e2d94db1400e14d90b1915e129a01a3518d2487ef4461af1b6fa596da1a44ff36ffa6130d03c0f9d9c04d97ac73164d3bd24ebf06afa7451
|
SHA512 (freeipa-4.8.10.tar.gz) = a14608cd2f8b50f1404df4761f1f72f1c250ea54257e8f072f488c1684a5f01dba060c67d17e11ab1237f65e041d9fca0eb4d0b9d1804cedb33a957c9ecfd954
|
||||||
SHA512 (freeipa-4.8.9.tar.gz.asc) = dcd4ec94394fe44b3737d7b39a36a5057a152352a290dd78c7f64fc48dfe06a6cc613c6f75f9d1b2b32289b873ee81533096355b8f194425506f4a9b1cf3e879
|
SHA512 (freeipa-4.8.10.tar.gz.asc) = 7d188fd8ce742e4900c8b359e23406efda955578930d7d800fca96f03b461162bd2799e3915db7968c325c9c24712cfc108064e93dc3d6dd97b77968390e0e04
|
||||||
|
Loading…
Reference in New Issue
Block a user