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.
This commit is contained in:
Ian Lewis
2019-08-05 15:34:29 +09:00
parent e06142e033
commit 5f6e3739ef
+1 -1
View File
@@ -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
)
```