Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F543201
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 daemon processes on this host.'
))
->
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
(
'Stop all daemon processes on this host, even if they belong '
.
'to another instance.'
),
),
array
(
'name'
=>
'gently'
,
'help'
=>
pht
(
'Deprecated. Has no effect.'
),
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
return
$this
->
executeStopCommand
(
array
(
'graceful'
=>
$args
->
getArg
(
'graceful'
),
'force'
=>
$args
->
getArg
(
'force'
),
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 11:08 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
121684
Default Alt Text
PhabricatorDaemonManagementStopWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment