saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
		
							parent
							
								
									5eddbd49be
								
							
						
					
					
						commit
						43245272db
					
				
							
								
								
									
										13
									
								
								conf.d/._cfg0000_hddtemp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								conf.d/._cfg0000_hddtemp
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,13 @@ | ||||
| # Copyright 1999-2012 Gentoo Foundation | ||||
| # Distributed under the terms of the GNU General Public License v2 | ||||
| # $Id$ | ||||
| 
 | ||||
| # the hddtemp executable | ||||
| HDDTEMP_EXEC=/usr/sbin/hddtemp | ||||
| 
 | ||||
| # various options to pass to the daemon | ||||
| HDDTEMP_OPTS="--listen=127.0.0.1" | ||||
| 
 | ||||
| # a list of drives to check | ||||
| HDDTEMP_DRIVES="/dev/sda /dev/sdb" | ||||
| 
 | ||||
							
								
								
									
										23
									
								
								init.d/._cfg0000_hddtemp
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										23
									
								
								init.d/._cfg0000_hddtemp
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,23 @@ | ||||
| #!/sbin/runscript | ||||
| # Copyright 1999-2012 Gentoo Foundation | ||||
| # Distributed under the terms of the GNU General Public License v2 | ||||
| # $Id$ | ||||
| 
 | ||||
| depend() { | ||||
| 	need localmount | ||||
| } | ||||
| 
 | ||||
| start() { | ||||
| 	ebegin "Starting hddtemp daemon" | ||||
| 	/sbin/start-stop-daemon --start --quiet --exec ${HDDTEMP_EXEC} \ | ||||
| 	-- -d ${HDDTEMP_OPTS} ${HDDTEMP_DRIVES} | ||||
| 	eend $? | ||||
| } | ||||
| 
 | ||||
| stop() { | ||||
| 	ebegin "Stopping hddtemp daemon" | ||||
| 	start-stop-daemon --stop --quiet --exec ${HDDTEMP_EXEC} | ||||
| 	eend $? | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Hans Wurst
							Hans Wurst