23 lines
		
	
	
		
			423 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			423 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#!/sbin/runscript
 | 
						|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
 | 
						|
# All rights reserved. Released under the 2-clause BSD license.
 | 
						|
 | 
						|
command=/usr/sbin/nscd
 | 
						|
command_args="${nscd_args}"
 | 
						|
pidfile=/var/run/nscd.pid
 | 
						|
name="Name Service Cache Daemon"
 | 
						|
 | 
						|
extra_started_commands="flush"
 | 
						|
 | 
						|
depend() {
 | 
						|
	need localmount
 | 
						|
	use net dns ldap ypbind
 | 
						|
	after bootmisc
 | 
						|
}
 | 
						|
 | 
						|
flush() {
 | 
						|
	ebegin "Flushing ${name}"
 | 
						|
	nscd -I all >/dev/null
 | 
						|
	eend $?
 | 
						|
}
 |