16 lines
		
	
	
		
			253 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copy this file as variables.conf, with the correct values
 | 
						|
 | 
						|
# For both update and clear scripts:
 | 
						|
repo_name=""
 | 
						|
 | 
						|
# For update script:
 | 
						|
remote_repository=""
 | 
						|
ssh_key=""
 | 
						|
ssh_options="-i $ssh_key"
 | 
						|
exlist=""
 | 
						|
 | 
						|
# For clear script:
 | 
						|
repo_directory=""
 |