summaryrefslogtreecommitdiffhomepage
path: root/content/docs
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2019-07-11 08:41:52 +0900
committerIan Lewis <ianlewis@google.com>2019-08-05 15:34:29 +0900
commit5f6e3739ef5d4d4bb761ec8a2a764976326b05fb (patch)
tree5e0f09e03f016db9482c4123b9da9322946a6d57 /content/docs
parente06142e033b3d15a5eaeae0e05f0dfd59c090a48 (diff)
runsc permissions update in install instructions
Make the instructions clearer by putting the chown and chmod together and make it match the FAQ by setting the permissions bits exactly.
Diffstat (limited to 'content/docs')
-rw-r--r--content/docs/includes/install_gvisor.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/docs/includes/install_gvisor.md b/content/docs/includes/install_gvisor.md
index 404f3f5b4..cfc74768d 100644
--- a/content/docs/includes/install_gvisor.md
+++ b/content/docs/includes/install_gvisor.md
@@ -19,9 +19,9 @@ a good place to put the `runsc` binary.
wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc
wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512
sha512sum -c runsc.sha512
- chmod a+x runsc
sudo mv runsc /usr/local/bin
sudo chown root:root /usr/local/bin/runsc
+ chmod 0755 /usr/local/bin/runsc
)
```