Fix tinyipa initrd tarballs.openstack.org file name

The file name that the ironic devstack script is trying to download for
tinyipa mistakenly has ".cpio" in the name when it shouldn't, this patch
removes it.

Change-Id: I00f1856c186709f43513048e2b9634e57dc32410
This commit is contained in:
Sam Betts 2016-04-12 10:40:30 +01:00
parent 1bff8ddee4
commit b0c09844e1

View File

@ -118,7 +118,7 @@ case $IRONIC_RAMDISK_TYPE in
;;
tinyipa)
IRONIC_AGENT_KERNEL_URL=${IRONIC_AGENT_KERNEL_URL:-http://tarballs.openstack.org/ironic-python-agent/tinyipa/files/tinyipa-${IPA_DOWNLOAD_BRANCH}.vmlinuz}
IRONIC_AGENT_RAMDISK_URL=${IRONIC_AGENT_RAMDISK_URL:-http://tarballs.openstack.org/ironic-python-agent/tinyipa/files/tinyipa-${IPA_DOWNLOAD_BRANCH}.cpio.gz}
IRONIC_AGENT_RAMDISK_URL=${IRONIC_AGENT_RAMDISK_URL:-http://tarballs.openstack.org/ironic-python-agent/tinyipa/files/tinyipa-${IPA_DOWNLOAD_BRANCH}.gz}
;;
*)
die $LINENO "Unrecognised IRONIC_RAMDISK_TYPE: $IRONIC_RAMDISK_TYPE. Expected 'coreos' or 'tinyipa'"