diff options
Diffstat (limited to 'compass/deploy/host_baremetal.sh')
-rw-r--r-- | compass/deploy/host_baremetal.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compass/deploy/host_baremetal.sh b/compass/deploy/host_baremetal.sh new file mode 100644 index 000000000..26238e04e --- /dev/null +++ b/compass/deploy/host_baremetal.sh @@ -0,0 +1,9 @@ +function get_host_macs() { + local config_file=$WORK_DIR/installer/compass-install/install/group_vars/all + local machines=`echo $HOST_MACS|sed 's/ /,/g'` + + echo "test: true" >> $config_file + echo "pxe_boot_macs: [${machines}]" >> $config_file + + echo $machines +} |