26 lines
		
	
	
		
			452 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			452 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!/sbin/runscript
 | |
| # Copyright 2007-2008 Roy Marples
 | |
| # All rights reserved
 | |
| 
 | |
| depend()
 | |
| {
 | |
| 	use hostname
 | |
| 	before bootmisc logger
 | |
| }
 | |
| 
 | |
| start()
 | |
| {
 | |
| 	[ -e /etc/sysctl.conf ] || return 0
 | |
| 	
 | |
| 	ebegin "Configuring kernel parameters"
 | |
| 	local retval=0 var= comments=
 | |
| 	while read var comments; do
 | |
| 		case "${var}" in
 | |
| 			""|"#"*) continue;;
 | |
| 		esac
 | |
| 		sysctl -w "${var}" >/dev/null || retval=1
 | |
| 	done < /etc/sysctl.conf
 | |
| 	eend ${retval} "Some errors were encountered"
 | |
| 	eend $?
 | |
| }
 |