summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIan Lewis <ianmlewis@gmail.com>2019-10-18 00:32:14 -0400
committerIan Lewis <ianlewis@google.com>2019-10-18 13:41:44 +0900
commitb5ccc29b9506b2fc4e5dd24a53e589ef4e334280 (patch)
treed47ddc311ced26b27601ae5566c7ed96381ac470
parent015a1b57d6b701cb8b687fb70aa9a5dbcb1edc25 (diff)
Fixed some review issues
Fixed some issues that came up during review. - Update section titles to have a full phrase - Fix ${URL} - Have short install script clean up after itself so it can be re-run. - Small wording changes.
-rw-r--r--content/docs/user_guide/install.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/content/docs/user_guide/install.md b/content/docs/user_guide/install.md
index cdfb0ff96..e18af233b 100644
--- a/content/docs/user_guide/install.md
+++ b/content/docs/user_guide/install.md
@@ -9,7 +9,7 @@ weight = 20
## Versions
The `runsc` binaries and repositories are available in multiple versions and
-release channels. First, you should pick the version you'd like to install. For
+release channels. You should pick the version you'd like to install. For
experimentation, the nightly release is recommended. For production use, the
latest release is recommended.
@@ -63,7 +63,7 @@ Unlike the specific release above, which may include updates, this release will
not change. To use a specific point release, use the above URL for `URL` in the
manual instructions below. For apt, use `${yyyymmdd}.${rc}` for `DIST` below.
-## From an `apt` repository
+## Install from an `apt` repository
First, appropriate dependencies must be installed to allow `apt` to install
packages via https:
@@ -118,7 +118,7 @@ sudo apt-get update && sudo apt-get install -y runsc
If you have Docker installed, it will be automatically configured.
-## Manually
+## Install manually
After selecting an appropriate `URL` above, you can download `runsc` directly
from `${URL}/runsc` ([latest][latest-nightly]) and a checksum hash from
@@ -131,8 +131,9 @@ appropriate location by running:
(
set -e
wget ${URL}/runsc
- wget ${URL/runsc.sha512
+ wget ${URL}/runsc.sha512
sha512sum -c runsc.sha512
+ rm -f runsc.sha512
sudo mv runsc /usr/local/bin
sudo chown root:root /usr/local/bin/runsc
sudo chmod 0755 /usr/local/bin/runsc