diff options
Diffstat (limited to 'test/shim/runsc-install.sh')
-rwxr-xr-x | test/shim/runsc-install.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/shim/runsc-install.sh b/test/shim/runsc-install.sh new file mode 100755 index 000000000..420fe01e9 --- /dev/null +++ b/test/shim/runsc-install.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# Sample script to install runsc + +wget -q --https-only \ + https://storage.googleapis.com/gvisor/releases/${RUNSC_VERSION}/runsc +chmod +x runsc +sudo mv runsc /usr/local/bin/ |