d96717ec3c
Updates the ELEMENTS_PATH in build.sh file of DIB inorder to pass the ironic-python-agent-buildimage-dib test. Change-Id: Ib20ae0c9add5a20e82f46c5cd1dd48d92d0a4849 Task: 36323 Story: 2005114
11 lines
400 B
Bash
Executable File
11 lines
400 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#The path for location of ironic-python-agent-ramdisk in ironic-python-image-builder
|
|
#is set using environment variable.
|
|
export ELEMENTS_PATH=${ELEMENTS_PATH:-.}
|
|
|
|
#The command to build image using disk-image-builder.
|
|
#Run the command to build the image giving the argument(OS name)
|
|
#For example: ./build.sh ubuntu
|
|
disk-image-create -o ironic-python-agent ironic-python-agent-ramdisk $@
|