Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
19b6d02e
Commit
19b6d02e
authored
Jan 09, 2002
by
Robert Ricci
Browse files
Moved plasticwrap to use configure, so that it can get the right boss node
and ops email address.
parent
9a2488d7
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure
View file @
19b6d02e
...
...
@@ -1053,6 +1053,7 @@ outfiles="$outfiles Makeconf GNUmakefile \
os/frisbee.redux/GNUmakefile
\
pxe/GNUmakefile pxe/proxydhcp.restart pxe/bootinfo.restart
\
security/GNUmakefile security/paperbag security/lastlog_daemon
\
security/plasticwrap
\
tbsetup/GNUmakefile tbsetup/console_setup
\
tbsetup/console_reset tbsetup/bwconfig tbsetup/power_rpc27.pm
\
tbsetup/os_load tbsetup/os_setup tbsetup/power
\
...
...
configure.in
View file @
19b6d02e
...
...
@@ -168,6 +168,7 @@ outfiles="$outfiles Makeconf GNUmakefile \
os/frisbee.redux/GNUmakefile \
pxe/GNUmakefile pxe/proxydhcp.restart pxe/bootinfo.restart \
security/GNUmakefile security/paperbag security/lastlog_daemon \
security/plasticwrap \
tbsetup/GNUmakefile tbsetup/console_setup \
tbsetup/console_reset tbsetup/bwconfig tbsetup/power_rpc27.pm \
tbsetup/os_load tbsetup/os_setup tbsetup/power \
...
...
security/plasticwrap
→
security/plasticwrap
.in
View file @
19b6d02e
#!/usr/bin/perl
#!/usr/bin/perl -w
#
# Configure variables
#
my
$BOSSNODE
=
"
@BOSSNODE
@
";
my
$TBOPSEMAIL
=
"
@TBOPSEMAIL
@
";
# Location of ssh program
if
(
-
x
"
/usr/local/bin/ssh
"
)
{
...
...
@@ -6,11 +12,11 @@ if (-x "/usr/local/bin/ssh" ) {
}
elsif
(
-
x
"
/usr/bin/ssh
"
)
{
$ssh
=
"
/usr/bin/ssh
";
}
else
{
die
"
Unable to find ssh - please send mail to
testbed-ops
\@
fast.cs.utah.edu
\n
";
die
"
Unable to find ssh - please send mail to
$TBOPSEMAIL
\n
";
}
# Remote host to connect to
$host
=
"
boss.emulab.net
"
;
$host
=
$BOSSNODE
;
# String to turn off password authentications
$nopass
=
"
-o 'BatchMode yes'
";
...
...
Write
Preview
Supports
Markdown
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