Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101524218
PhabricatorHarbormasterConfigOptions.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, Feb 11, 06:41
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 13, 06:41 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
24183181
Attached To
rPH Phabricator
PhabricatorHarbormasterConfigOptions.php
View Options
<?php
final
class
PhabricatorHarbormasterConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Harbormaster'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure Harbormaster build engine.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'harbormaster.temporary.hosts.whitelist'
,
'list<string>'
,
array
())
->
setSummary
(
'Temporary configuration value.'
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
"This specifies a whitelist of remote hosts that the
\"
Run "
.
"Remote Command
\"
may connect to. This is a temporary "
.
"configuration option as Drydock is not yet available."
.
"
\n\n
"
.
"**This configuration option will be removed in the future and "
.
"your build configuration will no longer work when Drydock "
.
"replaces this option. There is ABSOLUTELY NO SUPPORT for "
.
"using this functionality!**"
))
);
}
}
Event Timeline
Log In to Comment