Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos
/
0fdf7c97679b5d5f6ac04c88e1230a6862f22638
/
.
/
utils
/
warden
/
bin
/
create-cell
blob: f24a386bbf7f14c7150936914051963db4246adf [
file
] [
log
] [
blame
]
#!/bin/bash
# Creates a new cell.
name
=
"$1"
ipx
=
"$2"
key
=
"$3"
cd $
(
dirname $0
)
./
clone
-
node base
-
mininet $
{
ipx
/
x
/
0
}
$name
-
mn
"$key"
for
n
in
{
1.
.
3
};
do
./
clone
-
node base
-
onos $
{
ipx
/
x
/
$n
}
$name
-
$n
"$key"
done