Changes between Version 27 and Version 28 of Doc/gLite/TemplateCustomization
- Timestamp:
- Mar 4, 2007, 5:45:59 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Doc/gLite/TemplateCustomization
v27 v28 67 67 === Defining Site Specific Defaults for VOs === 68 68 69 It is possible to define site specific defaults for VOs that override standard default. This must be done by defining variable `VOS_SITE_PARAMS` as a nlist with an entry `DEFAULT`. The value must be the name of a structure template defining any of these properties : 69 It is possible to define site specific defaults for VOs that override standard default. This must be done by defining variable `VOS_SITE_PARAMS` as a nlist. This nlist can contain one entry per VO plus an entry `DEFAULT`. Entry `DEFAULT` is used to define paramaters that will apply to all VOs. The entry key is the VO name, as used in `VOS` variable. 70 71 Each entry value must be the name of a structure template or a nlist defining any of these properties : 70 72 71 73 * `create_home` : Create home directories for VO accounts. Default defined by variable `CREATE_HOME` variable. 72 74 * `create_keys` : Create SSH keys for VO accounts. Default defined by variable `CREATE_KEYS` variable. 75 * `unlock_accounts` : a regexp defining host names where the VO accounts must be unlocked 73 76 * `pool_digits` : define default number of digits to use when creating pool accounts 74 77 * `pool_offset` : define offset from VO base uid for the first pool account … … 194 197 PBS/Torque related templates support the following variables : 195 198 199 * `CE_HOST` : name of the PBS/Torque master 200 201 * `CE_PRIV_HOST` : alternate name of PBS/Torque server. Used in configuration where WNs are in a private network and PBS/Torque master has 2 network names/adresses. 202 196 203 * `CE_QUEUES` : a nlist with one entry per queue (key is the queue name). For each queue, the value itself is a nlist. One mandatory key is `attr` and defines the queue parameters (`qmgr set queue` options). Another optional key is `vos` and is used to explicitly define the VOs which have access to the queue (by default, only the VO with the same name as the queue has access). Look at [source:templates/trunk/grid/lcg-2.7.0/site/pro_lcg2_config_site.tpl pro_lcg2_config_site.tpl] example for an example on how to define one queue for each supported VO. 197 204