aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/mac_generator.sh
diff options
context:
space:
mode:
authorcarey.xu <carey.xuhan@huawei.com>2015-08-10 23:02:31 -0400
committercarey.xu <carey.xuhan@huawei.com>2015-08-13 04:24:03 -0400
commit10e776642a16b2584be88e5be8740f05535d7d06 (patch)
treebf386defd6cde54c6003a3855fb852fe1806bdd7 /deploy/mac_generator.sh
parent5aedf594112c0749b6e9039d15b9fe70d210a942 (diff)
Add deploy scripts for compass
JIRA: COMPASS-11 Change-Id: Id588912c73b424228b6f01cd47fd282d040f7b8f Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'deploy/mac_generator.sh')
-rwxr-xr-xdeploy/mac_generator.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/deploy/mac_generator.sh b/deploy/mac_generator.sh
new file mode 100755
index 00000000..8dee3753
--- /dev/null
+++ b/deploy/mac_generator.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+function mac_address_part() {
+ hex_number=$(printf '%02x' $RANDOM)
+ number_length=${#hex_number}
+ number_start=$(expr $number_length - 2)
+ echo ${hex_number:$number_start:2}
+}
+
+function mac_address() {
+ echo "'00:00:$(mac_address_part):$(mac_address_part):$(mac_address_part):$(mac_address_part)'"
+}
+
+machines=''
+for i in `seq $1`; do
+ mac=$(mac_address)
+
+ if [[ -z $machines ]]; then
+ machines="${mac}"
+ else
+ machines="${machines} ${mac}"
+ fi
+done
+echo ${machines}