2012-12-07 15:59:34 +00:00
|
|
|
%define version 2.8
|
|
|
|
%ifarch i386 i586 i686 x86
|
|
|
|
%define tarch x86
|
|
|
|
%endif
|
|
|
|
%ifarch x86_64
|
|
|
|
%define tarch x86_64
|
|
|
|
%endif
|
|
|
|
%ifarch ppc ppc64
|
|
|
|
%define tarch ppc64
|
|
|
|
%endif
|
|
|
|
BuildArch: noarch
|
|
|
|
%define name xCAT-genesis-scripts-%{tarch}
|
|
|
|
%define __spec_install_post :
|
|
|
|
%define debug_package %{nil}
|
|
|
|
%define __prelink_undo_cmd %{nil}
|
|
|
|
Release: snap%(date +"%Y%m%d%H%M")
|
|
|
|
Epoch: 1
|
|
|
|
AutoReq: false
|
|
|
|
Prefix: /opt/xcat
|
|
|
|
AutoProv: false
|
2012-12-07 16:25:46 +00:00
|
|
|
Obsoletes: xCAT-genesis-%{tarch}
|
|
|
|
Provides: xCAT-genesis-%{tarch}
|
2012-12-07 15:59:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: %{name}
|
|
|
|
Version: %{version}
|
|
|
|
Group: System/Utilities
|
|
|
|
License: EPL
|
|
|
|
Vendor: IBM Corp
|
|
|
|
Summary: xCAT Genesis netboot image - Core content
|
|
|
|
URL: http://xcat.org
|
2012-12-07 19:22:16 +00:00
|
|
|
Source1: xCAT-genesis-scripts.tar.bz2
|
2012-12-07 15:59:50 +00:00
|
|
|
Requires: xCAT-genesis-base-%{tarch}
|
2012-12-07 15:59:34 +00:00
|
|
|
|
|
|
|
Buildroot: %{_localstatedir}/tmp/xCAT-genesis
|
|
|
|
Packager: IBM Corp.
|
|
|
|
|
|
|
|
%Description
|
|
|
|
xCAT genesis (Genesis Enhanced Netboot Environment for System Information and Servicing) is a small, embedded-like environment for xCAT's use in discovery and management actions when interaction with an OS is infeasible.
|
|
|
|
This package reperesents the EPL content that is more tightly bound to specific xcat-core versions
|
|
|
|
%Prep
|
|
|
|
|
|
|
|
|
|
|
|
%Build
|
|
|
|
|
|
|
|
%Install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT
|
|
|
|
cd $RPM_BUILD_ROOT
|
|
|
|
tar jxf %{SOURCE1}
|
2012-12-07 15:59:50 +00:00
|
|
|
mkdir -p opt/xcat/share/xcat/netboot/genesis/x86_64/
|
|
|
|
mv xCAT-genesis-scripts opt/xcat/share/xcat/netboot/genesis/x86_64/fs
|
|
|
|
rm opt/xcat/share/xcat/netboot/genesis/x86_64/fs/*.spec
|
2013-01-07 19:50:18 +00:00
|
|
|
rm opt/xcat/share/xcat/netboot/genesis/x86_64/fs/LICENSE.html
|
2012-12-07 15:59:34 +00:00
|
|
|
cd -
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
2013-01-10 18:52:34 +00:00
|
|
|
if [ "$1" == "2" -o -e /opt/xcat/sbin/mknb ]; then #only on upgrade, or if the rest of xcat is already installed
|
2012-12-07 15:59:34 +00:00
|
|
|
if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image
|
|
|
|
. /etc/profile.d/xcat.sh
|
2013-01-10 18:52:34 +00:00
|
|
|
echo mknb %{tarch}...
|
2012-12-07 15:59:34 +00:00
|
|
|
mknb %{tarch}
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
%Files
|
|
|
|
%defattr(-,root,root)
|
2012-12-07 15:59:50 +00:00
|
|
|
/opt/xcat/share/xcat/netboot/genesis/x86_64/fs
|