11 lines
		
	
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| hostType=ubuntu1804
 | |
| 
 | |
| SCRIPT_PATH=$(dirname $(realpath -s $0))
 | |
| . $SCRIPT_PATH/functions
 | |
| cd $SCRIPT_PATH/..
 | |
| 
 | |
| performInstallLocal "$#"
 |