docs: Fix outdent in Debian install guide

Remove the outdent in the Debian install guide.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2019-04-26 11:07:19 +01:00
parent b3a74db28f
commit 2f3a8f51f7

View File

@@ -2,30 +2,30 @@
1. Install the unsatisfied dependencies
Kata Containers packages depends on a version of `librbd1` that's not yet available in the `stable` repo.
A more recent version of `librbd1` can be installed from the `unstable` repo: https://packages.debian.org/sid/librbd1
Kata Containers packages depends on a version of `librbd1` that's not yet available in the `stable` repo.
A more recent version of `librbd1` can be installed from the `unstable` repo: https://packages.debian.org/sid/librbd1
Add `unstable` repo to `/etc/apt/sources.list.d/unstable.list` sources list:
```bash
$ sudo sh -c "echo '# for unstable packages
deb http://ftp.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.debian.org/debian/ unstable main contrib non-free' > /etc/apt/sources.list.d/unstable.list"
```
Set the repository to a lower priority than stable, to ensures that APT will prefer stable packages over unstable ones. This can be specified in `/etc/apt/preferences.d/unstable`:
```bash
$ sudo sh -c "echo 'Package: *
Pin: release a=unstable
Pin-Priority: 10' >> /etc/apt/preferences.d/unstable"
```
Add `unstable` repo to `/etc/apt/sources.list.d/unstable.list` sources list:
Finally, install `librbd1`:
```bash
$ sudo sh -c "echo '# for unstable packages
deb http://ftp.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.debian.org/debian/ unstable main contrib non-free' > /etc/apt/sources.list.d/unstable.list"
```
```bash
$ sudo apt-get update && sudo apt-get install -y -t unstable librbd1
```
Set the repository to a lower priority than stable, to ensures that APT will prefer stable packages over unstable ones. This can be specified in `/etc/apt/preferences.d/unstable`:
```bash
$ sudo sh -c "echo 'Package: *
Pin: release a=unstable
Pin-Priority: 10' >> /etc/apt/preferences.d/unstable"
```
Finally, install `librbd1`:
```bash
$ sudo apt-get update && sudo apt-get install -y -t unstable librbd1
```
2. Install the Kata Containers components with the following commands: