mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-11-04 10:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/sbin/openrc-run
 | 
						|
 | 
						|
name=uptermd
 | 
						|
description="Secure terminal sharing deamon"
 | 
						|
command="/usr/bin/uptermd"
 | 
						|
command_args="${command_args:---ssh-addr 0.0.0.0:2222}"
 | 
						|
command_background="yes"
 | 
						|
 | 
						|
depend() {
 | 
						|
	need net
 | 
						|
	after firewall
 | 
						|
}
 |