Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorPHDConfigOptions.php
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | return array( | ||||
| )) | )) | ||||
| ->setSummary(pht("Launch daemons in 'verbose' mode by default.")) | ->setSummary(pht("Launch daemons in 'verbose' mode by default.")) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| "Launch daemons in 'verbose' mode by default. This creates a lot ". | "Launch daemons in 'verbose' mode by default. This creates a lot ". | ||||
| "of output, but can help debug issues. Daemons launched in debug ". | "of output, but can help debug issues. Daemons launched in debug ". | ||||
| "mode with 'phd debug' are always launched in verbose mode. See ". | "mode with 'phd debug' are always launched in verbose mode. See ". | ||||
| "also 'phd.trace'.")), | "also 'phd.trace'.")), | ||||
| $this->newOption('phd.umask', 'string', null) | |||||
| ->setLocked(true) | |||||
| ->setSummary(pht('Process umask for phd daemons')) | |||||
| ->setDescription( | |||||
| pht( | |||||
| 'Specify the phd daemon umask to override systems umask.'. | |||||
| 'Examples: 077, 027, 007')), | |||||
| $this->newOption('phd.user', 'string', null) | $this->newOption('phd.user', 'string', null) | ||||
| ->setLocked(true) | ->setLocked(true) | ||||
| ->setSummary(pht('System user to run daemons as.')) | ->setSummary(pht('System user to run daemons as.')) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| 'Specify a system user to run the daemons as. Primarily, this '. | 'Specify a system user to run the daemons as. Primarily, this '. | ||||
| 'user will own the working copies of any repositories that '. | 'user will own the working copies of any repositories that '. | ||||
| 'Phabricator imports or manages. This option is new and '. | 'Phabricator imports or manages. This option is new and '. | ||||
| Show All 25 Lines | |||||