2008-02-12 14:32:03 +00:00
|
|
|
Summary: Metapackage for a common, default xCAT service node setup
|
|
|
|
Name: xCATsn
|
2008-11-20 20:08:34 +00:00
|
|
|
Version: 2.1.1
|
2008-02-12 14:32:03 +00:00
|
|
|
Release: snap%(date +"%Y%m%d%H%M")
|
2008-06-26 18:42:36 +00:00
|
|
|
Epoch: 4
|
2008-02-12 14:32:03 +00:00
|
|
|
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
|
|
|
|
Provides: xCATsn = %{version}
|
2008-05-21 16:22:09 +00:00
|
|
|
Requires: xCAT-server xCAT-client perl-xCAT perl-XML-Parser
|
2008-02-12 14:32:03 +00:00
|
|
|
|
|
|
|
%ifos linux
|
2008-03-19 13:24:47 +00:00
|
|
|
Requires: atftp dhcp httpd nfs-utils expect conserver fping bind perl-DBD-Pg postgresql-server postgresql syslinux
|
2008-02-12 14:32:03 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%ifarch i386 i586 i686 x86 x86_64
|
2008-05-21 16:22:09 +00:00
|
|
|
Requires: xCAT-nbroot-oss-x86_64 xCAT-nbroot-core-x86_64 xCAT-nbkernel-x86_64
|
2008-02-12 14:32:03 +00:00
|
|
|
Requires: ipmitool >= 1.8.9
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
xCATsn is a service node management package intended for at-scale management,
|
|
|
|
including hardware management and software management.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/httpd/conf.d/
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/share/xcat/
|
|
|
|
cd -
|
|
|
|
cp %{SOURCE1} $RPM_BUILD_ROOT/etc/httpd/conf.d/xcat.conf
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/share/doc/packages/xCAT
|
|
|
|
cp LICENSE.html $RPM_BUILD_ROOT/%{prefix}/share/doc/packages/xCAT
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
|
|
|
if [ "$1" = "1" ]; then #Only if installing for the first time..
|
2008-05-16 11:11:59 +00:00
|
|
|
# so conserver will start
|
|
|
|
mkdir -p /var/log/consoles
|
2008-02-12 14:32:03 +00:00
|
|
|
|
2008-02-18 13:11:05 +00:00
|
|
|
# makes it a service node
|
2008-05-21 16:22:09 +00:00
|
|
|
touch /etc/xCATSN
|
2008-11-20 17:43:54 +00:00
|
|
|
# remove any management node file
|
|
|
|
rm /etc/xCATMN
|
2008-02-18 13:11:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Start the xcatd daemon
|
2008-02-12 14:32:03 +00:00
|
|
|
|
|
|
|
chkconfig httpd on
|
2008-05-21 17:45:27 +00:00
|
|
|
if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image
|
2008-05-21 16:22:09 +00:00
|
|
|
XCATROOT=$RPM_INSTALL_PREFIX0 /etc/init.d/xcatd start
|
2008-10-17 17:59:57 +00:00
|
|
|
/etc/init.d/httpd stop
|
|
|
|
/etc/init.d/httpd start
|
2008-05-21 17:45:27 +00:00
|
|
|
fi
|
2008-02-12 14:32:03 +00:00
|
|
|
echo "xCATsn is now installed"
|
|
|
|
fi
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{prefix}
|
|
|
|
/etc/httpd/conf.d/xcat.conf
|
|
|
|
%defattr(-,root,root)
|