| 280 | === CE Close SEs === |
| 281 | |
| 282 | Variable `CE_CLOSE_SE_LIST` defines the SEs that must be registered in BDII as a close SE for the current CE. It can be either a value used for every VO or a nlist with a default value (key is `DEFAULT`) and one entry per VO with a different close SE (key is the VO name). Each value must be a string if there is only one close SE or a list of SEs. |
| 283 | |
| 284 | `CE_CLOSE_SE_LIST` defaults to deprecated `SE_HOST_DEFAULT` if defined or to the first SE in SE_HOSTS variaible. If you want all your SEs to be registered as close SEs, you need to add the following declaration : |
| 285 | {{{ |
| 286 | variable CE_CLOSE_SE_LIST = SE_HOSTS; |
| 287 | }}} |
| 288 | |
| 289 | It is valid to have no close SE defined. To remove default definition, you need to do : |
| 290 | {{{ |
| 291 | variable CE_CLOSE_SE_LIST = nlist('DEFAULT', undef); |
| 292 | }}} |
| 293 | |
| 294 | It is valid for the close SE to be outside your site but this is probably not recommended for standard configurations. |
| 295 | |
284 | | By default, if not explicitly defined, this is the first host in `SE_HOSTS` list. The default SE can be outside your site (probably not recommended for standard configurations). |
285 | | |
286 | | ''Note : variable `SE_HOST_DEFAULT` is deprecated.'' |
287 | | |
288 | | === CE Close SEs === |
289 | | |
290 | | Variable `CE_CLOSE_SE_LIST` defines the SEs that must be registered in BDII as a close SE for the current CE. It can be either a list used for every VO or a nlist with a default value (key is `DEFAULT`) and one entry per VO with a different close SE (key is the VO name). Each value must be a list of SE. |
291 | | |
292 | | `CE_CLOSE_SE_LIST` defaults to `CE_DEFAULT_SE`. If you want all your SEs to be registered as close SEs, you need to add the following declaration : |
293 | | {{{ |
294 | | variable CE_CLOSE_SE_LIST SE_HOSTS; |
295 | | }}} |
| 300 | By default, if not explicitly defined, it defaults to the first SE in CE_CLOSE_SE_LIST entries. The default SE can be outside your site (probably not recommended for standard configurations). |