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
f21f03c6
Commit
f21f03c6
authored
Sep 30, 2003
by
Leigh B. Stoller
Browse files
Minor fix for ixpboot.
parent
4269dad1
Changes
2
Show whitespace changes
Inline
Side-by-side
tmcd/common/libsetup.pm
View file @
f21f03c6
...
...
@@ -1073,7 +1073,7 @@ sub dorouterconfig (;$)
CLOSETMCC
(
$TM
);
if
(
!
@stuff
)
{
return
0
;
return
@routes
;
}
#
...
...
@@ -1097,7 +1097,7 @@ sub dorouterconfig (;$)
print
RC
"
true
\n
";
close
(
RC
);
chmod
(
0755
,
TMROUTECONFIG
);
return
0
;
return
@routes
;
}
#
...
...
@@ -1764,7 +1764,7 @@ sub dorpms ()
# to avoid the stupid changing-exports-file server race
# (install-tarfile knows how to deal with said race when copying).
#
my
$installoption
=
"
-c
";
my
$installoption
=
(
REMOTE
()
?
"
-t
"
:
"
-c
"
)
;
open
(
RPM
,
"
>
"
.
TMRPM
)
or
die
("
Could not open
"
.
TMRPM
.
"
: $!
");
...
...
@@ -1813,7 +1813,7 @@ sub dotarballs ()
# to avoid the stupid changing-exports-file server race
# (install-tarfile knows how to deal with said race when copying).
#
my
$installoption
=
"
-c
";
my
$installoption
=
(
REMOTE
()
?
"
-t
"
:
"
-c
"
)
;
open
(
TARBALL
,
"
>
"
.
TMTARBALLS
)
or
die
("
Could not open
"
.
TMTARBALLS
.
"
: $!
");
...
...
tmcd/libsetup.pm
View file @
f21f03c6
...
...
@@ -1073,7 +1073,7 @@ sub dorouterconfig (;$)
CLOSETMCC
(
$TM
);
if
(
!
@stuff
)
{
return
0
;
return
@routes
;
}
#
...
...
@@ -1097,7 +1097,7 @@ sub dorouterconfig (;$)
print
RC
"
true
\n
";
close
(
RC
);
chmod
(
0755
,
TMROUTECONFIG
);
return
0
;
return
@routes
;
}
#
...
...
@@ -1764,7 +1764,7 @@ sub dorpms ()
# to avoid the stupid changing-exports-file server race
# (install-tarfile knows how to deal with said race when copying).
#
my
$installoption
=
"
-c
";
my
$installoption
=
(
REMOTE
()
?
"
-t
"
:
"
-c
"
)
;
open
(
RPM
,
"
>
"
.
TMRPM
)
or
die
("
Could not open
"
.
TMRPM
.
"
: $!
");
...
...
@@ -1813,7 +1813,7 @@ sub dotarballs ()
# to avoid the stupid changing-exports-file server race
# (install-tarfile knows how to deal with said race when copying).
#
my
$installoption
=
"
-c
";
my
$installoption
=
(
REMOTE
()
?
"
-t
"
:
"
-c
"
)
;
open
(
TARBALL
,
"
>
"
.
TMTARBALLS
)
or
die
("
Could not open
"
.
TMTARBALLS
.
"
: $!
");
...
...
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