diff --git a/multi-node-aio/README.rst b/multi-node-aio/README.rst index 33935618..12b2beb1 100644 --- a/multi-node-aio/README.rst +++ b/multi-node-aio/README.rst @@ -95,6 +95,10 @@ to change this password please edit the pre-seed files. ``build.sh`` Options -------------------- +Set an external inventory used for the MNAIO: + ``MNAIO_INVENTORY=${MNAIO_INVENTORY:-playbooks/inventory}`` + + Set to instruct the preseed what the default network is expected to be: ``DEFAULT_NETWORK="${DEFAULT_NETWORK:-eth0}"`` diff --git a/multi-node-aio/build.sh b/multi-node-aio/build.sh index fd678a6b..831deff2 100755 --- a/multi-node-aio/build.sh +++ b/multi-node-aio/build.sh @@ -20,12 +20,12 @@ source bootstrap.sh source ansible-env.rc ansible mnaio_hosts \ - -i playbooks/inventory \ + -i ${MNAIO_INVENTORY:-"playbooks/inventory"} \ -m pip \ -a "name=netaddr" ansible-playbook -vv \ - -i playbooks/inventory \ + -i ${MNAIO_INVENTORY:-"playbooks/inventory"} \ -e setup_host=${SETUP_HOST:-"true"} \ -e setup_pxeboot=${SETUP_PXEBOOT:-"true"} \ -e setup_dhcpd=${SETUP_DHCPD:-"true"} \