CentOS has been added as a multi-machine option to the Vagrant script. Ubuntu is still the default option. For starting the CentOS machine, use: vagrant up centos
		
			
				
	
	
		
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
sudo yum install -y git wget
 | 
						|
sudo yum update -y
 | 
						|
 | 
						|
wget --continue https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
 | 
						|
sudo tar -C /usr/local -xzf go1.8.1.linux-amd64.tar.gz
 | 
						|
 | 
						|
GETH_PATH="~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
 | 
						|
 | 
						|
echo "export PATH=$PATH:/usr/local/go/bin:$GETH_PATH" >> ~vagrant/.bashrc 
 |