Skip to content
Snippets Groups Projects
Commit e7d1b2da authored by Moe Jette's avatar Moe Jette
Browse files

Modify slurm.spec.in for optional inclusion of sched_wiki.so and

select_bluegene.so files (not build on AIX).
parent 60ff0f43
No related branches found
No related tags found
No related merge requests found
...@@ -5,10 +5,14 @@ documents those changes that are of interest to users and admins. ...@@ -5,10 +5,14 @@ documents those changes that are of interest to users and admins.
============================= =============================
-- Load bluegene.conf and federation.conf based upon SLURM_CONF env -- Load bluegene.conf and federation.conf based upon SLURM_CONF env
var (if set). var (if set).
-- Fix slurmd shutdown signal synchronization bug (not consistently
terminating).
-- Add doc/html/ibm.html document. Update bluegene.html. -- Add doc/html/ibm.html document. Update bluegene.html.
-- Add sfree to bluegene plugin. -- Add sfree to bluegene plugin.
-- Remove geometry[SYSTEM_DIMENSIONS] from opaque node_select data -- Remove geometry[SYSTEM_DIMENSIONS] from opaque node_select data
type if SYSTEM_DIMENSIONS==0 (not ASCI-C compliant). type if SYSTEM_DIMENSIONS==0 (not ASCI-C compliant).
-- Modify spec file for optional inclusion of select_bluegene and
sched_wiki plugin libraries.
* Changes in SLURM 0.5.0-pre5 * Changes in SLURM 0.5.0-pre5
============================= =============================
......
...@@ -143,7 +143,7 @@ install -D -m644 etc/federation.conf.example $RPM_BUILD_ROOT/etc/slurm/federatio ...@@ -143,7 +143,7 @@ install -D -m644 etc/federation.conf.example $RPM_BUILD_ROOT/etc/slurm/federatio
rm -f $RPM_BUILD_ROOT/%{_libdir}/slurm/*.{a,la} rm -f $RPM_BUILD_ROOT/%{_libdir}/slurm/*.{a,la}
# Build file lists for optional plugin packages # Build file lists for optional plugin packages
for plugin in auth_munge auth_authd switch_elan; do for plugin in auth_munge auth_authd sched_wiki switch_elan; do
LIST=./${plugin}.files LIST=./${plugin}.files
touch $LIST touch $LIST
test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/${plugin}.so && test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/${plugin}.so &&
...@@ -157,6 +157,15 @@ test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/switch_federation.so && ...@@ -157,6 +157,15 @@ test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/switch_federation.so &&
echo "%doc etc/federation.conf.example" >> $LIST echo "%doc etc/federation.conf.example" >> $LIST
echo "%config /etc/slurm/federation.conf.example" >> $LIST echo "%config /etc/slurm/federation.conf.example" >> $LIST
LIST=./bluegene.files
touch $LIST
test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/select_bluegene.so &&
echo %{_libdir}/slurm/select_bluegene.so > $LIST
echo "%doc etc/bluegene.conf.example" >> $LIST
echo "%{_sbindir}/slurm_epilog" >> $LIST
echo "%{_sbindir}/slurm_prolog" >> $LIST
echo "%{_sbindir}/sfree" >> $LIST
echo "%config /etc/slurm/bluegene.conf.example" >> $LIST
############################################################################# #############################################################################
...@@ -220,19 +229,12 @@ rm -rf $RPM_BUILD_ROOT ...@@ -220,19 +229,12 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root) %defattr(-,root,root)
############################################################################# #############################################################################
%files bluegene %files -f bluegene.files bluegene
%defattr(-,root,root) %defattr(-,root,root)
%doc etc/bluegene.conf.example
%{_sbindir}/slurm_epilog
%{_sbindir}/slurm_prolog
%{_sbindir}/sfree
%{_libdir}/slurm/select_bluegene.so
%config /etc/slurm/bluegene.conf.example
############################################################################# #############################################################################
%files sched-wiki %files -f sched_wiki.files sched-wiki
%defattr(-,root,root) %defattr(-,root,root)
%{_libdir}/slurm/sched_wiki.so
############################################################################# #############################################################################
%files -f switch_elan.files switch-elan %files -f switch_elan.files switch-elan
...@@ -275,6 +277,8 @@ fi ...@@ -275,6 +277,8 @@ fi
%changelog %changelog
* Tue May 24 2005 Morris Jette <jette1@llnl.gov>
- optionally include sched_wiki.so and select_bluegene.so
* Mon May 02 2005 Danny Auble <da@llnl.gov> * Mon May 02 2005 Danny Auble <da@llnl.gov>
- added sample federation switch plugin file - added sample federation switch plugin file
* Mon Apr 11 2005 Morris Jette <jette1@llnl.gov> * Mon Apr 11 2005 Morris Jette <jette1@llnl.gov>
......
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