From ed39937a2ce057a366bd3b6175e11d216ef1f4dd Mon Sep 17 00:00:00 2001 From: Jose Carlos Venegas Munoz Date: Thu, 24 Jan 2019 17:18:54 -0600 Subject: [PATCH] static: release: add correct symlink until is fixed dest dir is broken and symlink is created on the host not the tarbal. See: https://github.com/kata-containers/runtime/issues/1161 Signed-off-by: Jose Carlos Venegas Munoz --- release/kata-deploy-binaries.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/kata-deploy-binaries.sh b/release/kata-deploy-binaries.sh index 86941cd665..f24f3da839 100755 --- a/release/kata-deploy-binaries.sh +++ b/release/kata-deploy-binaries.sh @@ -142,6 +142,9 @@ install_kata_components() { done sed -i -e '/^initrd =/d' "${destdir}/${prefix}/share/defaults/${project}/configuration-qemu.toml" sed -i -e '/^initrd =/d' "${destdir}/${prefix}/share/defaults/${project}/configuration-fc.toml" + pushd "${destdir}/${prefix}/share/defaults/${project}" + ln -sf "configuration-qemu.toml" configuration.toml + popd } main() {