| | 16 | |
| | 17 | To activate cluster groups, you need to create a file `quattor.build.properties` in the root directory of your SCDB installation (the same directory where `quattor.build.xml` resides). In this file, you can define the following properties: |
| | 18 | {{{ |
| | 19 | # Enable cluster groups (default is false for backward compatibility) |
| | 20 | clusters.groups.enable=true |
| | 21 | |
| | 22 | # Enable creation of directory per group in build/xml. |
| | 23 | # Default should be appropriate for standard deployment model. |
| | 24 | clusters.groups.xml=false |
| | 25 | |
| | 26 | # Generate profiles-info.xml as part of cluster group compilation |
| | 27 | # Default should be appropriate for standard deployment model. |
| | 28 | clusters.groups.build.info=false |
| | 29 | |
| | 30 | # Define root directory (under cfg/ for all cluster groups or clusters) |
| | 31 | clusters.directory=clusters |
| | 32 | }}} |
| | 33 | |
| | 34 | Each of the properties above is optional, values showed in the example above are the default ones, except for `clusters.groups.enable`. `#` is the comment sign. Be aware that everything after `=` is considered part of the value and that there should be no quote or double quotes around values or they will be considered part of the value. |
| | 35 | |
| | 36 | ''Note: you need to check SVN property `svn:ignore` on SCDB root directory to ensure `quattor.build.properties` is not ignored as it used to be recommended to put it in the svn:ignore list. To check, use the following command:'' |
| | 37 | {{{ |
| | 38 | svn propedit [--editro-cmd vi] svn:ignore . |
| | 39 | }}} |