docs: Add instructions to run the kata-doc-to-script generated scripts

Update the `kata-doc-to-script` install document to actually execute the
generated scripts, allowing the entire installation to be tested by the CI.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2018-10-24 11:05:43 +01:00
parent 67982e7a0f
commit 7dba230a1c

View File

@@ -22,6 +22,12 @@ $ bash -c "$(curl -fsSL https://raw.githubusercontent.com/kata-containers/tests/
```
For example, if your distribution is CentOS, the previous example will generate a runnable shell script called `centos-install.sh`.
To proceed with the installation, run:
```bash
$ source /etc/os-release
$ bash "./${ID}-install.sh"
```
## Docker Installation and Setup
@@ -32,3 +38,10 @@ $ bash -c "$(curl -fsSL https://raw.githubusercontent.com/kata-containers/tests/
```
For example, if your distribution is CentOS, this will generate a runnable shell script called `centos-docker-install.sh`.
To proceed with the Docker installation, run:
```bash
$ source /etc/os-release
$ bash "./${ID}-docker-install.sh"
```