2008-02-08 17:59:49 +00:00
|
|
|
Summary: RMC monitoring plug-in for xCAT
|
|
|
|
Name: xCAT-rmc
|
2009-01-28 15:42:14 +00:00
|
|
|
Version: %(cat Version)
|
2008-02-08 17:59:49 +00:00
|
|
|
Release: snap%(date +"%Y%m%d%H%M")
|
2008-06-26 18:42:36 +00:00
|
|
|
Epoch: 4
|
2008-02-08 17:59:49 +00:00
|
|
|
License: EPL
|
|
|
|
Group: System Environment/Libraries
|
2009-01-28 15:42:14 +00:00
|
|
|
Source: xCAT-rmc-%(cat Version).tar.gz
|
2008-02-08 17:59:49 +00:00
|
|
|
Packager: IBM Corp.
|
|
|
|
Vendor: IBM Corp.
|
|
|
|
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
|
|
|
|
Prefix: /opt/xcat
|
|
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
|
|
%ifos linux
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
|
|
|
|
2009-06-25 19:21:30 +00:00
|
|
|
Requires: perl-xCAT >= %{epoch}:%(cat Version|cut -d. -f 1,2)
|
|
|
|
Requires: xCAT-server >= %{epoch}:%(cat Version|cut -d. -f 1,2)
|
2008-02-16 01:25:59 +00:00
|
|
|
|
2008-02-08 17:59:49 +00:00
|
|
|
Provides: xCAT-rmc = %{version}
|
|
|
|
|
|
|
|
%description
|
2008-06-19 16:50:18 +00:00
|
|
|
Provides RMC monitoring plug-in module for xCAT, configuration scripts, predefined conditions, responses and sensors.
|
2008-02-08 17:59:49 +00:00
|
|
|
|
|
|
|
%prep
|
2009-01-28 15:42:14 +00:00
|
|
|
%setup -q -n xCAT-rmc
|
2008-02-08 17:59:49 +00:00
|
|
|
%build
|
|
|
|
%install
|
|
|
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_monitoring/rmc
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/sbin/rmcmon
|
2008-06-26 02:21:20 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/install/postscripts
|
2009-06-01 20:39:29 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/install/post/xcat/rmcmon/resources
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/install/post/xcat/rmcmon/scripts
|
2008-02-08 17:59:49 +00:00
|
|
|
|
|
|
|
cp plugin/* $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_monitoring
|
|
|
|
cp -r resources $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_monitoring/rmc
|
|
|
|
|
2008-06-20 17:51:55 +00:00
|
|
|
cp scripts/* $RPM_BUILD_ROOT/%{prefix}/sbin/rmcmon
|
2008-02-08 17:59:49 +00:00
|
|
|
chmod 755 $RPM_BUILD_ROOT/%{prefix}/sbin/rmcmon/*
|
|
|
|
|
2008-06-26 02:21:20 +00:00
|
|
|
cp scripts/configrmcnode $RPM_BUILD_ROOT/install/postscripts
|
|
|
|
chmod 755 $RPM_BUILD_ROOT/install/postscripts/configrmcnode
|
|
|
|
|
2009-06-01 20:39:29 +00:00
|
|
|
FILES_TO_COPY=`cat scripts/scripts_to_node|tr '\n' ' '`
|
|
|
|
echo "files=$FILES_TO_COPY"
|
|
|
|
for file in $FILES_TO_COPY
|
|
|
|
do
|
|
|
|
echo "file=$file"
|
|
|
|
cp scripts/$file $RPM_BUILD_ROOT/install/post/xcat/rmcmon/scripts
|
|
|
|
done
|
|
|
|
chmod 755 $RPM_BUILD_ROOT/install/post/xcat/rmcmon/scripts/*
|
|
|
|
|
|
|
|
cp -r resources/node/* $RPM_BUILD_ROOT/install/post/xcat/rmcmon/resources
|
|
|
|
|
|
|
|
|
2008-02-08 17:59:49 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
#find $RPM_BUILD_ROOT -type f | sed -e "s@$RPM_BUILD_ROOT@/@" > files.list
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}
|
2008-06-26 02:21:20 +00:00
|
|
|
/install/postscripts
|
2009-06-01 20:39:29 +00:00
|
|
|
/install/post/xcat/rmcmon
|
2008-02-08 17:59:49 +00:00
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
2008-10-01 16:08:51 +00:00
|
|
|
%post
|
|
|
|
%ifos linux
|
|
|
|
if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image
|
2008-12-11 16:08:45 +00:00
|
|
|
if [ -f $RPM_INSTALL_PREFIX0/sbin/xcatd ]; then
|
2008-11-09 00:15:30 +00:00
|
|
|
/etc/init.d/xcatd restart
|
|
|
|
fi
|
2008-10-01 16:08:51 +00:00
|
|
|
fi
|
|
|
|
%else
|
2008-11-09 00:15:30 +00:00
|
|
|
#restart the xcatd on if xCAT or xCATsn is installed already
|
2008-12-11 16:08:45 +00:00
|
|
|
if [ -f $RPM_INSTALL_PREFIX0/sbin/xcatd ]; then
|
2008-11-09 00:15:30 +00:00
|
|
|
XCATROOT=$RPM_INSTALL_PREFIX0 $RPM_INSTALL_PREFIX0/sbin/xcatstart
|
|
|
|
fi
|
2008-10-01 16:08:51 +00:00
|
|
|
%endif
|
2008-02-08 17:59:49 +00:00
|
|
|
|
2008-10-31 12:56:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|