Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93121712
PhabricatorDaemonManagementStopWorkflow.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
Tue, Nov 26, 09:01
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 09:01 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22569035
Attached To
rPH Phabricator
PhabricatorDaemonManagementStopWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementStopWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'stop'
)
->
setSynopsis
(
pht
(
'Stop all running daemons, or specific daemons identified by PIDs. '
.
'Use **%s** to find PIDs.'
,
'phd status'
))
->
setArguments
(
array
(
array
(
'name'
=>
'graceful'
,
'param'
=>
'seconds'
,
'help'
=>
pht
(
'Grace period for daemons to attempt a clean shutdown, in '
.
'seconds. Defaults to __15__ seconds.'
),
'default'
=>
15
,
),
array
(
'name'
=>
'force'
,
'help'
=>
pht
(
'Also stop running processes that look like daemons but do '
.
'not have corresponding PID files.'
),
),
array
(
'name'
=>
'gently'
,
'help'
=>
pht
(
'Ignore running processes that look like daemons but do not '
.
'have corresponding PID files.'
),
),
array
(
'name'
=>
'pids'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
return
$this
->
executeStopCommand
(
$args
->
getArg
(
'pids'
),
array
(
'graceful'
=>
$args
->
getArg
(
'graceful'
),
'force'
=>
$args
->
getArg
(
'force'
),
'gently'
=>
$args
->
getArg
(
'gently'
),
));
}
}
Event Timeline
Log In to Comment