import open-vm-tools-12.0.5-1.el9
This commit is contained in:
parent
aa9e98909e
commit
e7e2cf0b3d
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/open-vm-tools-11.3.5-18557794.tar.gz
|
SOURCES/open-vm-tools-12.0.5-19716617.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
f6990193579d96a04bfec6f09e93e0164deef71e SOURCES/open-vm-tools-11.3.5-18557794.tar.gz
|
dcdc35708fae2e3e3192fec7e6a93c7b5c0e3c4c SOURCES/open-vm-tools-12.0.5-19716617.tar.gz
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
%global _hardened_build 1
|
%global _hardened_build 1
|
||||||
%global majorversion 11.3
|
%global majorversion 12.0
|
||||||
%global minorversion 5
|
%global minorversion 5
|
||||||
%global toolsbuild 18557794
|
%global toolsbuild 19716617
|
||||||
%global toolsversion %{majorversion}.%{minorversion}
|
%global toolsversion %{majorversion}.%{minorversion}
|
||||||
%global toolsdaemon vmtoolsd
|
%global toolsdaemon vmtoolsd
|
||||||
%global vgauthdaemon vgauthd
|
%global vgauthdaemon vgauthd
|
||||||
@ -143,6 +143,15 @@ This package contains only the user-space programs and utility scripts of
|
|||||||
%{name} that are essential for performing service discovery in VMware
|
%{name} that are essential for performing service discovery in VMware
|
||||||
virtual machines by vRealize Operations Service Discovery Management Pack.
|
virtual machines by vRealize Operations Service Discovery Management Pack.
|
||||||
|
|
||||||
|
%package salt-minion
|
||||||
|
Summary: Script file to install/uninstall salt-minion
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}, systemd, curl, coreutils, gawk, grep
|
||||||
|
ExclusiveArch: x86_64
|
||||||
|
|
||||||
|
%description salt-minion
|
||||||
|
This package contains a script to setup Salt Minion on VMware virtual machines.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development libraries for Open Virtual Machine Tools
|
Summary: Development libraries for Open Virtual Machine Tools
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
@ -172,6 +181,9 @@ autoreconf -vif
|
|||||||
--enable-xmlsec1 \
|
--enable-xmlsec1 \
|
||||||
--enable-resolutionkms \
|
--enable-resolutionkms \
|
||||||
--enable-servicediscovery \
|
--enable-servicediscovery \
|
||||||
|
%ifarch x86_64
|
||||||
|
--enable-salt-minion \
|
||||||
|
%endif
|
||||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
||||||
--with-tirpc \
|
--with-tirpc \
|
||||||
--without-gtk2 \
|
--without-gtk2 \
|
||||||
@ -346,6 +358,7 @@ fi
|
|||||||
%{_libdir}/%{name}/plugins/common/*.so
|
%{_libdir}/%{name}/plugins/common/*.so
|
||||||
%dir %{_libdir}/%{name}/plugins/vmsvc
|
%dir %{_libdir}/%{name}/plugins/vmsvc
|
||||||
%{_libdir}/%{name}/plugins/vmsvc/libappInfo.so
|
%{_libdir}/%{name}/plugins/vmsvc/libappInfo.so
|
||||||
|
%{_libdir}/%{name}/plugins/vmsvc/libcomponentMgr.so
|
||||||
%{_libdir}/%{name}/plugins/vmsvc/libdeployPkgPlugin.so
|
%{_libdir}/%{name}/plugins/vmsvc/libdeployPkgPlugin.so
|
||||||
%{_libdir}/%{name}/plugins/vmsvc/libgdp.so
|
%{_libdir}/%{name}/plugins/vmsvc/libgdp.so
|
||||||
%{_libdir}/%{name}/plugins/vmsvc/libguestInfo.so
|
%{_libdir}/%{name}/plugins/vmsvc/libguestInfo.so
|
||||||
@ -374,6 +387,13 @@ fi
|
|||||||
%{_libdir}/%{name}/plugins/vmsvc/libserviceDiscovery.so
|
%{_libdir}/%{name}/plugins/vmsvc/libserviceDiscovery.so
|
||||||
%{_libdir}/%{name}/serviceDiscovery
|
%{_libdir}/%{name}/serviceDiscovery
|
||||||
|
|
||||||
|
%ifarch x86_64
|
||||||
|
%files salt-minion
|
||||||
|
%dir %{_libdir}/%{name}/componentMgr/
|
||||||
|
%dir %{_libdir}/%{name}/componentMgr/saltMinion/
|
||||||
|
%{_libdir}/%{name}/componentMgr/saltMinion/svtminion.sh
|
||||||
|
%endif
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc docs/api/build/*
|
%doc docs/api/build/*
|
||||||
%exclude %{_includedir}/libDeployPkg/
|
%exclude %{_includedir}/libDeployPkg/
|
||||||
@ -390,6 +410,16 @@ fi
|
|||||||
%{_bindir}/vmware-vgauth-smoketest
|
%{_bindir}/vmware-vgauth-smoketest
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 07 2022 Miroslav Rezanina <mrezanin@redhat.com> - 12.0.5-1
|
||||||
|
- Rebase to open-vm-tools 12.0.5 [bz#2090275]
|
||||||
|
- Resolves: bz#2090275
|
||||||
|
([ESXi][RHEL9]Open-vm-tools release 12.0.5 has been released - please rebase)
|
||||||
|
|
||||||
|
* Thu Apr 28 2022 Miroslav Rezanina <mrezanin@redhat.com> - 12.0.0-1
|
||||||
|
- Rebase to 12.0.0 [bz#2061193]
|
||||||
|
- Resolves: bz#2061193
|
||||||
|
([ESXi][RHEL9]Open-vm-tools release 12.0.0 has been released - please rebase)
|
||||||
|
|
||||||
* Fri Oct 15 2021 Miroslav Rezanina <mrezanin@redhat.com> - 11.3.5-1
|
* Fri Oct 15 2021 Miroslav Rezanina <mrezanin@redhat.com> - 11.3.5-1
|
||||||
- Rebase to 11.3.5 [bz#2008243]
|
- Rebase to 11.3.5 [bz#2008243]
|
||||||
- Resolves: bz#2008243
|
- Resolves: bz#2008243
|
||||||
|
Loading…
Reference in New Issue
Block a user