3f4342378f
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11262 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
134 lines
3.3 KiB
RPMSpec
134 lines
3.3 KiB
RPMSpec
Summary: Metapackage for a common, default xCAT service node setup
|
|
Name: xCATsn
|
|
Version: %(cat Version)
|
|
Release: snap%(date +"%Y%m%d%H%M")
|
|
Epoch: 4
|
|
License: EPL
|
|
Group: Applications/System
|
|
Vendor: IBM Corp.
|
|
Packager: IBM Corp.
|
|
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
|
|
Prefix: /opt/xcat
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
#BuildArch: noarch
|
|
Source1: xcat.conf
|
|
Source2: license.tar.gz
|
|
Source3: xCATSN
|
|
Provides: xCATsn = %{version}
|
|
Requires: xCAT-server xCAT-client perl-xCAT perl-DBD-SQLite
|
|
|
|
%ifos linux
|
|
Requires: perl-XML-Parser
|
|
%endif
|
|
|
|
Conflicts: xCAT
|
|
|
|
%ifos linux
|
|
# yaboot-xcat is pulled in so any SN can manage ppc nodes
|
|
Requires: dhcp httpd nfs-utils expect nmap fping bind perl-XML-Parser vsftpd
|
|
%ifarch ppc64
|
|
Requires: perl-IO-Stty
|
|
%endif
|
|
%ifarch s390x
|
|
# No additional requires for zLinux right now
|
|
%else
|
|
Requires: /etc/xinetd.d/tftp
|
|
Requires: conserver-xcat yaboot-xcat perl-Net-Telnet
|
|
%endif
|
|
%endif
|
|
|
|
%ifarch i386 i586 i686 x86 x86_64
|
|
# All versions of the nb rpms are pulled in so an x86 MN can manage nodes of any arch.
|
|
# The nb rpms are used for dhcp-based discovery, and flashing, so for now we do not need them on a ppc MN.
|
|
Requires: xCAT-nbroot-oss-x86 xCAT-nbroot-core-x86 xCAT-nbkernel-x86 xCAT-nbroot-oss-x86_64 xCAT-nbroot-core-x86_64 xCAT-nbkernel-x86_64 xCAT-nbroot-oss-ppc64 xCAT-nbroot-core-ppc64 xCAT-nbkernel-ppc64 syslinux
|
|
Requires: ipmitool-xcat >= 1.8.9
|
|
Requires: xnba-undi syslinux-xcat
|
|
%endif
|
|
|
|
%description
|
|
xCATsn is a service node management package intended for at-scale management,
|
|
including hardware management and software management.
|
|
|
|
|
|
%prep
|
|
%ifos linux
|
|
tar zxf %{SOURCE2}
|
|
%else
|
|
cp %{SOURCE2} /opt/freeware/src/packages/BUILD
|
|
gunzip -f license.tar.gz
|
|
tar -xf license.tar
|
|
%endif
|
|
|
|
%build
|
|
|
|
%install
|
|
|
|
%ifos linux
|
|
mkdir -p $RPM_BUILD_ROOT/etc/apache2/conf.d
|
|
mkdir -p $RPM_BUILD_ROOT/etc/httpd/conf.d/
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/share/xcat/
|
|
# cd -
|
|
cp %{SOURCE1} $RPM_BUILD_ROOT/etc/apache2/conf.d/xcat.conf
|
|
cp %{SOURCE1} $RPM_BUILD_ROOT/etc/httpd/conf.d/xcat.conf
|
|
cp %{SOURCE3} $RPM_BUILD_ROOT/etc/xCATSN
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/share/doc/packages/xCAT
|
|
cp LICENSE.html $RPM_BUILD_ROOT/%{prefix}/share/doc/packages/xCAT
|
|
%else
|
|
mkdir -p $RPM_BUILD_ROOT/etc/
|
|
mkdir -p $RPM_BUILD_ROOT/opt/xcat/
|
|
cp %{SOURCE3} $RPM_BUILD_ROOT/etc/xCATSN
|
|
%endif
|
|
|
|
%post
|
|
|
|
|
|
if [ "$1" = "1" ]; then #Only if installing for the first time..
|
|
|
|
# setup sqlite if no other database
|
|
|
|
%ifos linux
|
|
if [ -f "/proc/cmdline" ]; then #check to make sure this is not image install
|
|
if [ ! -s /etc/xcat/cfgloc ]; then # database is sqlite
|
|
$RPM_INSTALL_PREFIX0/sbin/xcatconfig -d
|
|
fi
|
|
fi
|
|
%endif
|
|
|
|
# so conserver will start
|
|
mkdir -p /var/log/consoles
|
|
|
|
# remove any management node file
|
|
if [ -f /etc/xCATMN ]; then
|
|
rm /etc/xCATMN
|
|
fi
|
|
|
|
%ifos linux
|
|
if [ -e "/etc/redhat-release" ]; then
|
|
apachedaemon='httpd'
|
|
else # SuSE
|
|
apachedaemon='apache2'
|
|
fi
|
|
|
|
# start xcatd
|
|
chkconfig $apachedaemon on
|
|
if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image
|
|
XCATROOT=$RPM_INSTALL_PREFIX0 /etc/init.d/xcatd start
|
|
/etc/init.d/$apachedaemon reload
|
|
fi
|
|
echo "xCATsn is now installed"
|
|
%endif
|
|
fi
|
|
|
|
%clean
|
|
|
|
%files
|
|
%{prefix}
|
|
# one for sles, one for rhel. yes, it's ugly...
|
|
%ifos linux
|
|
/etc/httpd/conf.d/xcat.conf
|
|
/etc/apache2/conf.d/xcat.conf
|
|
%endif
|
|
/etc/xCATSN
|
|
%defattr(-,root,root)
|