Skip to content
Snippets Groups Projects
Commit 6189ae07 authored by James Simmons's avatar James Simmons Committed by Oleg Drokin
Browse files

LU-10752 build: fix rpm packaging issues for gss


Lustre can create rpms in two ways. One is with make rpm and the
other is using the actual source rpm that is provided. Their are
several issues with how GSS is handled with rpm packaging.

First problem is that you can ./configure --disable-gss which has
never been handled. Secondly if you do configure with disable-gss
it is still possible to have the option enable-gss-keyring set to
yes. The reason it was never seen before is due to everything
being treated with the keyring option. Now if the user sets
enable-gss to no then enable-gss-keyring will also be set to no
even if the user tries to set it to yes. This was done by properly
setting $enable_gss and $enable_gss_keyring in lustre-core.m4.
In the spec file create the bcond gss to handle the gss only case
and we turn on gss if gss_keyring is true. Move lgssc.conf under
the with_gss_keyring bcond which is only needed for server builds
along side lsvcgss.

It is impossible to know if it can build due to the spec file not
properly handling build dependencies for GSS and not knowing if
the kernel is too new for GSS. So the user has to provide the
options --with gss and / or --with gss-keyring to rpmbuild. If
the user only provides gss-keyring option to rpmbuild make sure
it enables gss as well. That is handled in the spec file.

For the case of make rpms fix it up so if gss-keyring is enabled
then by default the core gss handling is enabled. Also handle the
long ignored enable-gss case.

Test-Parameters: trivial

Change-Id: Ieed9df98a27bd6e77504486762d6e60ddca5a916
Signed-off-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Reviewed-on: https://review.whamcloud.com/31757


Tested-by: Jenkins
Tested-by: default avatarMaloo <hpdd-maloo@intel.com>
Reviewed-by: default avatarSebastien Buisson <sbuisson@ddn.com>
Reviewed-by: default avatarElena Gryaznova <c17455@cray.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
parent 89228074
No related branches found
No related tags found
No related merge requests found
...@@ -530,8 +530,11 @@ fi ...@@ -530,8 +530,11 @@ fi
if test x$enable_zfs = xyes ; then if test x$enable_zfs = xyes ; then
RPMBINARGS="$RPMBINARGS --with zfs" RPMBINARGS="$RPMBINARGS --with zfs"
fi fi
if test x$enable_gss_keyring == xno ; then if test x$enable_gss_keyring = xyes ; then
RPMBINARGS="$RPMBINARGS --without gss_keyring" RPMBINARGS="$RPMBINARGS --with gss_keyring --with gss"
fi
if test x$enable_gss = xyes ; then
RPMBINARGS="$RPMBINARGS --with gss"
fi fi
if test x$enable_iokit != xyes ; then if test x$enable_iokit != xyes ; then
RPMBINARGS="$RPMBINARGS --without lustre_iokit" RPMBINARGS="$RPMBINARGS --without lustre_iokit"
......
...@@ -9,12 +9,21 @@ ...@@ -9,12 +9,21 @@
%bcond_without lustre_iokit %bcond_without lustre_iokit
%bcond_without lustre_modules %bcond_without lustre_modules
%bcond_with snmp %bcond_with snmp
%bcond_without gss_keyring %bcond_with gss
%bcond_with gss_keyring
%bcond_without manpages %bcond_without manpages
%bcond_without shared %bcond_without shared
%bcond_without static %bcond_without static
%bcond_with systemd %bcond_with systemd
# By default both gss and gss keyring are disabled.
# gss keyring requires the gss core. If the builder
# request gss_keyring we must enable gss core even if
# the builder attempts to disable gss.
%if %{with gss_keyring}
%define with_gss
%endif
%if %{without servers} %if %{without servers}
# --without servers overrides --with {ldiskfs|zfs} # --without servers overrides --with {ldiskfs|zfs}
# so undefine the internal variables set by bcond_* # so undefine the internal variables set by bcond_*
...@@ -313,6 +322,7 @@ fi ...@@ -313,6 +322,7 @@ fi
%{!?with_servers:--disable-server} \ %{!?with_servers:--disable-server} \
%{!?with_zfs:--without-zfs} \ %{!?with_zfs:--without-zfs} \
%{!?with_snmp:--disable-snmp} \ %{!?with_snmp:--disable-snmp} \
%{!?with_gss:--disable-gss} \
%{!?with_gss_keyring:--disable-gss-keyring} \ %{!?with_gss_keyring:--disable-gss-keyring} \
%{!?with_manpages:--disable-manpages} \ %{!?with_manpages:--disable-manpages} \
%{!?with_systemd:--with-systemdsystemunitdir=no} \ %{!?with_systemd:--with-systemdsystemunitdir=no} \
...@@ -374,6 +384,7 @@ echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files ...@@ -374,6 +384,7 @@ echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
%if %{with gss_keyring} %if %{with gss_keyring}
echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
%endif %endif
%endif %endif
...@@ -382,11 +393,6 @@ echo '%{_sysconfdir}/init.d/lnet' >>lustre.files ...@@ -382,11 +393,6 @@ echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
%endif %endif
%endif %endif
CONFIGURE_ARGS="%{?configure_args}"
if [ -z "$(echo $CONFIGURE_ARGS | grep "\-\-disable\-gss\-keyring")" ]; then
echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
fi
%if %{with servers} %if %{with servers}
mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/ mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/ install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
......
...@@ -327,10 +327,13 @@ AS_IF([test "x$enable_gss" != xno], [ ...@@ -327,10 +327,13 @@ AS_IF([test "x$enable_gss" != xno], [
AC_DEFINE([HAVE_GSS], [1], [Define this is if you enable gss]) AC_DEFINE([HAVE_GSS], [1], [Define this is if you enable gss])
enable_gss="yes" enable_gss="yes"
], [ ], [
enable_gss_keyring="no"
enable_gss="no" enable_gss="no"
]) ])
enable_ssk=$enable_gss enable_ssk=$enable_gss
], [
enable_gss_keyring="no"
]) ])
]) # LC_CONFIG_GSS ]) # LC_CONFIG_GSS
......
...@@ -57,14 +57,11 @@ sysconfigdir = $(sysconfdir)/sysconfig ...@@ -57,14 +57,11 @@ sysconfigdir = $(sysconfdir)/sysconfig
sysconfig_DATA = lustre sysconfig_DATA = lustre
if GSS_KEYRING if GSS_KEYRING
sysconfig_DATA += lsvcgss sysconfig_DATA += lsvcgss
requestkeydir = $(sysconfdir)/request-key.d
requestkey_DATA = lgssc.conf
endif endif
endif endif
endif endif
modprobedir = $(sysconfdir)/modprobe.d modprobedir = $(sysconfdir)/modprobe.d
modprobe_DATA = ko2iblnd.conf modprobe_DATA = ko2iblnd.conf
if GSS_KEYRING
requestkeydir = $(sysconfdir)/request-key.d
requestkey_DATA = lgssc.conf
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment