Your message dated Tue, 10 Apr 2012 13:21:50 +0000
with message-id <[email protected]>
and subject line Bug#663878: fixed in slurm-llnl 2.3.4-2
has caused the Debian Bug report #663878,
regarding slurm-llnl: Hardening flags missing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
663878: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663878
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: slurm-llnl
Version: 2.3.3-2
Severity: important
Tags: patch

Dear Maintainer,

The hardening flags are partially missing because the build
system ignores them in some places. For more hardening
information please have a look at [1], [2] and [3].

The attached patch fixes the issue, but I'm not sure if the *FLAG
-> AM_*FLAG change is the best way to handle this. Other
Makefile.am handle it this way and it results in the correct
flags, but maybe there is a better way. If possible this patch
should be send to upstream (*.am only).

To check if all flags were correctly enabled you can use
`hardening-check` from the hardening-includes package and check
the build log (hardening-check doesn't catch everything):

    $ hardening-check /usr/sbin/slurmstepd /usr/sbin/slurmd /usr/sbin/slurmctld 
...
    /usr/sbin/slurmstepd:
     Position Independent Executable: no, normal executable!
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: no not found!
    /usr/sbin/slurmd:
     Position Independent Executable: no, normal executable!
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: no not found!
    /usr/sbin/slurmctld:
     Position Independent Executable: no, normal executable!
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: no not found!
    ...

(Position Independent Executable and Immediate binding is not
enabled by default.)

Use find -type f \( -executable -o -name \*.so\* \) -exec
hardening-check {} + on the build result to check all files.

Regards,
Simon

[1]: https://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
[2]: https://wiki.debian.org/HardeningWalkthrough
[3]: https://wiki.debian.org/Hardening
-- 
+ privacy is necessary
+ using gnupg http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9
Description: Use build flags from environment (dpkg-buildflags).
 Necessary for hardening flags.
Author: Simon Ruderich <[email protected]>
Last-Update: 2012-03-14

Index: slurm-llnl-2.3.3/contribs/perlapi/libslurmdb/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/perlapi/libslurmdb/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/perlapi/libslurmdb/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -502,15 +502,15 @@
 @HAVE_AIX_TRUE@	if [ ! -f Makefile ]; then \
 @HAVE_AIX_TRUE@		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT=; \
 @HAVE_AIX_TRUE@	fi && \
-@HAVE_AIX_TRUE@	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-@HAVE_AIX_TRUE@	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+@HAVE_AIX_TRUE@	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+@HAVE_AIX_TRUE@	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 @HAVE_AIX_TRUE@	cd ..;
 @HAVE_AIX_FALSE@	@cd $(perl_dir) && \
 @HAVE_AIX_FALSE@	if [ ! -f Makefile ]; then \
 @HAVE_AIX_FALSE@		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT=; \
 @HAVE_AIX_FALSE@	fi && \
-@HAVE_AIX_FALSE@	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-@HAVE_AIX_FALSE@	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+@HAVE_AIX_FALSE@	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+@HAVE_AIX_FALSE@	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 @HAVE_AIX_FALSE@	cd ..;
 
 install-exec-local:
Index: slurm-llnl-2.3.3/contribs/perlapi/libslurmdb/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/perlapi/libslurmdb/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/perlapi/libslurmdb/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -34,16 +34,16 @@
 	if [ ! -f Makefile ]; then \
 		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT=; \
 	fi && \
-	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 	cd ..;
 else
 	@cd $(perl_dir) && \
 	if [ ! -f Makefile ]; then \
 		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT=; \
 	fi && \
-	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 	cd ..;
 endif
 
Index: slurm-llnl-2.3.3/src/common/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/common/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/common/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -227,7 +227,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DGRES_CONFIG_FILE=\"$(sysconfdir)/gres.conf\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DGRES_CONFIG_FILE=\"$(sysconfdir)/gres.conf\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/common/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/common/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/common/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -8,7 +8,7 @@
 # only be 1 address per symbol.  If you link to the libcommon.la in
 # a plugin you will get 2 addresses for one symbol which could lead to problems.
 
-CPPFLAGS = -DGRES_CONFIG_FILE=\"$(sysconfdir)/gres.conf\"
+AM_CPPFLAGS = -DGRES_CONFIG_FILE=\"$(sysconfdir)/gres.conf\"
 AUTOMAKE_OPTIONS = foreign
 
 if HAVE_UNSETENV
Index: slurm-llnl-2.3.3/contribs/pam/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/pam/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/pam/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -161,7 +161,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -fPIC
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -fPIC
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/contribs/pam/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/pam/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/pam/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -4,7 +4,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CPPFLAGS = -fPIC
+AM_CPPFLAGS = -fPIC
 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
 PLUGIN_FLAGS = -module --export-dynamic -avoid-version
 
Index: slurm-llnl-2.3.3/contribs/phpext/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/phpext/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/phpext/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -283,8 +283,8 @@
 AUTOMAKE_OPTIONS = foreign
 php_dir = slurm_php
 phpize = /usr/bin/phpize
-@HAVE_AIX_FALSE@config_line = CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="-g -static $(CFLAGS)" CFLAGS="$(CFLAGS)" ./configure
-@HAVE_AIX_TRUE@config_line = CC="$(CC)" CCFLAGS="-g -static $(CFLAGS)" ./configure
+@HAVE_AIX_FALSE@config_line = CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="-g -static $(CFLAGS)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" ./configure
+@HAVE_AIX_TRUE@config_line = CC="$(CC)" CCFLAGS="-g -static $(CFLAGS) $(CPPFLAGS)" ./configure
 all: all-am
 
 .SUFFIXES:
Index: slurm-llnl-2.3.3/contribs/phpext/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/phpext/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/phpext/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -3,9 +3,9 @@
 phpize=/usr/bin/phpize
 
 if HAVE_AIX
-config_line=CC="$(CC)" CCFLAGS="-g -static $(CFLAGS)" ./configure
+config_line=CC="$(CC)" CCFLAGS="-g -static $(CFLAGS) $(CPPFLAGS)" ./configure
 else
-config_line=CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="-g -static $(CFLAGS)" CFLAGS="$(CFLAGS)" ./configure
+config_line=CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="-g -static $(CFLAGS)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" ./configure
 endif
 
 all-local:
Index: slurm-llnl-2.3.3/src/slurmd/slurmd/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/slurmd/slurmd/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/slurmd/slurmd/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -139,7 +139,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DLIBSLURM_SO=\"$(libdir)/libslurm.so\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DLIBSLURM_SO=\"$(libdir)/libslurm.so\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/slurmd/slurmd/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/slurmd/slurmd/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/slurmd/slurmd/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -5,7 +5,7 @@
 
 sbin_PROGRAMS = slurmd
 
-CPPFLAGS =  -DLIBSLURM_SO=\"$(libdir)/libslurm.so\"
+AM_CPPFLAGS = -DLIBSLURM_SO=\"$(libdir)/libslurm.so\"
 INCLUDES = -I$(top_srcdir)
 
 slurmd_LDADD = 					   \
Index: slurm-llnl-2.3.3/src/plugins/switch/federation/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/switch/federation/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/switch/federation/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -163,7 +163,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DFEDERATION_CONFIG_FILE=\"$(sysconfdir)/federation.conf\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DFEDERATION_CONFIG_FILE=\"$(sysconfdir)/federation.conf\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/plugins/switch/federation/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/switch/federation/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/switch/federation/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -1,6 +1,6 @@
 # Makefile for switch/federation plugin
 
-CPPFLAGS =  -DFEDERATION_CONFIG_FILE=\"$(sysconfdir)/federation.conf\"
+AM_CPPFLAGS = -DFEDERATION_CONFIG_FILE=\"$(sysconfdir)/federation.conf\"
 AUTOMAKE_OPTIONS = foreign
 
 if HAVE_FEDERATION
Index: slurm-llnl-2.3.3/src/plugins/topology/tree/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/topology/tree/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/topology/tree/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -154,7 +154,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DTOPOLOGY_CONFIG_FILE=\"$(sysconfdir)/topology.conf\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DTOPOLOGY_CONFIG_FILE=\"$(sysconfdir)/topology.conf\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/plugins/topology/tree/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/topology/tree/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/topology/tree/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -1,6 +1,6 @@
 # Makefile for topology/tree plugin
 
-CPPFLAGS =  -DTOPOLOGY_CONFIG_FILE=\"$(sysconfdir)/topology.conf\"
+AM_CPPFLAGS = -DTOPOLOGY_CONFIG_FILE=\"$(sysconfdir)/topology.conf\"
 AUTOMAKE_OPTIONS = foreign
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
Index: slurm-llnl-2.3.3/src/plugins/select/cray/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/select/cray/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/select/cray/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -201,7 +201,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DCRAY_CONFIG_FILE=\"$(sysconfdir)/cray.conf\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DCRAY_CONFIG_FILE=\"$(sysconfdir)/cray.conf\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/plugins/select/cray/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/select/cray/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/select/cray/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CPPFLAGS = -DCRAY_CONFIG_FILE=\"$(sysconfdir)/cray.conf\"
+AM_CPPFLAGS = -DCRAY_CONFIG_FILE=\"$(sysconfdir)/cray.conf\"
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/src/plugins/select/bluegene/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/select/bluegene/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/select/bluegene/Makefile.in	2012-03-14 18:41:37.924853185 +0100
@@ -296,7 +296,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = -DBLUEGENE_CONFIG_FILE=\"$(sysconfdir)/bluegene.conf\"
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = -DBLUEGENE_CONFIG_FILE=\"$(sysconfdir)/bluegene.conf\"
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/plugins/select/bluegene/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/select/bluegene/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/select/bluegene/Makefile.am	2012-03-14 18:41:37.924853185 +0100
@@ -3,7 +3,7 @@
 AUTOMAKE_OPTIONS = foreign
 CLEANFILES = core.*
 
-CPPFLAGS = -DBLUEGENE_CONFIG_FILE=\"$(sysconfdir)/bluegene.conf\"
+AM_CPPFLAGS = -DBLUEGENE_CONFIG_FILE=\"$(sysconfdir)/bluegene.conf\"
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic -lm
 
Index: slurm-llnl-2.3.3/src/plugins/jobcomp/pgsql/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/jobcomp/pgsql/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/jobcomp/pgsql/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -163,7 +163,8 @@
 CFLAGS = @CFLAGS@
 CMD_LDFLAGS = @CMD_LDFLAGS@
 CPP = @CPP@
-CPPFLAGS = $(PGSQL_CFLAGS)
+CPPFLAGS = @CPPFLAGS@
+AM_CPPFLAGS = $(PGSQL_CFLAGS)
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
Index: slurm-llnl-2.3.3/src/plugins/jobcomp/pgsql/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/jobcomp/pgsql/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/jobcomp/pgsql/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -1,6 +1,6 @@
 # Makefile for jobcomp/pgsql plugin
 
-CPPFLAGS = $(PGSQL_CFLAGS)
+AM_CPPFLAGS = $(PGSQL_CFLAGS)
 AUTOMAKE_OPTIONS = foreign
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
Index: slurm-llnl-2.3.3/src/plugins/sched/backfill/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/backfill/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/backfill/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -158,7 +158,8 @@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = -fexceptions
+CXXFLAGS = @CXXFLAGS@
+AM_CXXFLAGS = -fexceptions
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
Index: slurm-llnl-2.3.3/src/plugins/sched/backfill/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/backfill/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/backfill/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CXXFLAGS = -fexceptions
+AM_CXXFLAGS = -fexceptions
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/src/plugins/sched/wiki/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/wiki/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/wiki/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -160,7 +160,8 @@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = -fexceptions
+CXXFLAGS = @CXXFLAGS@
+AM_CXXFLAGS = -fexceptions
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
Index: slurm-llnl-2.3.3/src/plugins/sched/wiki/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/wiki/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/wiki/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CXXFLAGS = -fexceptions
+AM_CXXFLAGS = -fexceptions
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/src/plugins/sched/wiki2/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/wiki2/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/wiki2/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -163,7 +163,8 @@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = -fexceptions
+CXXFLAGS = @CXXFLAGS@
+AM_CXXFLAGS = -fexceptions
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
Index: slurm-llnl-2.3.3/src/plugins/sched/wiki2/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/wiki2/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/wiki2/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CXXFLAGS = -fexceptions
+AM_CXXFLAGS = -fexceptions
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/src/plugins/sched/hold/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/hold/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/hold/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -158,7 +158,8 @@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = -fexceptions
+CXXFLAGS = @CXXFLAGS@
+AM_CXXFLAGS = -fexceptions
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
Index: slurm-llnl-2.3.3/src/plugins/sched/hold/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/hold/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/hold/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CXXFLAGS = -fexceptions
+AM_CXXFLAGS = -fexceptions
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/src/plugins/sched/builtin/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/builtin/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/builtin/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -158,7 +158,8 @@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = -fexceptions
+CXXFLAGS = @CXXFLAGS@
+AM_CXXFLAGS = -fexceptions
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
Index: slurm-llnl-2.3.3/src/plugins/sched/builtin/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/src/plugins/sched/builtin/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/src/plugins/sched/builtin/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-CXXFLAGS = -fexceptions
+AM_CXXFLAGS = -fexceptions
 
 PLUGIN_FLAGS = -module -avoid-version --export-dynamic
 
Index: slurm-llnl-2.3.3/contribs/perlapi/libslurm/Makefile.in
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/perlapi/libslurm/Makefile.in	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/perlapi/libslurm/Makefile.in	2012-03-14 18:41:37.928853236 +0100
@@ -552,15 +552,15 @@
 @HAVE_AIX_TRUE@	if [ ! -f Makefile ]; then \
 @HAVE_AIX_TRUE@		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT= ; \
 @HAVE_AIX_TRUE@	fi && \
-@HAVE_AIX_TRUE@	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-@HAVE_AIX_TRUE@	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+@HAVE_AIX_TRUE@	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+@HAVE_AIX_TRUE@	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 @HAVE_AIX_TRUE@	cd ..;
 @HAVE_AIX_FALSE@	@cd $(perl_dir) && \
 @HAVE_AIX_FALSE@	if [ ! -f Makefile ]; then \
 @HAVE_AIX_FALSE@		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT= ; \
 @HAVE_AIX_FALSE@	fi && \
-@HAVE_AIX_FALSE@	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-@HAVE_AIX_FALSE@	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+@HAVE_AIX_FALSE@	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+@HAVE_AIX_FALSE@	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 @HAVE_AIX_FALSE@	cd ..;
 
 install-exec-local:
Index: slurm-llnl-2.3.3/contribs/perlapi/libslurm/Makefile.am
===================================================================
--- slurm-llnl-2.3.3.orig/contribs/perlapi/libslurm/Makefile.am	2012-03-14 18:41:33.112853221 +0100
+++ slurm-llnl-2.3.3/contribs/perlapi/libslurm/Makefile.am	2012-03-14 18:41:37.928853236 +0100
@@ -84,16 +84,16 @@
 	if [ ! -f Makefile ]; then \
 		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT= ; \
 	fi && \
-	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+	($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+	 $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 	cd ..;
 else
 	@cd $(perl_dir) && \
 	if [ ! -f Makefile ]; then \
 		$(perlpath) Makefile.PL $(PERL_MM_PARAMS) prefix=${prefix} INSTALL_BASE= PERL_MM_OPT= ; \
 	fi && \
-	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
-	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
+	($(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS) || \
+	 $(MAKE) CC="$(CC)" LD="$(CC) $(CFLAGS) $(LDFLAGS)" CCFLAGS="$(PERL_CFLAGS) -g -static $(CFLAGS) $(CPPFLAGS)" $(PERL_EXTRA_OPTS)) && \
 	cd ..;
 endif
 

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: slurm-llnl
Source-Version: 2.3.4-2

We believe that the bug you reported is fixed in the latest version of
slurm-llnl, which is due to be installed in the Debian FTP archive:

libpam-slurm_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libpam-slurm_2.3.4-2_i386.deb
libpmi0-dev_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libpmi0-dev_2.3.4-2_i386.deb
libpmi0_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libpmi0_2.3.4-2_i386.deb
libslurm-dev_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurm-dev_2.3.4-2_i386.deb
libslurm-perl_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurm-perl_2.3.4-2_i386.deb
libslurm23_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurm23_2.3.4-2_i386.deb
libslurmdb-dev_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurmdb-dev_2.3.4-2_i386.deb
libslurmdb-perl_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurmdb-perl_2.3.4-2_i386.deb
libslurmdb23_2.3.4-2_i386.deb
  to main/s/slurm-llnl/libslurmdb23_2.3.4-2_i386.deb
slurm-llnl-basic-plugins-dev_2.3.4-2_i386.deb
  to main/s/slurm-llnl/slurm-llnl-basic-plugins-dev_2.3.4-2_i386.deb
slurm-llnl-basic-plugins_2.3.4-2_i386.deb
  to main/s/slurm-llnl/slurm-llnl-basic-plugins_2.3.4-2_i386.deb
slurm-llnl-doc_2.3.4-2_all.deb
  to main/s/slurm-llnl/slurm-llnl-doc_2.3.4-2_all.deb
slurm-llnl-slurmdbd_2.3.4-2_i386.deb
  to main/s/slurm-llnl/slurm-llnl-slurmdbd_2.3.4-2_i386.deb
slurm-llnl-sview_2.3.4-2_i386.deb
  to main/s/slurm-llnl/slurm-llnl-sview_2.3.4-2_i386.deb
slurm-llnl-torque_2.3.4-2_all.deb
  to main/s/slurm-llnl/slurm-llnl-torque_2.3.4-2_all.deb
slurm-llnl_2.3.4-2.debian.tar.gz
  to main/s/slurm-llnl/slurm-llnl_2.3.4-2.debian.tar.gz
slurm-llnl_2.3.4-2.dsc
  to main/s/slurm-llnl/slurm-llnl_2.3.4-2.dsc
slurm-llnl_2.3.4-2_i386.deb
  to main/s/slurm-llnl/slurm-llnl_2.3.4-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gennaro Oliva <[email protected]> (supplier of updated slurm-llnl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 05 Apr 2012 12:42:35 +0200
Source: slurm-llnl
Binary: slurm-llnl libslurmdb23 libslurm23 libpmi0 libslurm-dev libslurmdb-dev 
libpmi0-dev slurm-llnl-doc slurm-llnl-basic-plugins 
slurm-llnl-basic-plugins-dev slurm-llnl-sview slurm-llnl-slurmdbd libslurm-perl 
libslurmdb-perl slurm-llnl-torque libpam-slurm
Architecture: source i386 all
Version: 2.3.4-2
Distribution: unstable
Urgency: low
Maintainer: Gennaro Oliva <[email protected]>
Changed-By: Gennaro Oliva <[email protected]>
Description: 
 libpam-slurm - PAM module to authenticate using the SLURM resource manager
 libpmi0    - SLURM PMI library implementation
 libpmi0-dev - SLURM PMI library implementation development files
 libslurm-dev - SLURM development files
 libslurm-perl - Perl API for SLURM
 libslurm23 - Runtime library files for SLURM
 libslurmdb-dev - SLURM DataBase Daemon development files
 libslurmdb-perl - Perl API for the SLURM database
 libslurmdb23 - Runtime library files for the SLURM DataBase Daemon
 slurm-llnl - Simple Linux Utility for Resource Management
 slurm-llnl-basic-plugins - SLURM basic plugins
 slurm-llnl-basic-plugins-dev - SLURM basic plugins development files
 slurm-llnl-doc - SLURM docmentation
 slurm-llnl-slurmdbd - Secure enterprise-wide interface to a database for SLURM
 slurm-llnl-sview - GUI to view and modify SLURM state
 slurm-llnl-torque - Torque compatibility wrappers for SLURM
Closes: 663878 667537
Changes: 
 slurm-llnl (2.3.4-2) unstable; urgency=low
 .
   * Avoiding deluser to fail on purge (Closes: #667537)
   * Hardening flags added (Closes: #663878), thanks to Simon Ruderich
     for the patch
Checksums-Sha1: 
 bde7b554d20f91897d158104cff500813e67568a 2688 slurm-llnl_2.3.4-2.dsc
 399cb0396adb88d4e7c7c050864238bd601d142f 52290 slurm-llnl_2.3.4-2.debian.tar.gz
 e9f37ed04eb7dbebb9b96e71b05ed618b8ee0515 9579714 slurm-llnl_2.3.4-2_i386.deb
 0b38c84ad8c14ddde23fe889a789df9a32981621 466886 libslurmdb23_2.3.4-2_i386.deb
 4490c6d782ddbbee018b934acf9f8e7b1813ed50 459858 libslurm23_2.3.4-2_i386.deb
 b865481c420da38dde06ef60bef26a732eb39b20 21772 libpmi0_2.3.4-2_i386.deb
 74e234f802c82a3d520ce3e472d7e4bfda37a926 692204 libslurm-dev_2.3.4-2_i386.deb
 d9731f390271917f41cfa751c644a2ba70f2ac38 622638 libslurmdb-dev_2.3.4-2_i386.deb
 50a99c03c894be1426e6cf3c8520da2c1ea96d6c 26420 libpmi0-dev_2.3.4-2_i386.deb
 367ed950a715c797b9c0e6f9e6c1bb6837a5e22c 567052 
slurm-llnl-basic-plugins_2.3.4-2_i386.deb
 f7a42177b16ab3fa74999446d7883d03eedde448 2199254 
slurm-llnl-basic-plugins-dev_2.3.4-2_i386.deb
 29b1e384643e869aea38c67ade0edeb654471f7b 591348 
slurm-llnl-sview_2.3.4-2_i386.deb
 6f4076ef00e9e8efdbc8641a5c908d338e65d718 1062144 
slurm-llnl-slurmdbd_2.3.4-2_i386.deb
 01bbf5bc33daba3d972e40e7b2ba5e3d6fc7b640 204564 libslurm-perl_2.3.4-2_i386.deb
 85f2591481c13f1d70b52d6501e3209b49f0ebf1 38570 libslurmdb-perl_2.3.4-2_i386.deb
 555442d21c80bc7ca835bb26cfb54c1b43648c48 16960 libpam-slurm_2.3.4-2_i386.deb
 d2cc8886bf86788f8969023b8fde5ca90d0828c2 845690 slurm-llnl-doc_2.3.4-2_all.deb
 10ab9d363351cf854336c67e04c76da323946c0d 36822 
slurm-llnl-torque_2.3.4-2_all.deb
Checksums-Sha256: 
 3a6db01dd77acf80815105c1de44eb4f691fc603af5a3513c381e550b64c0e50 2688 
slurm-llnl_2.3.4-2.dsc
 666ccc7e4bc688a57618d6e8115761e8ac75b182c317c27d064524eb28ba69fb 52290 
slurm-llnl_2.3.4-2.debian.tar.gz
 75fe71b1fd1e5ae55591ce39e9c3044de1fd5264ff0440f29bbe1874f175a333 9579714 
slurm-llnl_2.3.4-2_i386.deb
 dcbb456f4e8dda8f334e85eedd86dd2eb32ef499092194154c0b91f53c296176 466886 
libslurmdb23_2.3.4-2_i386.deb
 1aac446869ae228298882ae810b85ba2c760a8e52ca75e1b095eb94ecbd0d84f 459858 
libslurm23_2.3.4-2_i386.deb
 5a9d292ba2e483bbe9a549741bf87737905f3e972bf29da0ccb819c071efbaeb 21772 
libpmi0_2.3.4-2_i386.deb
 156c9ffb027af22836825518d81a6916a0540afdad1a3c47a3eca8157438be5f 692204 
libslurm-dev_2.3.4-2_i386.deb
 370bb159639ae39e0370f5928eaab6426eb833f4658016028e75b46865b8e9b9 622638 
libslurmdb-dev_2.3.4-2_i386.deb
 8f934f6aa969b3859e341d6bc42a321be09e6b008de5be0fe7008454d32ae960 26420 
libpmi0-dev_2.3.4-2_i386.deb
 3b25ef49083a86c72c3234655c6801d1e5242452b1629312858d8acd1b470aea 567052 
slurm-llnl-basic-plugins_2.3.4-2_i386.deb
 550b63054dff9680b330a046f2f3e3e52282b66eb1cab823d37908eec20e2c70 2199254 
slurm-llnl-basic-plugins-dev_2.3.4-2_i386.deb
 08984f4d93f012ce6e926bd7331fd4b043336e87fc7fd77416be4c0c919437f1 591348 
slurm-llnl-sview_2.3.4-2_i386.deb
 1df6b5249c382923acb7275f61e16689271f967a6c40957d7169e88274ca2972 1062144 
slurm-llnl-slurmdbd_2.3.4-2_i386.deb
 6316179cb0d7995233074d3253ba8c54967c01522278d833996ccdf0f52e0eea 204564 
libslurm-perl_2.3.4-2_i386.deb
 a26b4f942a7ada81335588a23494b285e1ff5ef1d3d8f75bc3069f76788deaa3 38570 
libslurmdb-perl_2.3.4-2_i386.deb
 e52a05123ac801b81d60d7e5284d716aa5bc3f3d0a83c4e530dd11577316ded8 16960 
libpam-slurm_2.3.4-2_i386.deb
 c546e54b803dfddacfd578313987d2c1ff4126e41966c76ce621fa3d68c65d40 845690 
slurm-llnl-doc_2.3.4-2_all.deb
 78d798b0c8c17a507c3f1e7372e506b88abf7d239f15a257e290922b4242761e 36822 
slurm-llnl-torque_2.3.4-2_all.deb
Files: 
 b14e5a19cf9e2a478345ae7b936da8cd 2688 admin extra slurm-llnl_2.3.4-2.dsc
 a26ec3a8b9d6a64bba449c3ca38f91d4 52290 admin extra 
slurm-llnl_2.3.4-2.debian.tar.gz
 2f438fec24b29d620706f4eb03471a8d 9579714 admin extra 
slurm-llnl_2.3.4-2_i386.deb
 34d14f4a5617ca5dab3ca0237055ffbc 466886 libs extra 
libslurmdb23_2.3.4-2_i386.deb
 f1f421f6d643c89ddf67180584e891fe 459858 libs extra libslurm23_2.3.4-2_i386.deb
 199dd0e7210d87f2db3389870f1174a1 21772 libs extra libpmi0_2.3.4-2_i386.deb
 70b454a387926eec28889012d3868e30 692204 libdevel extra 
libslurm-dev_2.3.4-2_i386.deb
 f82d409190700e18fb529c68f9501b24 622638 libdevel extra 
libslurmdb-dev_2.3.4-2_i386.deb
 cb3656222f3c1b4a6fd8fcab93805e9b 26420 libdevel extra 
libpmi0-dev_2.3.4-2_i386.deb
 5dc27736d4c73cef756946c1d16bc339 567052 admin extra 
slurm-llnl-basic-plugins_2.3.4-2_i386.deb
 67d8f6d4f55917bb00e1490427609d3d 2199254 devel extra 
slurm-llnl-basic-plugins-dev_2.3.4-2_i386.deb
 efa6184670ec0d4ae5e08cff83571a45 591348 admin extra 
slurm-llnl-sview_2.3.4-2_i386.deb
 c22722a7ddff99fcb1bba2899b6004be 1062144 admin extra 
slurm-llnl-slurmdbd_2.3.4-2_i386.deb
 1810051bf56405d97c891da9e43b2ad3 204564 perl extra 
libslurm-perl_2.3.4-2_i386.deb
 2908f7e850b29fbb6067474aaf6e04ef 38570 perl extra 
libslurmdb-perl_2.3.4-2_i386.deb
 45ce8f29359b66dd0e509bc78daf9c0a 16960 admin extra 
libpam-slurm_2.3.4-2_i386.deb
 83aebc3c0d2975ba847475da7f54066f 845690 doc extra 
slurm-llnl-doc_2.3.4-2_all.deb
 357684c8606eebcf92ce9f946c11d995 36822 admin extra 
slurm-llnl-torque_2.3.4-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJPhC0tAAoJEH36Qa2WGYXXeeQQAKu91tnFEoTy0p49l1ny269t
g7Lmy55tS1GbGdWLwo913U9kAGq4HQCuRU1kuudBHwdu1MJrTm5KdLg1nPkWkHQ5
+zEAnCXUqB8Annf6IGy30gPWqxQw0Odzp/EwSTxXx7D1wJcdW701d3z/Mf8+6ax1
5LfmBAVxLCNeR3YdK71XGbhQ9fNp83fqT2Ph5tMjO9fgrHZj/CQLMQH2825OPaMn
G3K8MZXy9EnD72Xj0C6B6ICmE1kW5f/jfnw97nLX4Qg6stDFrxgXZqp3sK7tYj7G
pUmucta4xgKVfA5fxs6X6Hw+B1jQKsrnT8DcEUDoAzesK/eeigYAvO+DxDC2PDQo
Xyq9JWDQ9173U4T0TzZwnWzO0DTWXHL4hc2QEWvEi7I5R3xKknhzDcGUEt6yCj9b
4iFmKI1v+08Mn0nAB66PUaNVL9WnfIk5Fa+pScGsHmftEmwowQ0PRavP87VEYjAC
QDxrcB+mvJ7yRWoS/fbHAXFh8gubWPOOLr5pFgWxujETrSsvjhJtEy0Wv9z4GSy1
Luv3MCtzWD6KMDgGyPoLbjPGwndvPuz4qxev7SgtWv3EoUHf0q/a7pDdvdTXGRp7
D8F35jqdSFUgBkOVw07nQ1mIDFfyvD6U1E3V20ILsk7Y5Vei8SNaCveQdKqOZLE/
Yqz0uyui0H8ZSH1qxbF/
=aS8W
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to