mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 05:12:30 +00:00 
			
		
		
		
	RH7/Centos7 and recent versions of fedora relocate `/*bin/*` into `/usr/*bin/`. This causes conflicts for upgrades against xCAT-genesis-scripts-* packages which expect the `/bin` a to be a directory while `xCAT-genesis-base-*` packages provide a link. Relocating all files into `/usr` fixes that conflict and allows a clean upgrade from all old versions.
		
			
				
	
	
		
			33 lines
		
	
	
		
			571 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			571 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/awk -f
 | 
						|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | 
						|
 | 
						|
BEGIN {
 | 
						|
    xcatdhost = ARGV[1]
 | 
						|
    xcatdport = ARGV[2]
 | 
						|
    flag = ARGV[3]
 | 
						|
    
 | 
						|
	if (!flag) flag = "next"
 | 
						|
 | 
						|
	ns = "/inet/tcp/0/" ARGV[1] "/" xcatdport
 | 
						|
 | 
						|
	while(1) {
 | 
						|
		if((ns |& getline) > 0)
 | 
						|
			print $0 | "logger -t xcat -p local4.info"
 | 
						|
        else {
 | 
						|
            print "Retrying flag update" | "logger -t xcat -p local4.info"
 | 
						|
            close(ns)
 | 
						|
            system("sleep 10")
 | 
						|
        }
 | 
						|
 | 
						|
		if($0 == "ready")
 | 
						|
			print flag |& ns
 | 
						|
		if($0 == "done")
 | 
						|
			break
 | 
						|
	}
 | 
						|
 | 
						|
	close(ns)
 | 
						|
 | 
						|
	exit 0
 | 
						|
}
 | 
						|
 |