Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F440393
PhabricatorDaemonManagementStopWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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'
),
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 5:49 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
64074
Default Alt Text
PhabricatorDaemonManagementStopWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment