26508884ef
Initial version of the os-disk-config element and an image target to allow building a minimal image for testing and demo purposes. None of this has been tested yet, but the image build completes successfully so it should be a starting point anyway.
8 lines
243 B
Bash
8 lines
243 B
Bash
#!/bin/bash
|
|
|
|
export DIB_INSTALLTYPE_os_disk_config="${DIB_INSTALLTYPE_os_cloud_config:-"source"}"
|
|
|
|
if [ -z "${OS_DISK_CONFIG_VENV_DIR:-}" ]; then
|
|
export OS_DISK_CONFIG_VENV_DIR="${OPENSTACK_VENV_DIR:-"/opt/stack/venvs/os-disk-config"}"
|
|
fi
|