Merge "Allow for the use of an external inventory"

This commit is contained in:
Jenkins 2017-09-27 18:40:52 +00:00 committed by Gerrit Code Review
commit b406dc02eb
2 changed files with 6 additions and 2 deletions

View File

@ -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}"``

View File

@ -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"} \