1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 23:34:57 +00:00
Files
os/scripts/bootstrap

13 lines
309 B
Plaintext
Raw Normal View History

2015-02-08 21:38:37 -07:00
#!/bin/bash
set -e
set -x
cd $(dirname $0)/..
apt-get update
2015-02-16 22:09:26 -07:00
apt-get install -y curl rsync build-essential syslinux xorriso libblkid-dev libmount-dev libselinux1-dev
2015-02-08 21:38:37 -07:00
2015-02-19 11:26:59 -07:00
if [ ! -d /usr/local/go ]; then
curl -sL https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz | tar xvzf - -C /usr/local
fi