-Change remoteshell to retrieve ssh host keys via credentials plugin -Change allowcred.awk to be persistant in execution for multiple runs -Move stunnel setup to the post.rh scripts (post.sles to do) -Migrate to no longer have per-node postscripts generated for redhat installs -Change to no longer use a postscripts tar file, recursive ftp instead -Change to setup vsftpd git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1238 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/awk -f
 | 
						|
BEGIN {
 | 
						|
        listener = "/inet/tcp/300/0/0"
 | 
						|
        quit = "no"
 | 
						|
 | 
						|
 | 
						|
       while (match(quit,"no")) {
 | 
						|
         while ((listener |& getline) > 0) {
 | 
						|
                 if (match($0,"CREDOKBYYOU?")) {
 | 
						|
                         print "CREDOKBYME" |& listener
 | 
						|
                   }
 | 
						|
         }
 | 
						|
         close(listener)
 | 
						|
      }
 | 
						|
}
 |