git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@15427 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| # postinst script for xCAT
 | |
| #
 | |
| # see: dh_installdeb(1)
 | |
| 
 | |
| set -e
 | |
| 
 | |
| # summary of how this script can be called:
 | |
| #        * <postinst> `configure' <most-recently-configured-version>
 | |
| #        * <old-postinst> `abort-upgrade' <new version>
 | |
| #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
 | |
| #          <new-version>
 | |
| #        * <postinst> `abort-remove'
 | |
| #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
 | |
| #          <failed-install-package> <version> `removing'
 | |
| #          <conflicting-package> <version>
 | |
| # for details, see http://www.debian.org/doc/debian-policy/ or
 | |
| # the debian-policy package
 | |
| 
 | |
| 
 | |
| case "$1" in
 | |
|     configure)
 | |
|          #make dir for the current pid
 | |
|          mkdir -p /var/run/xcat
 | |
| 	 cp -f /opt/xcat/share/xcat/scripts/xHRM /install/postscripts/
 | |
| 	. /etc/profile.d/xcat.sh
 | |
| 	if [ -f /tmp/xCAT_upgrade.tmp ]
 | |
| 	then
 | |
|             if [ -r "/tmp/xcat/installservice.pid" ]; then
 | |
|                 mv /tmp/xcat/installservice.pid /var/run/xcat/installservice.pid
 | |
|             fi
 | |
|             if [ -r "/tmp/xcat/udpservice.pid" ]; then
 | |
|                 mv /tmp/xcat/udpservice.pid /var/run/xcat/udpservice.pid
 | |
|             fi
 | |
|             if [ -r "/tmp/xcat/mainservice.pid" ]; then
 | |
|                 mv /tmp/xcat/mainservice.pid /var/run/xcat/mainservice.pid
 | |
|             fi
 | |
| 	    xcatconfig -u
 | |
| 	    rm /tmp/xCAT_upgrade.tmp
 | |
| 	else
 | |
| 	    xcatconfig -i -d -s
 | |
| 	fi
 | |
| 	/etc/init.d/apache2 restart
 | |
|     ;;
 | |
| 
 | |
|     abort-upgrade|abort-remove|abort-deconfigure)
 | |
|     ;;
 | |
| 
 | |
|     *)
 | |
|         echo "postinst called with unknown argument \`$1'" >&2
 | |
|         exit 1
 | |
|     ;;
 | |
| esac
 | |
| 
 | |
| # dh_installdeb will replace this with shell code automatically
 | |
| # generated by other debhelper scripts.
 | |
| 
 | |
| #DEBHELPER#
 | |
| 
 | |
| exit 0
 |