 b6e440a0f5
			
		
	
	b6e440a0f5
	
	
	
		
			
			ea7a790 jail: add support for running OCI bundle bb4a446 uxc: add container management CLI tool Signed-off-by: Daniel Golle <daniel@makrotopia.org>
		
			
				
	
	
		
			19 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| 
 | |
| START=99
 | |
| USE_PROCD=1
 | |
| NAME=uxc
 | |
| PROG=/sbin/uxc
 | |
| 
 | |
| start_service() {
 | |
| 	[ "${__BOOT_UXC}" = "1" ] || return 0
 | |
| 	procd_open_instance "uxc"
 | |
| 	procd_set_param command "$PROG" boot
 | |
| 	procd_close_instance
 | |
| }
 | |
| 
 | |
| boot() {
 | |
| 	__BOOT_UXC=1
 | |
| 	start
 | |
| }
 |