mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 16:31:40 +01:00 
			
		
		
		
	Since the upgrade we can drop the own go.mod and go.sum files. I also removed the config dir ownership. Also check is enabled because testing works.
		
			
				
	
	
		
			10 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| user=tlsrouter
 | |
| group=tlsrouter
 | |
| 
 | |
| addgroup -S tlsrouter 2>/dev/null
 | |
| adduser -S -D -h /var/lib/$user -s /sbin/nologin -G $group -g $user $user 2>/dev/null
 | |
| 
 | |
| exit 0
 |