You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# !/bin/bash |
|
# Generates test identities and joins them to a test network |
|
|
|
NWID=$1 |
|
|
|
mkdir -p alice bob carol ted |
|
|
|
./../bin/selftest generate_id ${NWID} alice |
|
./../bin/selftest generate_id ${NWID} bob |
|
./../bin/selftest generate_id ${NWID} carol |
|
./../bin/selftest generate_id ${NWID} ted
|
|
|