11dd240272
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14943 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
78 lines
2.3 KiB
RPMSpec
78 lines
2.3 KiB
RPMSpec
%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
|
|
Obsoletes: xCAT-genesis-%{tarch}
|
|
Provides: xCAT-genesis-%{tarch}
|
|
|
|
|
|
|
|
Name: %{name}
|
|
Version: %{version}
|
|
Group: System/Utilities
|
|
License: EPL
|
|
Vendor: IBM Corp
|
|
Summary: xCAT Genesis netboot image - Core content
|
|
URL: http://xcat.org
|
|
Source1: xCAT-genesis-scripts.tar.bz2
|
|
Requires: xCAT-genesis-base-%{tarch}
|
|
|
|
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}
|
|
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
|
|
rm opt/xcat/share/xcat/netboot/genesis/x86_64/fs/LICENSE.html
|
|
cd -
|
|
|
|
|
|
# Since this rpm is being installed/updated, we need to run mknb to combine it with
|
|
# xCAT-genesis-base-x86_64, but mknb will not work during an initial install of xcat
|
|
# until the xCAT meta pkg has run xcatconfig or xCATsn has started xcatd. Use of a trigger
|
|
# allows us to tell those pkgs to run the code below after they run their %post scriptlets.
|
|
# (If xCAT or xCATsn is installed already, this trigger will run when xCAT-genesis-scripts
|
|
# is installed/updated.)
|
|
|
|
%post
|
|
# Touch this file to tell the xCAT and xCATsn rpms that when they install/update they
|
|
# should run mknb. Tried to use rpm triggers, but in several cases the trigger would
|
|
# get run multiple times.
|
|
#echo "touching /etc/xcat/genesis-scripts-updated"
|
|
mkdir -p /etc/xcat
|
|
touch /etc/xcat/genesis-scripts-updated
|
|
|
|
|
|
%Files
|
|
%defattr(-,root,root)
|
|
/opt/xcat/share/xcat/netboot/genesis/x86_64/fs
|