2009-06-24 23:46:34 +00:00
|
|
|
Summary: Web Client for xCAT 2
|
|
|
|
Name: xCAT-UI
|
|
|
|
Version: %(cat Version)
|
|
|
|
Release: snap%(date +"%Y%m%d%H%M")
|
|
|
|
License: EPL
|
|
|
|
Group: Applications/System
|
2011-02-16 15:30:56 +00:00
|
|
|
URL: http://xcat.sourceforge.net/
|
|
|
|
Packager: IBM
|
|
|
|
Vendor: IBM
|
|
|
|
|
2009-06-29 18:59:31 +00:00
|
|
|
Source: xCAT-UI-%(cat Version).tar.gz
|
2009-06-24 23:46:34 +00:00
|
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
|
|
BuildArch: noarch
|
2009-06-29 18:59:31 +00:00
|
|
|
Provides: xCAT-UI = %{version}
|
2011-01-20 15:28:15 +00:00
|
|
|
Requires: xCAT-UI-deps >= 2.6
|
2009-06-24 23:46:34 +00:00
|
|
|
|
2011-02-16 15:30:56 +00:00
|
|
|
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
|
|
|
|
Prefix: /opt/xcat
|
|
|
|
|
2009-06-24 23:46:34 +00:00
|
|
|
%ifos linux
|
2011-02-16 15:30:56 +00:00
|
|
|
# httpd is provided as apache2 on SLES and httpd on RHEL
|
2009-12-15 06:32:32 +00:00
|
|
|
Requires: httpd
|
2009-06-24 23:46:34 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
2010-11-17 18:53:40 +00:00
|
|
|
Provides a browser-based interface for xCAT (Extreme Cloud Administration Toolkit).
|
2009-06-24 23:46:34 +00:00
|
|
|
|
|
|
|
%prep
|
2009-06-29 18:59:31 +00:00
|
|
|
%setup -q -n xCAT-UI
|
2011-02-16 15:30:56 +00:00
|
|
|
|
2009-06-24 23:46:34 +00:00
|
|
|
%build
|
2011-03-01 15:09:46 +00:00
|
|
|
# Minify Javascript files using Google Compiler
|
2011-03-02 14:22:58 +00:00
|
|
|
echo "Minifying Javascripts... This will take a couple of minutes."
|
|
|
|
|
2011-03-14 03:20:18 +00:00
|
|
|
%ifos linux
|
2011-03-01 15:09:46 +00:00
|
|
|
JAVA='/opt/ibm/java-ppc64-60/jre/bin/java'
|
2011-03-14 10:07:34 +00:00
|
|
|
declare -a FILES
|
2011-03-14 03:20:18 +00:00
|
|
|
%else
|
|
|
|
JAVA='/usr/java6_64/bin/java'
|
|
|
|
%endif
|
2011-03-01 15:09:46 +00:00
|
|
|
COMPILER_JAR='/xcat2/build/tools/compiler.jar'
|
|
|
|
UI_JS="js/"
|
|
|
|
|
|
|
|
IFS='
|
|
|
|
'
|
|
|
|
|
|
|
|
# Find all Javascript files
|
2011-03-14 10:09:53 +00:00
|
|
|
FILES=`find ${UI_JS} -name '*.js'`
|
2011-03-01 15:09:46 +00:00
|
|
|
for i in ${FILES[*]}; do
|
|
|
|
# Ignore Javascripts that are already minified
|
|
|
|
if [[ ! $i =~ '.*\.min\.js$' ]]; then
|
|
|
|
`${JAVA} -jar ${COMPILER_JAR} --warning_level=QUIET --js=$i --js_output_file=$i.min`
|
|
|
|
|
|
|
|
# Remove old Javascript and replace it with minified version
|
|
|
|
rm -rf $i
|
|
|
|
mv $i.min $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-06-24 23:46:34 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2009-06-29 18:59:31 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/ui
|
2009-10-08 22:26:16 +00:00
|
|
|
set +x
|
2009-06-29 18:59:31 +00:00
|
|
|
cp -r * $RPM_BUILD_ROOT%{prefix}/ui
|
|
|
|
chmod 755 $RPM_BUILD_ROOT%{prefix}/ui/*
|
2009-10-08 22:26:16 +00:00
|
|
|
set -x
|
2009-06-24 23:46:34 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2009-06-29 18:59:31 +00:00
|
|
|
%{prefix}/ui
|
2009-06-24 23:46:34 +00:00
|
|
|
|
2009-12-15 06:32:32 +00:00
|
|
|
%pre
|
2010-11-17 18:53:40 +00:00
|
|
|
#---------- Pre-install ----------
|
|
|
|
# Inspect whether PHP related RPM packages are installed
|
2009-12-15 06:32:32 +00:00
|
|
|
%ifos linux
|
|
|
|
if [ -e "/etc/redhat-release" ]; then
|
|
|
|
rpm -q php >/dev/null
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo ""
|
2010-11-17 18:53:40 +00:00
|
|
|
echo "Error! php has not been installed. Please run 'yum install php' before installing xCAT-UI.";
|
2009-12-15 06:32:32 +00:00
|
|
|
exit -1;
|
|
|
|
fi
|
2010-11-17 18:53:40 +00:00
|
|
|
else # SuSE
|
2009-12-15 06:32:32 +00:00
|
|
|
rpm -q apache2-mod_php5 php5 >/dev/null
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo ""
|
2010-11-17 18:53:40 +00:00
|
|
|
echo "Error! apache2-mod_php5 and php5 have not been installed. Please run 'zypper install apache2-mod_php5 php5' before installing xCAT-UI."
|
2009-12-15 06:32:32 +00:00
|
|
|
exit -1;
|
|
|
|
fi
|
|
|
|
fi
|
2009-12-22 03:14:23 +00:00
|
|
|
|
2010-11-17 18:53:40 +00:00
|
|
|
%else # AIX
|
2009-12-22 03:14:23 +00:00
|
|
|
if [ -e "/usr/IBM/HTTPServer/conf/httpd.conf" ]; then
|
|
|
|
echo "Installing xCAT-UI on AIX..."
|
|
|
|
else
|
|
|
|
echo ""
|
2010-11-17 18:53:40 +00:00
|
|
|
echo "Error! IBM HTTP Server is not installed or not installed in the default directory (/usr/IBM/HTTPServer/)."
|
2009-12-22 03:14:23 +00:00
|
|
|
exit -1;
|
|
|
|
fi
|
|
|
|
|
2009-12-15 06:32:32 +00:00
|
|
|
%endif
|
2009-06-24 23:46:34 +00:00
|
|
|
|
|
|
|
%post
|
2010-11-17 18:53:40 +00:00
|
|
|
#---------- Post-install ----------
|
|
|
|
# Get apache name
|
2009-06-24 23:46:34 +00:00
|
|
|
%ifos linux
|
|
|
|
if [ -e "/etc/redhat-release" ]; then
|
|
|
|
apachedaemon='httpd'
|
|
|
|
apacheuser='apache'
|
|
|
|
else # SuSE
|
|
|
|
apachedaemon='apache2'
|
|
|
|
apacheuser='wwwrun'
|
|
|
|
fi
|
|
|
|
|
2010-11-17 18:53:40 +00:00
|
|
|
if [ "$1" = 1 ] # Install
|
2009-06-24 23:46:34 +00:00
|
|
|
then
|
2010-11-17 18:53:40 +00:00
|
|
|
# Update apache conf
|
2009-06-29 18:59:31 +00:00
|
|
|
/bin/rm -f /etc/$apachedaemon/conf.d/xcat-ui.conf
|
|
|
|
/bin/ln -s %{prefix}/ui/etc/apache2/conf.d/xcat-ui.conf /etc/$apachedaemon/conf.d/xcat-ui.conf
|
2009-06-24 23:46:34 +00:00
|
|
|
/etc/init.d/$apachedaemon reload
|
2010-11-17 18:53:40 +00:00
|
|
|
# Automatically put encrypted password into the xCAT passwd database
|
2009-12-15 06:32:32 +00:00
|
|
|
%{prefix}/sbin/chtab key=xcat,username=root passwd.password=`grep root /etc/shadow|cut -d : -f 2`
|
2009-06-24 23:46:34 +00:00
|
|
|
|
2010-08-19 20:00:55 +00:00
|
|
|
echo "To use xCAT-UI, point your browser to http://"`hostname -f`"/xcat"
|
2009-06-24 23:46:34 +00:00
|
|
|
fi
|
|
|
|
|
2010-11-17 18:53:40 +00:00
|
|
|
if [ "$1" = 1 ] || [ "$1" = 2 ] # Install or upgrade
|
2009-06-24 23:46:34 +00:00
|
|
|
then
|
2009-06-29 18:59:31 +00:00
|
|
|
# Uncomment this if we change xcat-ui.conf again
|
2010-11-17 18:53:40 +00:00
|
|
|
# /etc/init.d/$apachedaemon reload
|
2009-06-24 23:46:34 +00:00
|
|
|
true
|
|
|
|
fi
|
|
|
|
|
2011-02-16 15:30:56 +00:00
|
|
|
%else # AIX
|
2009-06-24 23:46:34 +00:00
|
|
|
ihs_config_dir='/usr/IBM/HTTPServer/conf'
|
|
|
|
if [ "$1" = 1 ] #initial install
|
|
|
|
then
|
2010-11-17 18:53:40 +00:00
|
|
|
# Check if IBM HTTP Server is installed in the default directory
|
2009-12-22 03:14:23 +00:00
|
|
|
# Update the apache config
|
2010-11-17 18:53:40 +00:00
|
|
|
echo "Updating IBM HTTP server configuration for xCAT..."
|
2009-12-22 03:14:23 +00:00
|
|
|
bin/rm -f /usr/IBM/HTTPServer/conf/xcat-ui.conf
|
|
|
|
cp /usr/IBM/HTTPServer/conf/httpd.conf /usr/IBM/HTTPServer/conf/httpd.conf.xcat.ui.bak
|
|
|
|
cat /opt/xcat/ui/etc/apache2/conf.d/xcat-ui.conf >> /usr/IBM/HTTPServer/conf/httpd.conf
|
|
|
|
/usr/IBM/HTTPServer/bin/apachectl restart
|
2009-12-15 06:32:32 +00:00
|
|
|
|
2010-11-17 18:53:40 +00:00
|
|
|
# Put the encrypted password in /etc/security/passwd into the xcat passwd database
|
2009-12-15 06:32:32 +00:00
|
|
|
CONT=`cat /etc/security/passwd`
|
|
|
|
%{prefix}/sbin/chtab key=xcat,username=root passwd.password=`echo $CONT |cut -d ' ' -f 4`
|
2009-06-24 23:46:34 +00:00
|
|
|
fi
|
|
|
|
|
2010-11-17 18:53:40 +00:00
|
|
|
if [ "$1" = 1 ] || [ "$1" = 2 ] # Install or upgrade
|
2009-06-24 23:46:34 +00:00
|
|
|
then
|
2009-06-29 18:59:31 +00:00
|
|
|
# Uncomment this if we change xcat-ui.conf again
|
2010-11-17 18:53:40 +00:00
|
|
|
# /etc/init.d/$apachedaemon reload
|
2009-06-24 23:46:34 +00:00
|
|
|
true
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%preun
|
2010-11-17 18:53:40 +00:00
|
|
|
#---------- Pre-uninstall ----------
|
2009-06-24 23:46:34 +00:00
|
|
|
%ifos linux
|
2010-11-17 18:53:40 +00:00
|
|
|
if [ "$1" = 0 ] # RPM being removed
|
2009-06-24 23:46:34 +00:00
|
|
|
then
|
|
|
|
if [ -e "/etc/redhat-release" ]; then
|
|
|
|
apachedaemon='httpd'
|
|
|
|
apacheuser='apache'
|
|
|
|
else # SuSE
|
|
|
|
apachedaemon='apache2'
|
|
|
|
apacheuser='wwwrun'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove links made during the post install script
|
|
|
|
echo "Undoing $apachedaemon configuration for xCAT..."
|
2009-06-29 18:59:31 +00:00
|
|
|
/bin/rm -f /etc/$apachedaemon/conf.d/xcat-ui.conf
|
2009-06-24 23:46:34 +00:00
|
|
|
/etc/init.d/$apachedaemon reload
|
|
|
|
fi
|
2010-11-17 18:53:40 +00:00
|
|
|
%else # AIX
|
2009-06-24 23:46:34 +00:00
|
|
|
# Remove links made during the post install script
|
|
|
|
echo "Undoing IBM HTTP Server configuration for xCAT..."
|
2009-12-22 03:14:23 +00:00
|
|
|
if [ -e "/usr/IBM/HTTPServer/conf/httpd.conf.xcat.ui.bak" ];then
|
2009-12-22 02:36:00 +00:00
|
|
|
cp /usr/IBM/HTTPServer/conf/httpd.conf.xcat.ui.bak /usr/IBM/HTTPServer/conf/httpd.conf
|
|
|
|
rm -rf /usr/IBM/HTTPServer/conf/httpd.conf.xcat.ui.bak
|
|
|
|
fi
|
2009-06-24 23:46:34 +00:00
|
|
|
/usr/IBM/HTTPServer/bin/apachectl restart
|
2010-11-17 18:53:40 +00:00
|
|
|
%endif
|