Revert package name changes
[dmaap/messagerouter/messageservice.git] / src / main / swm / common / deinstall.env
1
2 # This file is used to set the environment which the install_*.sh files
3 # will use when executing.  Only set variables that must be derived at
4 # installation time here.  For variables that should be set by the installer
5 # in SWM, add VariableDescriptor elements to the descriptor.xml.  Place
6 # logical steps in the install_preproc.sh or install_postproc.sh.
7
8 . `dirname $0`/common.env
9
10 # CHECK FOR ABSOLUTELY REQUIRED VARIABLES HERE
11 #derive version components for lrm.xml
12 MAJOR_VERSION=`echo ${AFTSWM_ACTION_NEW_VERSION} | awk -F'.' '{print $1}'`; export MAJOR_VERSION
13 MINOR_VERSION=`echo ${AFTSWM_ACTION_NEW_VERSION} | awk -F'.' '{print $2}'`; export MINOR_VERSION
14 PATCH_VERSION=`echo ${AFTSWM_ACTION_NEW_VERSION} | awk -F'.' '{print $3}'`; export PATCH_VERSION
15