19 lines
		
	
	
		
			314 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			314 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| #!/sbin/runscript
 | |
| # Copyright 2007-2008 Roy Marples
 | |
| # All rights reserved
 | |
| 
 | |
| description="Sets the hostname of the machine."
 | |
| 
 | |
| depend()
 | |
| {
 | |
| 	need checkroot
 | |
| }
 | |
| 
 | |
| start()
 | |
| {
 | |
| 	hostname=${hostname-${HOSTNAME-localhost}}
 | |
| 	ebegin "Setting hostname to ${hostname}"
 | |
| 	hostname "${hostname}"
 | |
| 	eend $? "Failed to set the hostname"
 | |
| }
 |