2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00
confluent/confluent_osdeploy/confluent_osdeploy.spec.tmpl

47 lines
1.1 KiB
Cheetah
Raw Normal View History

2020-05-04 19:53:29 +00:00
Name: confluent_osdeploy-x86_64
Version: #VERSION#
2020-05-04 19:25:04 +00:00
Release: 1
Summary: OS Deployment support for confluent
License: Apache2
URL: http://hpc.lenovo.com/
2020-05-04 19:53:29 +00:00
Source0: confluent_osdeploy.tar.xz
2020-05-04 19:25:04 +00:00
BuildArch: noarch
Requires: confluent_ipxe
BuildRoot: /tmp
%description
This contains support utilities for enabling deployment of x86_64 architecture systems
%define debug_package %{nil}
%prep
%setup -n confluent_osdeploy
%build
mkdir -p opt/confluent/bin
cd utils
make all
cp copernicus clortho autocons ../opt/confluent/bin
cd ..
2020-05-04 19:25:04 +00:00
for os in el8 suse15 ubuntu20.04; do
mkdir ${os}out
cd ${os}out
cp -a ../opt .
2020-05-04 19:55:22 +00:00
cp -a ../${os}/initramfs/* .
2020-05-04 19:25:04 +00:00
find . | cpio -H newc -o > addons.cpio
cd ..
done
%install
2020-05-04 19:25:04 +00:00
for os in el8 suse15 ubuntu20.04; do
mkdir -p %{buildroot}/opt/confluent/lib/osdeploy/$os/initramfs
mkdir -p %{buildroot}/opt/confluent/lib/osdeploy/$os/profiles
cp ${os}out/addons.cpio %{buildroot}/opt/confluent/lib/osdeploy/$os/initramfs
cp -a $os/profiles/* /opt/confluent/lib/osdeploy/$os/profiles
done
%files
/opt/confluent/lib/osdeploy