| 1 |
# $Id: site-fetch-nix-sample.properties,v 1.5 2007/09/13 10:50:12 allisterbeharry Exp $
|
| 2 |
# @file This is the *nix sample for the site-fetch.xml build file.
|
| 3 |
# Modify this file with the properties you want to use to configure the build.
|
| 4 |
|
| 5 |
# You can create a base properties file - site-fetch-base.properties, which will automatically be loaded every time the build file is run;
|
| 6 |
# in addition to the usual site-fetch.properties file. Any property defined in site-fetch-base.properties
|
| 7 |
# can be overriden by a property defined in site-fetch.properties. Any properties not defined in site-fetch.properties will be
|
| 8 |
# inherited from site-fetch-base.properties.
|
| 9 |
|
| 10 |
# By default site-fetch looks for site-fetch-base.properties and site-fetch.properties files in the DAST_HOME directory;
|
| 11 |
# If you want to keep your properties files elsewhere use D"basePropertiesFile=<absolute path to file>" and
|
| 12 |
#D"propertiesFile=<absolute path to file>".
|
| 13 |
|
| 14 |
#----------------------------------REQUIRED PROPERTIES---------------------------------------------------------------#
|
| 15 |
#build.log.defaultdir; drupal.dir; drupal.core.method; drupal.modules.dir; drupal.modules.method;
|
| 16 |
#drupal.modules.list
|
| 17 |
#--------------------------------------------------------------------------------------------------------------------#
|
| 18 |
|
| 19 |
#This is the default dir where log files from the various tasks will be placed
|
| 20 |
build.log.defaultdir = /var/log/DAST
|
| 21 |
|
| 22 |
#Indicate if you want to run the clean target before the core and modules fetch which will delete all files in drupal.dir.
|
| 23 |
#Default is yes
|
| 24 |
build.run.clean = yes
|
| 25 |
|
| 26 |
#The directory in which you want to create the Drupal site - the Drupal files will go directly under here(REQUIRED):
|
| 27 |
drupal.dir = /var/www/drupal52-dev/dast/test/fetch
|
| 28 |
|
| 29 |
#This method denotes how the core source code should be fetched, - CVS means that the build will connect to the Drupal CVS repository
|
| 30 |
#to retrieve the code. directory means that a local directory containing the code will be used instead (REQUIRED):
|
| 31 |
drupal.core.method = CVS
|
| 32 |
|
| 33 |
#The ABSOLUTE path to the directory containing the local Drupal 6 core code tree to be fetched;
|
| 34 |
#this will be used if drupal.core.method = directory:
|
| 35 |
drupal.core.sourcedir = /usr/src/drupalCVS/DRUPAL-5-2/drupal
|
| 36 |
|
| 37 |
#The absolute path to a .tar.gz containing Drupal core code; this will be used if drupal.core.method = tarball
|
| 38 |
drupal.core.sourcetar = /usr/src/drupal-5.2.tar.gz
|
| 39 |
|
| 40 |
#The CVSROOT for connecting to the repository hosting the Drupal core
|
| 41 |
drupal.core.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal
|
| 42 |
|
| 43 |
#CVS command to run to fetch core - either export or checkout
|
| 44 |
drupal.core.Cvs.Command = checkout
|
| 45 |
|
| 46 |
#CVS Branch/Tag revision of core to retrieve
|
| 47 |
drupal.core.Cvs.Revision = DRUPAL-5-2
|
| 48 |
|
| 49 |
#The port to use for core CVS operations - default is 2401
|
| 50 |
drupal.core.Cvs.Port = 2401
|
| 51 |
|
| 52 |
#CVS compression level to use - default 6
|
| 53 |
drupal.core.Cvs.CompressionLevel = 6
|
| 54 |
|
| 55 |
#CVS warnings/errors will be reported
|
| 56 |
drupal.core.Cvs.Quiet = false
|
| 57 |
|
| 58 |
#CVS errors will cause the build to fail - it's recommended this be left as true
|
| 59 |
drupal.core.Cvs.FailOnError = true
|
| 60 |
|
| 61 |
#File to write core CVS operations output to, == stdout. Currently this file path CANNOT CONTAIN SPACES
|
| 62 |
#on *nix or Windows.
|
| 63 |
drupal.core.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-core-output.log
|
| 64 |
|
| 65 |
#File to write core CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 66 |
#on *nix or Windows.
|
| 67 |
drupal.core.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-core-error.log
|
| 68 |
|
| 69 |
#Directory that will contain the Drupal modules - this path is specified RELATIVE to the drupal.dir path
|
| 70 |
drupal.modules.dir = sites/all/modules
|
| 71 |
|
| 72 |
#The list of modules to retrieve from the directory/CVS contrib- repository - comma delimited.
|
| 73 |
drupal.modules.list=simpletest,devel,ulink
|
| 74 |
|
| 75 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules code tree to be fetched;
|
| 76 |
#this will be used if drupal.modules.method = directory:
|
| 77 |
drupal.modules.method = CVS
|
| 78 |
|
| 79 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules to fetch;
|
| 80 |
#Used if drupal.modules.method = directory:
|
| 81 |
drupal.modules.sourcedir = /usr/src/drupalCVS/contributions/modules/DRUPAL-5
|
| 82 |
|
| 83 |
#The CVSROOT for connecting to the repository hosting the Drupal coontrib- modules
|
| 84 |
drupal.modules.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib
|
| 85 |
|
| 86 |
#The path to the modules in the CVS repository, this will be prefixed to the module name when performing
|
| 87 |
#a CVS export or checkout
|
| 88 |
drupal.modules.Cvs.Path = "contributions/modules/"
|
| 89 |
|
| 90 |
#CVS command to run to fetch modules - either export or checkout
|
| 91 |
drupal.modules.Cvs.Command = export
|
| 92 |
|
| 93 |
#CVS Branch/Tag revision of modules to retrieve - this applies to all modules currently -
|
| 94 |
#the next release will ad <Modules> element for specifying details of each module to fetch
|
| 95 |
drupal.modules.Cvs.Revision = DRUPAL-5
|
| 96 |
|
| 97 |
#The port to use for modules' CVS operations - default is 2401
|
| 98 |
drupal.modules.Cvs.Port = 2401
|
| 99 |
|
| 100 |
#CVS compression level to use - default 6
|
| 101 |
drupal.modules.Cvs.CompressionLevel = 6
|
| 102 |
|
| 103 |
#CVS warnings/errors will be reported
|
| 104 |
drupal.modules.Cvs.Quiet = false
|
| 105 |
|
| 106 |
#CVS errors encountered when fetching and individual will not cause the build to fail -
|
| 107 |
#it's recommended this be left as false
|
| 108 |
drupal.modules.Cvs.FailOnError = true
|
| 109 |
|
| 110 |
#Stem of file to write modules' CVS operations output to, == stdout. Currently this file path, CANNOT CONTAIN SPACES
|
| 111 |
#CVS Output Log for each module will be appended to this
|
| 112 |
drupal.modules.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-modules-output
|
| 113 |
|
| 114 |
#Stem of file to write modules' CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 115 |
#CVS Error log for each module will be appended to this
|
| 116 |
drupal.modules.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-modules-error
|