blob: 26238e04e1bb62dafbda11ecc1af7f095c13fc82 (
plain)
1
2
3
4
5
6
7
8
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
}
|