Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
4b18be17
Commit
4b18be17
authored
Jul 28, 2011
by
Mike Hibler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure nodessh script works in a world with DISABLE_NAMED_SETUP.
parent
03478fb9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
configure
configure
+1
-0
configure.in
configure.in
+1
-0
www/defs.php3.in
www/defs.php3.in
+2
-1
www/nodessh.php3
www/nodessh.php3
+6
-2
No files found.
configure
View file @
4b18be17
...
...
@@ -5020,6 +5020,7 @@ NFSTRACESUPPORT=0
TBLOGFACIL
=
"local5"
BOSSEVENTPORT
=
16505
UNIFIED_BOSS_AND_OPS
=
0
DISABLE_NAMED_SETUP
=
0
FRISEBEEMCASTADDR
=
"234.5.6"
FRISEBEEMCASTPORT
=
3564
FRISEBEENUMPORTS
=
0
...
...
configure.in
View file @
4b18be17
...
...
@@ -296,6 +296,7 @@ NFSTRACESUPPORT=0
TBLOGFACIL="local5"
BOSSEVENTPORT=16505
UNIFIED_BOSS_AND_OPS=0
DISABLE_NAMED_SETUP=0
FRISEBEEMCASTADDR="234.5.6"
FRISEBEEMCASTPORT=3564
FRISEBEENUMPORTS=0
...
...
www/defs.php3.in
View file @
4b18be17
<?php
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-201
0
University of Utah and the Flux Group.
# Copyright (c) 2000-201
1
University of Utah and the Flux Group.
# All rights reserved.
#
# Lets emulate register_globals=off for a while.
...
...
@@ -57,6 +57,7 @@ $EXPOSETEMPLATES= 0;
$USERSELECTUIDS
=
1
;
$REMOTEWIKIDOCS
=
@
REMOTEWIKIDOCS
@
;
$GMAP_API_KEY
=
"@GMAP_API_KEY@"
;
$NONAMEDSETUP
=
@
DISABLE_NAMED_SETUP
@
;
$TBMAILADDR_OPS
=
"@TBOPSEMAIL_NOSLASH@"
;
$TBMAILADDR_WWW
=
"@TBWWWEMAIL_NOSLASH@"
;
...
...
www/nodessh.php3
View file @
4b18be17
<?php
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-201
0
University of Utah and the Flux Group.
# Copyright (c) 2000-201
1
University of Utah and the Flux Group.
# All rights reserved.
#
include
(
"defs.php3"
);
...
...
@@ -70,7 +70,11 @@ header("Content-Type: text/x-testbed-ssh");
header
(
"Content-Disposition: inline; filename=
$filename
;"
);
header
(
"Content-Description: SSH description file for a testbed node"
);
echo
"hostname:
$vname
.
$eid
.
$pid
.
$OURDOMAIN
\n
"
;
if
(
$NONAMEDSETUP
)
{
echo
"hostname:
$node_id
.
$OURDOMAIN
\n
"
;
}
else
{
echo
"hostname:
$vname
.
$eid
.
$pid
.
$OURDOMAIN
\n
"
;
}
echo
"login:
$uid
\n
"
;
if
(
$isvirt
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment