16 | | At the start of this script they are a couple of variables you '''must''' edit to reflect your site configuration. In particular : |
17 | | * `QUATTORSRV` : name of your Quattor server. |
18 | | * `NOTIFY` : email address to notify of deployment errors. |
19 | | * `DEPLOYSCRIPT` : path where is installed the deployment script (see below). |
20 | | * Command path for SVNLOOK and SSH |
| 16 | This script requires a configuration file to be present, `/etc/quattor-deploy.conf`. The configuration file must contain only shell variable definition (`sh` syntax). The '''required''' variables are : |
| 17 | {{{ |
| 18 | # Quattor server name |
| 19 | QUATTORSRV="quattorsrv.lal.in2p3.fr" |
| 20 | |
| 21 | # Recipients of status mail and location for checkout. |
| 22 | NOTIFY="quattor-mgrs@lal.in2p3.fr" |
| 23 | |
| 24 | }}} |
| 25 | |
| 26 | Other supported variables are : |
| 27 | {{{ |
| 28 | # Script on Quattor server to deploy new configuration |
| 29 | # Default : DEPLOYSCRIPT=/root/quattor/scripts/build-tag.pl |
| 30 | |
| 31 | # Full paths to commands. |
| 32 | # Defaults are appropriate for RHEL/SL Linux. |
| 33 | # MAILER="mailx" |
| 34 | # SVNLOOK="/usr/local/subversion/pro/bin/svnlook" |
| 35 | # SSH="/usr/local/openssh/pro/bin/ssh" |
| 36 | }}} |