mirror of
				https://github.com/flynx/proxmox-utils.git
				synced 2025-10-31 12:10:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/bash
 | |
| 
 | |
| # XXX should this be an interactive (env) option???
 | |
| #PROXMOX_UTILS=git@github.com:flynx/proxmox-utils.git
 | |
| PROXMOX_UTILS=${PROXMOX_UTILS:-https://github.com/flynx/proxmox-utils.git}
 | |
| 
 | |
| # XXX do we need to update the system here?
 | |
| apt update
 | |
| apt upgrade
 | |
| 
 | |
| # keep this to the minimum...
 | |
| apt install \
 | |
| 	git make wget vim
 | |
| 
 | |
| git clone $PROXMOX_UTILS 
 | |
| 
 | |
| cd proxmox-utils
 | |
| 
 | |
| make bootstrap
 | |
| 
 | |
| 
 | |
| # vim:set ts=4 sw=4 nowrap :
 |