/[drupal]/contributions/modules/provision/example.drushrc.php
ViewVC logotype

Contents of /contributions/modules/provision/example.drushrc.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Thu Nov 27 23:38:46 2008 UTC (11 months, 4 weeks ago) by adrian
Branch: MAIN
CVS Tags: DRUPAL-6--0-1, DRUPAL-6--0-3, DRUPAL-6--0-2, DRUPAL-5--0-2-ALPHA1, DRUPAL-6--0-2-RC1, DRUPAL-6--0-1-RC1, DRUPAL-6--0-4-ALPHA1, DRUPAL-6--0-2-BETA1, DRUPAL-6--0-4-ALPHA3, DRUPAL-6--0-4-ALPHA2, DRUPAL-6--0-3-RC4, DRUPAL-6--0-3-RC2, DRUPAL-6--0-3-RC3, DRUPAL-6--0-3-RC1, HEAD
Branch point for: DRUPAL-6--1
Changes since 1.1: +54 -0 lines
File MIME type: text/x-php
missed some files
1 /**
2 * This configuration file manages the settings for the provision back end of the Aegir hosting system.
3 *
4 * If you are not using the hosting front end, you should copy this file to the root of your
5 * Drupal installation and change the settings accordingly.
6 *
7 * For the most parts the defaults should be sensible and just work.
8 *
9 */
10 /**
11 * Directory to store site backups.
12 *
13 * If you have multiple provision managed platforms on this system, it is highly
14 * recommended to use the same path for each platform you have.
15 */
16 # $options['backup_path'] = '/path/to/backups';
17
18 /**
19 * Directory to store configuration files
20 *
21 * All system related configuration files will be stored here.
22 *
23 * If you have multiple provision managed platforms on this server, it is highly
24 * recommended to use the same path for each platform you have.
25 */
26 # $options['config_path'] = '/path/to/configs';
27
28 /**
29 * The login name for the shell user who will be running the provision scripts
30 *
31 * This needs to be a user account that is not root or the web server user.
32 */
33 # $options['script_user'] = 'aegir';
34
35 /**
36 * The group that the web server is running as
37 */
38 # $options['web_group'] = 'apache';
39
40 /**
41 * Database credentials for a database account capable of creating databases and users
42 */
43 # $options['master_db'] = 'mysql://aegir:password@localhost/mysql';
44
45 /**
46 * Command to restart apache when an action has been completed
47 */
48 # $options['restart_cmd'] = 'sudo /usr/sbin/apachectl restart';
49
50 /**
51 * The address of the Hostmaster installation
52 * This url will be used to redirect sites that haven't been found or have been disabled.
53 */
54 # $options['master_url'] = 'http://aegir.company.com';

  ViewVC Help
Powered by ViewVC 1.1.2