17 lines
		
	
	
		
			233 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			233 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/sbin/openrc-run
 | 
						|
 | 
						|
description="Direktil default operations."
 | 
						|
 | 
						|
depend()
 | 
						|
{
 | 
						|
    # need anything?
 | 
						|
    :
 | 
						|
}
 | 
						|
 | 
						|
start()
 | 
						|
{
 | 
						|
	ebegin "Running Direktil default operations"
 | 
						|
	/sbin/dkl init default
 | 
						|
	eend $? "Direktil default operations failed"
 | 
						|
}
 |