2020-05-04 19:53:29 +00:00
|
|
|
Name: confluent_osdeploy-x86_64
|
2020-05-04 19:45:35 +00:00
|
|
|
Version: #VERSION#
|
2020-05-04 19:25:04 +00:00
|
|
|
Release: 1
|
2020-05-04 17:49:48 +00:00
|
|
|
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
|
2020-07-10 13:27:38 +00:00
|
|
|
Requires: confluent_ipxe mtools
|
2020-05-04 17:49:48 +00:00
|
|
|
BuildRoot: /tmp
|
|
|
|
|
|
|
|
%description
|
|
|
|
This contains support utilities for enabling deployment of x86_64 architecture systems
|
|
|
|
|
|
|
|
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
|
|
|
%prep
|
2020-05-04 19:51:05 +00:00
|
|
|
%setup -n confluent_osdeploy
|
2020-05-04 17:49:48 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
mkdir -p opt/confluent/bin
|
|
|
|
cd utils
|
|
|
|
make all
|
|
|
|
cp copernicus clortho autocons ../opt/confluent/bin
|
|
|
|
cd ..
|
2020-06-18 16:49:05 +00:00
|
|
|
for os in rhvh4 el8 suse15 ubuntu20.04; do
|
2020-05-04 19:25:04 +00:00
|
|
|
mkdir ${os}out
|
|
|
|
cd ${os}out
|
|
|
|
cp -a ../opt .
|
2020-05-04 19:55:22 +00:00
|
|
|
cp -a ../${os}/initramfs/* .
|
2020-06-26 20:23:51 +00:00
|
|
|
cp -a ../common/* .
|
2020-05-07 13:35:32 +00:00
|
|
|
find . | cpio -H newc -o > ../addons.cpio
|
|
|
|
mv ../addons.cpio .
|
2020-05-04 19:25:04 +00:00
|
|
|
cd ..
|
|
|
|
done
|
2020-06-09 12:50:54 +00:00
|
|
|
mkdir esxi7out
|
2020-06-08 21:24:48 +00:00
|
|
|
cd esxi7out
|
2020-06-09 13:51:48 +00:00
|
|
|
cp -a ../opt .
|
|
|
|
cp -a ../esxi7/initramfs/* .
|
2020-06-26 20:23:51 +00:00
|
|
|
cp -a ../common/* .
|
2020-06-09 20:12:22 +00:00
|
|
|
chmod +x bin/* opt/confluent/bin/*
|
2020-06-10 14:17:54 +00:00
|
|
|
tar zcvf ../addons.tgz *
|
|
|
|
mv ../addons.tgz .
|
2020-06-08 21:24:48 +00:00
|
|
|
cd ..
|
2020-06-11 21:18:28 +00:00
|
|
|
cp -a esxi7out esxi6out
|
|
|
|
cp -a esxi7 esxi6
|
2020-05-04 17:49:48 +00:00
|
|
|
|
|
|
|
%install
|
2020-06-18 16:49:05 +00:00
|
|
|
for os in rhvh4 el8 suse15 ubuntu20.04 esxi6 esxi7; do
|
2020-05-04 19:25:04 +00:00
|
|
|
mkdir -p %{buildroot}/opt/confluent/lib/osdeploy/$os/initramfs
|
|
|
|
mkdir -p %{buildroot}/opt/confluent/lib/osdeploy/$os/profiles
|
2020-06-08 21:24:48 +00:00
|
|
|
cp ${os}out/addons.* %{buildroot}/opt/confluent/lib/osdeploy/$os/initramfs
|
2020-05-04 19:57:11 +00:00
|
|
|
cp -a $os/profiles/* %{buildroot}/opt/confluent/lib/osdeploy/$os/profiles
|
2020-05-04 19:25:04 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
%files
|
|
|
|
/opt/confluent/lib/osdeploy
|