Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92653205
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
Fri, Nov 22, 10:15
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22478165
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