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 <salvador.fuentes@intel.com>
This commit is contained in:
Salvador Fuentes 2018-05-21 13:51:04 -05:00
parent 5d23a93a28
commit b667ac0ec7

View File

@ -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
```