forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add forgotten example.drush.ini file.
- Loading branch information
1 parent
ee782e5
commit ab9639b
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
;$Id$ | ||
; | ||
; Example of a drush php settings override file | ||
; | ||
; Use this file in instances when your system is | ||
; -not- configured to use separate php.ini files for | ||
; webserver and cli use. You can determine which | ||
; php.ini file drush is using by running "drush status". | ||
; If the php.ini file shown is your webserver ini | ||
; file, then rename this file to drush.ini and copy it | ||
; to one of the following locations: | ||
; | ||
; 1. User's .drush folder (i.e. ~/.drush/drush.ini) | ||
; 2. System wide configuration folder (e.g. /etc/drush/drush.ini) | ||
; | ||
; When in use, the variables defined in this file | ||
; will override the setting values that appear in | ||
; your php.ini file. See the examples below for | ||
; some values that may need to be set in order for | ||
; drush to work. | ||
; | ||
; NOTE: There is a certain amount of overhead | ||
; required for each override, so drush.ini should | ||
; only be used for a relatively small number | ||
; of variables. Comment out any variable that | ||
; has the same value as the webserver php.ini | ||
; to keep the size of the override list small. | ||
; | ||
; To fully specify the value of all php.ini variables, | ||
; copy your webserver php.ini file to one of the | ||
; locations mentioned above (e.g. /etc/drush/php.ini) | ||
; and edit it to suit. | ||
; | ||
|
||
; | ||
; drush needs as much memory as Drupal in order | ||
; to run; make the memory limit setting match | ||
; what you have in your webserver's php.ini. | ||
; | ||
memory_limit = 128M | ||
|
||
; | ||
; Show all errors and direct them to stderr | ||
; when running drush. | ||
; | ||
error_reporting = E_ALL | E_NOTICE | E_STRICT | ||
display_errors = stderr | ||
|
||
; | ||
; If your php.ini for your webserver is too | ||
; restrictive, you can re-enable functionality | ||
; for drush by adjusting values in this file. | ||
; | ||
; Here are some examples of settings that are | ||
; sometimes set to restrictive values in a | ||
; webserver's php.ini: | ||
; | ||
;safe_mode = | ||
;open_basedir = | ||
;disable_functions = | ||
;disable_classes = |