mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 13:22:36 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16871 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
Summary: Meta-Metapackage for a common, default xCAT management node setup with OpenStack 
 | 
						|
Name: xCAT-OpenStack
 | 
						|
Version: %(cat Version)
 | 
						|
Release: snap%(date +"%Y%m%d%H%M")
 | 
						|
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
 | 
						|
Source:  xCAT-OpenStack-%(cat Version).tar.gz
 | 
						|
 | 
						|
Provides: xCAT-OpenStack = %{version}
 | 
						|
Requires: xCAT
 | 
						|
 | 
						|
%description
 | 
						|
xCAT-OpenStack is an xCAT management node package intended for at-scale 
 | 
						|
management with OpenStack, including hardware management and software 
 | 
						|
management.
 | 
						|
 | 
						|
%prep
 | 
						|
%setup -q -n xCAT-OpenStack
 | 
						|
 | 
						|
%build
 | 
						|
 | 
						|
 | 
						|
%install
 | 
						|
mkdir -p $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_schema
 | 
						|
 | 
						|
cp -a lib/perl/xCAT_schema/* $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_schema
 | 
						|
find $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_schema -type d -exec chmod 755 {} \;
 | 
						|
find $RPM_BUILD_ROOT/%{prefix}/lib/perl/xCAT_schema -type f -exec chmod 644 {} \;
 | 
						|
 | 
						|
 | 
						|
%clean
 | 
						|
rm -rf $RPM_BUILD_ROOT
 | 
						|
 | 
						|
%files
 | 
						|
%{prefix}
 | 
						|
%defattr(-,root,root)
 | 
						|
 | 
						|
 | 
						|
%post
 | 
						|
%ifos linux
 | 
						|
  if [ -f "/proc/cmdline" ]; then   # prevent running it during install into chroot image
 | 
						|
    if [ -f $RPM_INSTALL_PREFIX0/sbin/xcatd  ]; then
 | 
						|
      /etc/init.d/xcatd reload
 | 
						|
    fi
 | 
						|
  fi
 | 
						|
%endif
 | 
						|
exit 0
 | 
						|
 |