INCR: Updated CHANGELOG with new patche info.

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@100 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
bchristiansen 2008-10-03 21:14:15 +00:00
parent 0d182829d2
commit 94e68ebbba

View File

@ -2,8 +2,33 @@ Maui 3.2.6p21
Features
- Added FSSECONDARYGROUPS to map unix groups to fair share groups. Contributed by Bas van der Vlies (SARA).
- Added IGNPBSGROUPLIST to ignore 'qsub -W group_list=<value>'. Contributed by Bas van der Vlies (SARA).
- Implemented FSSECONDARYGROUPS to map unix groups to fair share groups. Contributed by Bas van der Vlies (SARA).
- Implemented IGNPBSGROUPLIST to ignore 'qsub -W group_list=<value>'. Contributed by Bas van der Vlies (SARA).
- Note for FSSECONDARYGROUPS and IGNPBSGROUPLIST:
{{{
Maui did not parse the PBS group_list parameter:
qsub -W group_list=<value>
This variable has the highest priority and will set the group credential to
the value specified. We at SARA want to ignore this parameter, because we
do not want an user to specify its own group and bypass the FairShare
targets. So we added an option to ignore this parameter:
- IGNPBSGROUPLIST TRUE
This patch also fix some debug problems that i had when the debug level is
set to another value then the default one, eg:
- LOGLEVEL 9
Maui has a lot of keywords and the parsing of the keywords are only be
shown if a certain loglevel is set. Somebody thought it is nice that the
maui keyword table is sorted alphabetically. This is not correct because
now only the keywords after the LOG... definitions are shown. This patch
moves the LOG.. keywords definition to the beginning of keyword table and
fix this problem.
}}}
- Implemented fitting of jobs into available partitions. Contributed by Eygene Ryabinkin, Russian Research Centre "Kurchatov Institute".
ex. USERCFG[user] PLIST=par1,par2,par3 PDEF=par2 user's job will firt try to be fit in par2. If par2 doesn't work then par1 and par3 will be tried.
Maui 3.2.6p20
- Fixed a potential security issue when Maui is used with some PBS configurations.