Skip to content
GitLab
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
e94829f6
Commit
e94829f6
authored
Aug 10, 2004
by
Leigh B. Stoller
Browse files
Relax patterns for frisbee and freebsd MFS.
parent
b9b48967
Changes
1
Hide whitespace changes
Inline
Side-by-side
tmcd/freebsd/cdboot/rc.cdboot
View file @
e94829f6
...
...
@@ -205,7 +205,7 @@ sub doboot()
#
return
0
;
}
elsif
(
$mfs
eq
"
frisbee
"
||
$mfs
eq
"
frisbee-new
"
)
{
elsif
(
$mfs
=~
/^
frisbee
.*$/
)
{
#
# Run the frisbee script. If all goes well it will reboot.
# Any problems we land back here, so go into the MFS so we
...
...
@@ -214,7 +214,7 @@ sub doboot()
system
("
$RCDIR
/rc.frisbee
");
goto
mfs
;
}
elsif
(
$mfs
eq
"
freebsd
"
||
$mfs
eq
"
freebsd-new
"
)
{
elsif
(
$mfs
=~
/^
freebsd
.*$/
)
{
goto
mfs
;
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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