2019-08-21 14:52:24 +00:00
|
|
|
%global with_legacy 0
|
2021-01-15 13:27:07 +00:00
|
|
|
%global dracut_modname 97walinuxagent
|
2018-09-20 11:48:41 +00:00
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
Name: WALinuxAgent
|
2022-08-03 08:30:01 +00:00
|
|
|
Version: 2.7.3.0
|
2022-10-13 14:52:21 +00:00
|
|
|
Release: 2%{?dist}
|
2015-01-12 22:16:41 +00:00
|
|
|
Summary: The Microsoft Azure Linux Agent
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: https://github.com/Azure/%{name}
|
2020-06-09 12:49:27 +00:00
|
|
|
Source0: https://github.com/Azure/%{name}/archive/v%{version}.tar.gz
|
2021-01-15 13:27:07 +00:00
|
|
|
Source1: module-setup.sh
|
2015-01-11 21:53:44 +00:00
|
|
|
|
2022-10-13 14:49:28 +00:00
|
|
|
Patch0: 0001-Rudimentary-Fedora-OS-implementation.patch
|
2022-10-13 14:52:21 +00:00
|
|
|
Patch1: 0001-waagent.service-set-ConditionVirtualization-microsof.patch
|
2020-12-09 16:28:43 +00:00
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
2018-04-16 13:15:29 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
2019-06-03 15:41:50 +00:00
|
|
|
BuildRequires: python3-distro
|
2020-06-09 12:49:27 +00:00
|
|
|
Requires: %name-udev = %version-%release
|
2021-02-19 10:01:30 +00:00
|
|
|
%if 0%{?fedora}
|
2015-01-11 21:53:44 +00:00
|
|
|
Requires: ntfsprogs
|
2021-02-19 10:01:30 +00:00
|
|
|
%endif
|
2015-01-11 21:53:44 +00:00
|
|
|
Requires: openssh
|
|
|
|
Requires: openssh-server
|
|
|
|
Requires: openssl
|
|
|
|
Requires: parted
|
2018-04-16 13:15:29 +00:00
|
|
|
Requires: python3-pyasn1
|
2021-07-19 11:33:15 +00:00
|
|
|
Requires: iptables
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
BuildRequires: systemd
|
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
|
|
|
|
|
|
|
%description
|
2015-01-12 22:16:41 +00:00
|
|
|
The Microsoft Azure Linux Agent supports the provisioning and running of Linux
|
|
|
|
VMs in the Microsoft Azure cloud. This package should be installed on Linux disk
|
|
|
|
images that are built to run in the Microsoft Azure environment.
|
2015-01-11 21:53:44 +00:00
|
|
|
|
2018-09-20 11:48:41 +00:00
|
|
|
%if 0%{?with_legacy}
|
2018-04-16 13:19:29 +00:00
|
|
|
%package legacy
|
|
|
|
Summary: The Microsoft Azure Linux Agent (legacy)
|
2022-10-13 14:49:28 +00:00
|
|
|
Requires: %name = %version-%release
|
|
|
|
Requires: python2
|
|
|
|
Requires: net-tools
|
2018-04-16 13:19:29 +00:00
|
|
|
|
|
|
|
%description legacy
|
|
|
|
The Microsoft Azure Linux Agent supporting old version of extensions.
|
2018-09-20 11:48:41 +00:00
|
|
|
%endif
|
2018-04-16 13:19:29 +00:00
|
|
|
|
2020-06-09 12:49:27 +00:00
|
|
|
%package udev
|
|
|
|
Summary: Udev rules for Microsoft Azure
|
|
|
|
|
|
|
|
%description udev
|
|
|
|
Udev rules specific to Microsoft Azure Virtual Machines.
|
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
%prep
|
2018-04-16 13:19:29 +00:00
|
|
|
%setup -q
|
2020-12-09 16:28:43 +00:00
|
|
|
%patch0 -p1
|
2022-10-13 14:52:21 +00:00
|
|
|
%patch1 -p1
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%build
|
2018-04-16 13:19:29 +00:00
|
|
|
%py3_build
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%install
|
2018-04-16 13:19:29 +00:00
|
|
|
%{__python3} setup.py install -O1 --skip-build --root %{buildroot} --lnx-distro redhat
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
mkdir -p -m 0700 %{buildroot}%{_sharedstatedir}/waagent
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/log
|
|
|
|
touch %{buildroot}%{_localstatedir}/log/waagent.log
|
|
|
|
|
2015-06-01 20:23:30 +00:00
|
|
|
mkdir -p %{buildroot}%{_udevrulesdir}
|
2018-04-16 13:19:29 +00:00
|
|
|
mv %{buildroot}%{_sysconfdir}/udev/rules.d/*.rules %{buildroot}%{_udevrulesdir}/
|
2015-06-01 20:23:30 +00:00
|
|
|
|
2018-04-16 13:19:29 +00:00
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/tests
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/__main__.py
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/__pycache__/__main__*.py*
|
|
|
|
|
|
|
|
sed -i 's,#!/usr/bin/env python,#!/usr/bin/python3,' %{buildroot}%{_sbindir}/waagent
|
2018-09-20 11:48:41 +00:00
|
|
|
%if 0%{?with_legacy}
|
2018-04-16 13:19:29 +00:00
|
|
|
sed -i 's,#!/usr/bin/env python,#!/usr/bin/python2,' %{buildroot}%{_sbindir}/waagent2.0
|
2018-09-20 11:48:41 +00:00
|
|
|
%else
|
|
|
|
rm -f %{buildroot}%{_sbindir}/waagent2.0
|
|
|
|
%endif
|
2018-04-16 13:19:29 +00:00
|
|
|
sed -i 's,/usr/bin/python ,/usr/bin/python3 ,' %{buildroot}%{_unitdir}/waagent.service
|
|
|
|
|
|
|
|
mv %{buildroot}%{_sysconfdir}/logrotate.d/waagent.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
2018-04-16 13:23:20 +00:00
|
|
|
|
2021-01-15 13:27:07 +00:00
|
|
|
install -m0755 -D -t %{buildroot}%{_prefix}/lib/dracut/modules.d/%{dracut_modname}/ %{SOURCE1}
|
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
%post
|
|
|
|
%systemd_post waagent.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun waagent.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%systemd_postun_with_restart waagent.service
|
|
|
|
|
|
|
|
%files
|
2021-05-21 12:14:14 +00:00
|
|
|
%doc LICENSE.txt NOTICE README.md
|
2015-01-11 21:53:44 +00:00
|
|
|
%ghost %{_localstatedir}/log/waagent.log
|
|
|
|
%dir %attr(0700, root, root) %{_sharedstatedir}/waagent
|
2018-04-16 13:23:20 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
2015-01-11 21:53:44 +00:00
|
|
|
%{_sbindir}/waagent
|
|
|
|
%config(noreplace) %{_sysconfdir}/waagent.conf
|
|
|
|
%{_unitdir}/waagent.service
|
2022-04-22 06:51:13 +00:00
|
|
|
%{_unitdir}/azure.slice
|
|
|
|
%{_unitdir}/azure-vmextensions.slice
|
2018-04-16 13:19:29 +00:00
|
|
|
%{python3_sitelib}/azurelinuxagent
|
2018-09-20 11:37:15 +00:00
|
|
|
%{python3_sitelib}/*.egg-info
|
2018-04-16 13:19:29 +00:00
|
|
|
|
2020-06-09 12:49:27 +00:00
|
|
|
%files udev
|
|
|
|
%{_udevrulesdir}/*.rules
|
2021-01-15 13:27:07 +00:00
|
|
|
%{_prefix}/lib/dracut/modules.d/%{dracut_modname}/*.sh
|
2020-06-09 12:49:27 +00:00
|
|
|
|
2018-09-20 11:48:41 +00:00
|
|
|
%if 0%{?with_legacy}
|
2018-04-16 13:19:29 +00:00
|
|
|
%files legacy
|
|
|
|
%{_sbindir}/waagent2.0
|
2018-09-20 11:48:41 +00:00
|
|
|
%endif
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-10-13 14:52:21 +00:00
|
|
|
* Tue Oct 18 2022 Chris Patterson <cpatterson@microsoft.com> - 2.7.3.0-2
|
|
|
|
- Add ConditionVirtualization=|microsoft triggering condition
|
|
|
|
|
2022-08-03 08:30:01 +00:00
|
|
|
* Wed Aug 03 2022 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.7.3.0-1
|
|
|
|
- Update to 2.7.3.0 (#2110155)
|
|
|
|
|
2022-07-20 20:17:24 +00:00
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-07-01 08:27:14 +00:00
|
|
|
* Thu Jun 30 2022 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.7.1.0-1
|
|
|
|
- Update to 2.7.1.0 (#2097244)
|
|
|
|
|
2022-06-13 20:00:15 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.7.0.6-2
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-04-22 06:51:13 +00:00
|
|
|
* Fri Apr 22 2022 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.7.0.6-1
|
|
|
|
- Update to 2.7.0.6 (#2040980)
|
|
|
|
|
2022-01-19 20:46:54 +00:00
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-04-22 14:30:12 +00:00
|
|
|
* Mon Jan 03 2022 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.5.0.2-1
|
2022-01-03 14:47:56 +00:00
|
|
|
- Update to 2.5.0.2 (#2008699)
|
|
|
|
|
2021-07-21 17:07:02 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-19 11:31:41 +00:00
|
|
|
* Mon Jul 19 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.3.1.1-1
|
|
|
|
- Update to 2.3.1.1 (#1982512)
|
2021-07-19 11:33:15 +00:00
|
|
|
- Require iptables for setting up persistent firewall rules
|
2021-07-19 11:31:41 +00:00
|
|
|
|
2021-06-15 07:19:05 +00:00
|
|
|
* Tue Jun 15 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.3.0.2-1
|
|
|
|
- Update to 2.3.0.2 (#1971116)
|
|
|
|
|
2021-06-04 19:19:47 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.2.54.2-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-05-21 12:14:14 +00:00
|
|
|
* Fri May 21 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.54.2-1
|
|
|
|
- Update to 2.2.54.2 (#1916966)
|
|
|
|
|
2021-03-02 15:12:02 +00:00
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.2.52-6
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
2021-02-19 10:01:30 +00:00
|
|
|
* Fri Feb 19 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.52-5
|
|
|
|
- Require ntfsprogs on Fedora only
|
|
|
|
|
2021-01-26 15:09:39 +00:00
|
|
|
* Tue Jan 26 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.52-4
|
|
|
|
- Fix distro resolution for RedHat
|
|
|
|
|
2021-01-25 23:40:10 +00:00
|
|
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-26 15:09:39 +00:00
|
|
|
* Fri Jan 15 2021 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.52-2
|
2021-01-15 13:27:07 +00:00
|
|
|
- Add udev rules to initramfs (#1909287)
|
|
|
|
|
2020-12-09 16:28:43 +00:00
|
|
|
* Wed Dec 09 2020 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.52-1
|
|
|
|
- Update to 2.2.52 (#1849923)
|
|
|
|
- Add not yet upstream patches supporting Python3.9 changes
|
|
|
|
|
2020-07-27 11:36:12 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.48.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-09 12:49:27 +00:00
|
|
|
* Tue Jun 09 2020 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.48.1-1
|
|
|
|
- Update to 2.2.48.1 (#1641605)
|
|
|
|
- Split udev rules to a separate subpackage (#1748432)
|
|
|
|
|
2020-05-26 00:39:51 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.2.46-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-04-15 11:05:30 +00:00
|
|
|
* Wed Apr 15 2020 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.46-1
|
|
|
|
- Update to 2.2.46
|
|
|
|
|
2020-01-28 11:02:22 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.40-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-10-03 11:50:05 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.40-6
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-21 17:16:29 +00:00
|
|
|
* Wed Aug 21 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.40-5
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-21 14:52:24 +00:00
|
|
|
* Wed Aug 21 2019 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.40-4
|
|
|
|
- Disable Python2 dependent 'legacy' subpackage (#1741029)
|
|
|
|
|
2019-08-19 08:00:47 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.40-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-24 17:21:34 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.40-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-03 13:52:01 +00:00
|
|
|
* Mon Jun 03 2019 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.40-1
|
|
|
|
- Update to 2.2.40
|
2019-06-03 15:41:50 +00:00
|
|
|
- Fix FTBFS in the preparation for Python3.8 (#1705219)
|
2019-06-03 13:52:01 +00:00
|
|
|
|
2019-03-14 10:38:41 +00:00
|
|
|
* Thu Mar 14 2019 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.38-1
|
|
|
|
- Update to 2.2.38 (CVE-2019-0804)
|
|
|
|
|
2019-03-14 10:35:00 +00:00
|
|
|
* Thu Mar 14 2019 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.37-1
|
|
|
|
- Update to 2.2.37
|
|
|
|
|
2019-01-31 12:47:52 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.32-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-09-20 11:37:15 +00:00
|
|
|
* Thu Sep 20 2018 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.32-1
|
|
|
|
- Update to 2.2.32.2
|
|
|
|
|
2018-07-12 19:52:46 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.25-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 08:39:20 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.2.25-3
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-04-25 10:37:20 +00:00
|
|
|
* Wed Apr 25 2018 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.25-2
|
|
|
|
- Move net-tools dependency to WALinuxAgent-legacy (#1106781)
|
|
|
|
|
2018-04-16 13:19:29 +00:00
|
|
|
* Mon Apr 16 2018 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.2.25-1
|
|
|
|
- Update to 2.2.25
|
|
|
|
- Switch to Python3
|
|
|
|
- Legacy subpackage with waagent2.0 supporting old extensions
|
|
|
|
|
2018-02-28 22:33:04 +00:00
|
|
|
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.0.18-5
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-07 01:38:49 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.18-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-07-26 02:27:16 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.18-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 05:38:04 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-04-03 07:46:30 +00:00
|
|
|
* Sat Apr 02 2016 Scott K Logan <logans@cottsay.net> - 2.0.18-1
|
|
|
|
- Update to 2.0.18
|
|
|
|
|
2016-02-03 15:52:57 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-02 17:45:40 +00:00
|
|
|
* Thu Jul 02 2015 Scott K Logan <logans@cottsay.net> - 2.0.14-1
|
|
|
|
- Update to 2.0.14
|
|
|
|
|
2015-06-16 23:28:44 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-01 20:23:30 +00:00
|
|
|
* Mon Jun 01 2015 Scott K Logan <logans@cottsay.net> - 2.0.13-1
|
|
|
|
- Update to 2.0.13
|
|
|
|
|
2015-04-02 08:15:51 +00:00
|
|
|
* Thu Apr 02 2015 Scott K Logan <logans@cottsay.net> - 2.0.12-1
|
|
|
|
- Update to 2.0.12-Oracle
|
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
* Sat Jan 10 2015 Scott K Logan <logans@cottsay.net> - 2.0.11-2
|
|
|
|
- Use systemd for rhel7
|
|
|
|
- Own logrotate.d
|
|
|
|
- Fix python2-devel dep
|
|
|
|
|
|
|
|
* Sat Dec 20 2014 Scott K Logan <logans@cottsay.net> - 2.0.11-1
|
|
|
|
- Initial package
|