From 6e83bdbd75942faa658a2b619f583a2107317c08 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 21 May 2018 16:13:02 +0100 Subject: [PATCH] docs: Ensure install doc bash commands are non-interactive Remove the `bash` tag from the last command in the install guides where we show the user how to create a container with a busybox shell. This doesn't change the content of the document but it ensures that all bash blocks can be run non-interactively (by the `kata-doc-to-script.sh` script in the tests repo). Fixes #109. Signed-off-by: James O. D. Hunt --- install/fedora-installation-guide.md | 2 +- install/ubuntu-installation-guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/fedora-installation-guide.md b/install/fedora-installation-guide.md index 6f17311be1..23fd5f1548 100644 --- a/install/fedora-installation-guide.md +++ b/install/fedora-installation-guide.md @@ -48,6 +48,6 @@ $ sudo systemctl restart docker You are now ready to run Kata Containers: -```bash +``` $ sudo docker run -ti busybox sh ``` diff --git a/install/ubuntu-installation-guide.md b/install/ubuntu-installation-guide.md index 71c3f98aaf..711dff9911 100644 --- a/install/ubuntu-installation-guide.md +++ b/install/ubuntu-installation-guide.md @@ -52,6 +52,6 @@ $ sudo systemctl restart docker You are now ready to run Kata Containers: -```bash +``` $ sudo docker run -ti busybox sh ```