mirror of
				https://github.com/optim-enterprises-bv/secureblue.git
				synced 2025-11-04 04:18:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Tell this script to exit if there are any errors.
 | 
						|
# You should have this in every custom script, to ensure that your completed
 | 
						|
# builds actually ran successfully without any errors!
 | 
						|
set -oue pipefail
 | 
						|
 | 
						|
curl -L https://pkgs.tailscale.com/stable/fedora/tailscale.repo -o /etc/yum.repos.d/tailscale.repo
 |