Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114489737
PhabricatorDaemonManagementStartWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, May 26, 04:20
Size
854 B
Mime Type
text/x-php
Expires
Wed, May 28, 04:20 (2 d)
Engine
blob
Format
Raw Data
Handle
26401719
Attached To
rPH Phabricator
PhabricatorDaemonManagementStartWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementStartWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'start'
)
->
setSynopsis
(
pht
(
'Start the standard configured collection of Phabricator daemons. '
.
'This is appropriate for most installs. Use **phd launch** to '
.
'customize which daemons are launched.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'keep-leases'
,
'help'
=>
pht
(
'By default, **phd start** will free all task leases held by '
.
'the daemons. With this flag, this step will be skipped.'
),
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
return
$this
->
executeStartCommand
(
$args
->
getArg
(
'keep-leases'
));
}
}
Event Timeline
Log In to Comment