summaryrefslogtreecommitdiffstats
path: root/deploy/mac_generator.sh
diff options
context:
space:
mode:
authorJustin chi <chigang@huawei.com>2015-08-13 08:26:05 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-08-13 08:26:05 +0000
commitade17ce57eb08dbf262cb9b6f1893367e2832dc1 (patch)
tree3f6c489086ca0f002f15114e71f4d64d1564f2b8 /deploy/mac_generator.sh
parent7951b094df92c40417ec66c4be58871911bbed07 (diff)
parent10e776642a16b2584be88e5be8740f05535d7d06 (diff)
Merge "Add deploy scripts for compass"
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}