git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14782 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/awk -f
 | |
| # IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | |
| BEGIN {
 | |
| 	port = 3001
 | |
| 	listener = "/inet/tcp/" port "/0/0"
 | |
|     quit = "no"
 | |
| 	while (match(quit,"no")) {
 | |
| 		while (match(quit,"no") && (listener |& getline) > 0) {
 | |
| 			if (match($0,"restart")) {
 | |
| 				print "restarting bootstrap process" |& listener
 | |
|                 quit="yes"
 | |
| 				system("echo \"" $0 "\" > /restart")
 | |
| 		        close(listener)
 | |
| 			}
 | |
| 		}
 | |
| 		close(listener)
 | |
| 	}
 | |
| }
 |