forked from pool/slurm
Accepting request 724412 from network:cluster
- Fix logic of slurm-munge recommends: slurm-munge requires munge already, so if we have munge installed we recommend slurm-munge as the authentication when installing slurm or slurm-node. - Updated to 18.08.8 for fixing (CVE-2019-12838, bsc#1140709, jsc#SLE-7341, jsc#SLE-7342) OBS-URL: https://build.opensuse.org/request/show/724412 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slurm?expand=0&rev=31
This commit is contained in:
commit
a65036f38d
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 17 14:20:35 UTC 2019 - Egbert Eich <eich@suse.com>
|
||||
|
||||
- Fix logic of slurm-munge recommends: slurm-munge requires munge
|
||||
already, so if we have munge installed we recommend slurm-munge
|
||||
as the authentication when installing slurm or slurm-node.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 14 13:28:13 UTC 2019 - Egbert Eich <eich@suse.com>
|
||||
|
||||
@ -12,7 +19,8 @@ Fri Jul 12 09:04:55 UTC 2019 - Christian Goll <cgoll@suse.com>
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 11 10:57:52 UTC 2019 - Christian Goll <cgoll@suse.com>
|
||||
|
||||
- Updated to 18.08.8 for fixing CVE-2019-12838 and (bsc#1140709)
|
||||
- Updated to 18.08.8 for fixing (CVE-2019-12838, bsc#1140709, jsc#SLE-7341,
|
||||
jsc#SLE-7342)
|
||||
* Update "xauth list" to use the same 10000ms timeout as the other xauth
|
||||
commands.
|
||||
* Fix issue in gres code to handle a gres cnt of 0.
|
||||
|
17
slurm.spec
17
slurm.spec
@ -116,13 +116,14 @@ Patch12: pam_slurm_adopt-use-uid-to-determine-whether-root-is.patch
|
||||
|
||||
Requires: %{name}-config = %{version}
|
||||
%if 0%{?have_boolean_deps}
|
||||
Requires: (munge if %{name}-munge)
|
||||
Recommends: (%{name}-munge = %version if munge)
|
||||
%else
|
||||
Requires: munge
|
||||
Recommends: %{name}-munge = %version
|
||||
%endif
|
||||
Requires(pre): %{name}-node = %{version}
|
||||
Recommends: %{name}-doc = %{version}
|
||||
Recommends: %{name}-config-man = %{version}
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gtk2-devel
|
||||
@ -279,7 +280,11 @@ Group: Productivity/Clustering/Computing
|
||||
Requires: %{name}-config = %{version}
|
||||
Requires: %{name}-plugins = %{version}
|
||||
Requires: %{name}-sql = %{version}
|
||||
Recommends: %{name}-munge = %{version}
|
||||
%if 0%{?have_boolean_deps}
|
||||
Recommends: (%{name}-munge = %version if munge)
|
||||
%else
|
||||
Recommends: %{name}-munge = %version
|
||||
%endif
|
||||
%if 0%{?with_systemd}
|
||||
%{?systemd_requires}
|
||||
%else
|
||||
@ -394,7 +399,11 @@ Summary: Minimal slurm node
|
||||
Group: Productivity/Clustering/Computing
|
||||
Requires: %{name}-config = %{version}
|
||||
Requires: %{name}-plugins = %{version}
|
||||
Recommends: %{name}-munge
|
||||
%if 0%{?have_boolean_deps}
|
||||
Recommends: (%{name}-munge = %version if munge)
|
||||
%else
|
||||
Recommends: %{name}-munge = %version
|
||||
%endif
|
||||
%if 0%{?with_systemd}
|
||||
%{?systemd_requires}
|
||||
%else
|
||||
|
Loading…
Reference in New Issue
Block a user