mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-30 02:42:41 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3643 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			115 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|       <post-scripts config:type="list">
 | |
|         <script>
 | |
|           <filename>xcat.sh</filename>
 | |
|           <interpreter>shell</interpreter>
 | |
|           <source>
 | |
| 
 | |
| <![CDATA[
 | |
| #!/bin/sh
 | |
| 
 | |
| cd /etc/sysconfig/network
 | |
| rm -f ifcfg-eth-id*
 | |
| rm -f ifcfg-myri*
 | |
| cat >ifcfg-eth0 <<EOF
 | |
| DEVICE=eth0
 | |
| BOOTPROTO=dhcp
 | |
| STARTMODE=onboot
 | |
| EOF
 | |
| 
 | |
| export PRINIC=#TABLE:noderes:$NODE:primarynic#
 | |
| if [ -z "$PRINIC" ]; then
 | |
|     export PRINIC=eth0
 | |
| fi
 | |
| if [ "$PRINIC" != "eth0" ]
 | |
| then
 | |
| 	cd /etc/sysconfig/network
 | |
| 	if [ ! -r ifcfg-$PRINIC ]
 | |
| 	then
 | |
| 		cp -f ifcfg-eth0 ifcfg-$PRINIC
 | |
| 		perl -pi -e "s/eth0/$PRINIC/" ifcfg-$PRINIC
 | |
| 		echo "DHCLIENT_PRIMARY_DEVICE=yes" >> ifcfg-$PRINIC
 | |
| 	fi
 | |
| fi
 | |
| perl -pi -e 's/^FIREWALL="yes"/FIREWALL="no"/' /etc/sysconfig/network/config
 | |
| /etc/init.d/network restart
 | |
| 
 | |
| RAND=$(perl -e 'print int(rand(50)). "\n"')
 | |
| sleep $RAND
 | |
| jsi=0
 | |
| while [ $(hostname) == 'linux' ]
 | |
| do
 | |
| 	if [ $jsi -gt 10 ]; then
 | |
| 		logger "Slept too long!"
 | |
| 		exit
 | |
| 	fi
 | |
| 	let jsi=jsi+1
 | |
| 	sleep 1
 | |
| done
 | |
| echo "Slept $jsi seconds before hostname made sense."
 | |
| 
 | |
| HOSTNAME=$(hostname -s)
 | |
| echo $HOSTNAME
 | |
| 
 | |
| /sbin/portmap
 | |
| export MASTER_IP=#XCATVAR:XCATMASTER#
 | |
| export MASTER_IPS=#XCATVAR:XCATMASTER#
 | |
| export MASTER="#XCATVAR:XCATMASTER#"
 | |
| 
 | |
| #
 | |
| #  This script has not yet been updated to work with service nodes
 | |
| #
 | |
| for i in $(seq 1 20)
 | |
| do
 | |
| 	GOTIT=0
 | |
| 	for i in $MASTER_IPS
 | |
| 	do
 | |
| 		#mount -r $i:/install/postscripts /xcatpost
 | |
|       wget -l inf -N -r --waitretry=10 --random-wait --retry-connrefused  -t 0 -T 60 ftp://$i/postscripts
 | |
| 
 | |
| 		if [ "$?" = "0" ]
 | |
| 		then
 | |
|             if [ -x  /usr/bin/openssl ]; then
 | |
|                 XCATSERVER=$i:3001
 | |
|                 export XCATSERVER
 | |
|             else
 | |
|                 exit 1
 | |
|             fi
 | |
|          fi
 | |
|          mv $i/postscripts /xcatpost
 | |
|          rm -rf $i
 | |
|          chmod +x /xcatpost/*
 | |
|          /xcatpost/getpostscript.awk |sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /tmp/mypostscript
 | |
|          MYCONT=`cat /tmp/mypostscript`
 | |
|          while [ -z "$MYCONT" ]; do
 | |
|             let SLI=$RANDOM%10+10
 | |
|             sleep $SLI
 | |
|             /xcatpost/getpostscript.awk |sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /tmp/mypostscript
 | |
|             MYCONT=`cat /tmp/mypostscript`
 | |
|          done
 | |
|          chmod +x /tmp/mypostscript
 | |
| 			GOTIT=1
 | |
| 			break
 | |
| 		fi
 | |
| 	done
 | |
| 	if [ "$GOTIT" = "1" ]
 | |
| 	then
 | |
| 		break
 | |
| 	fi
 | |
| 	RAND=$(perl -e 'print int(rand(5)). "\n"')
 | |
| 	sleep $RAND
 | |
| done
 | |
| PATH=/xcatpost:$PATH
 | |
| export PATH
 | |
| /tmp/mypostscript
 | |
| updateflag.awk $MASTER 3002
 | |
| cd /
 | |
| /xcatpost/#TABLE:nodelist:$NODE:node#
 | |
| rm -Rf /xcatpost
 | |
| rm -f /tmp/mypostscript
 | |
| rmdir /xcatpost
 | |
| ]]>
 | |
| 
 | |
|           </source>
 | |
|         </script>
 | |
|       </post-scripts>
 |