mirror of
				https://github.com/opennetworkinglab/onos.git
				synced 2025-10-31 08:11:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			462 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			462 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # ----------------------------------------------------------------------------
 | |
| # Continuously watches the Apache Karaf log; survives 'karaf clean'
 | |
| # ----------------------------------------------------------------------------
 | |
| . $ONOS_ROOT/tools/build/envDefaults
 | |
| 
 | |
| KARAF_LOG=/tmp/onos-$ONOS_POM_VERSION/apache-karaf-$KARAF_VERSION/data/log/karaf.log
 | |
| 
 | |
| while true; do
 | |
|     [ ! -f $KARAF_LOG ] && sleep 2 && continue
 | |
|     tail -n 512 -f -F $KARAF_LOG
 | |
| done
 |