16 lines
		
	
	
		
			207 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			207 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/sbin/openrc-run
 | 
						|
 | 
						|
description="Direktil boot operations."
 | 
						|
 | 
						|
depend()
 | 
						|
{
 | 
						|
	provide net
 | 
						|
}
 | 
						|
 | 
						|
start()
 | 
						|
{
 | 
						|
	ebegin "Running Direktil boot operations"
 | 
						|
	/sbin/dkl init boot
 | 
						|
	eend $? "Direktil boot operations failed"
 | 
						|
}
 |