From b667ac0ec7d649f2fd479ff6a92c43f40c17092d Mon Sep 17 00:00:00 2001 From: Salvador Fuentes Date: Mon, 21 May 2018 13:51:04 -0500 Subject: [PATCH] install: Fix centos obs url Remove backslash from centos url that was preventing the $VERSION_ID to take its correct value. Fixes: #112. Signed-off-by: Salvador Fuentes --- install/centos-installation-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/centos-installation-guide.md b/install/centos-installation-guide.md index f521a12c9b..8e1c0f64a6 100644 --- a/install/centos-installation-guide.md +++ b/install/centos-installation-guide.md @@ -19,7 +19,7 @@ For more information on installing Docker please refer to the ```bash $ source /etc/os-release $ sudo -E VERSION_ID=$VERSION_ID yum-config-manager --add-repo \ -http://download.opensuse.org/repositories/home:/katacontainers:/release/CentOS_\$VERSION_ID/home:katacontainers:release.repo +"http://download.opensuse.org/repositories/home:/katacontainers:/release/CentOS_${VERSION_ID}/home:katacontainers:release.repo" $ sudo -E yum -y install kata-runtime kata-proxy kata-shim ```