From 71a6f8cd4adf8182bd2f899f1df97dca61ab950d Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Wed, 15 Apr 2020 13:05:30 +0200 Subject: [PATCH 1/2] Update to 2.2.46 Signed-off-by: Vitaly Kuznetsov --- .gitignore | 1 + WALinuxAgent.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ce41535..fe2029e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /WALinuxAgent-2.2.37.tar.gz /WALinuxAgent-2.2.38.tar.gz /WALinuxAgent-2.2.40.tar.gz +/WALinuxAgent-2.2.46.tar.gz diff --git a/WALinuxAgent.spec b/WALinuxAgent.spec index a76d223..924cfaf 100644 --- a/WALinuxAgent.spec +++ b/WALinuxAgent.spec @@ -1,8 +1,8 @@ %global with_legacy 0 Name: WALinuxAgent -Version: 2.2.40 -Release: 7%{?dist} +Version: 2.2.46 +Release: 1%{?dist} Summary: The Microsoft Azure Linux Agent License: ASL 2.0 @@ -71,6 +71,7 @@ rm -f %{buildroot}%{_sbindir}/waagent2.0 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} +mv %{buildroot}%{_sysconfdir}/logrotate.d/waagent-extn.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name}-extn %post %systemd_post waagent.service @@ -86,6 +87,7 @@ mv %{buildroot}%{_sysconfdir}/logrotate.d/waagent.logrotate %{buildroot}%{_sysco %ghost %{_localstatedir}/log/waagent.log %dir %attr(0700, root, root) %{_sharedstatedir}/waagent %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} +%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}-extn %{_sbindir}/waagent %config(noreplace) %{_sysconfdir}/waagent.conf %{_udevrulesdir}/66-azure-storage.rules @@ -100,6 +102,9 @@ mv %{buildroot}%{_sysconfdir}/logrotate.d/waagent.logrotate %{buildroot}%{_sysco %endif %changelog +* Wed Apr 15 2020 Vitaly Kuznetsov - 2.2.46-1 +- Update to 2.2.46 + * Tue Jan 28 2020 Fedora Release Engineering - 2.2.40-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index ea51659..465cdff 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (WALinuxAgent-2.2.40.tar.gz) = 313f760bfba2479ed2236211ebcca6781ea43a40bc5ec887b6047e9fe60c3c7fcd2694482990ee71de4ca28d4f772551cee66049a2459979343c6786be37808e +SHA512 (WALinuxAgent-2.2.46.tar.gz) = a2f0bd162e6edcf35b5e56695dcbf66d3b71a57717aa8d6470f9d9652ba9363d6e1d93a06bb6c8a918c80310b3825e5cac266d02a1ba5423dab3983899acf750 From e55d266c0fa57cc1113717133f4297b7f100edcc Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Tue, 9 Jun 2020 14:49:27 +0200 Subject: [PATCH 2/2] Update to 2.2.48.1 (#1641605) Split udev rules to a separate subpackage (#1748432) Signed-off-by: Vitaly Kuznetsov --- .gitignore | 1 + WALinuxAgent.spec | 20 ++++++++++++++++---- sources | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index fe2029e..6489f14 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /WALinuxAgent-2.2.38.tar.gz /WALinuxAgent-2.2.40.tar.gz /WALinuxAgent-2.2.46.tar.gz +/v2.2.48.1.tar.gz diff --git a/WALinuxAgent.spec b/WALinuxAgent.spec index 924cfaf..23dbd4d 100644 --- a/WALinuxAgent.spec +++ b/WALinuxAgent.spec @@ -1,19 +1,20 @@ %global with_legacy 0 Name: WALinuxAgent -Version: 2.2.46 +Version: 2.2.48.1 Release: 1%{?dist} Summary: The Microsoft Azure Linux Agent License: ASL 2.0 URL: https://github.com/Azure/%{name} -Source0: https://github.com/Azure/%{name}/archive/%{name}-%{version}.tar.gz +Source0: https://github.com/Azure/%{name}/archive/v%{version}.tar.gz BuildArch: noarch BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-distro +Requires: %name-udev = %version-%release Requires: ntfsprogs Requires: openssh Requires: openssh-server @@ -42,6 +43,12 @@ Requires: net-tools The Microsoft Azure Linux Agent supporting old version of extensions. %endif +%package udev +Summary: Udev rules for Microsoft Azure + +%description udev +Udev rules specific to Microsoft Azure Virtual Machines. + %prep %setup -q @@ -90,18 +97,23 @@ mv %{buildroot}%{_sysconfdir}/logrotate.d/waagent-extn.logrotate %{buildroot}%{_ %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}-extn %{_sbindir}/waagent %config(noreplace) %{_sysconfdir}/waagent.conf -%{_udevrulesdir}/66-azure-storage.rules -%{_udevrulesdir}/99-azure-product-uuid.rules %{_unitdir}/waagent.service %{python3_sitelib}/azurelinuxagent %{python3_sitelib}/*.egg-info +%files udev +%{_udevrulesdir}/*.rules + %if 0%{?with_legacy} %files legacy %{_sbindir}/waagent2.0 %endif %changelog +* Tue Jun 09 2020 Vitaly Kuznetsov - 2.2.48.1-1 +- Update to 2.2.48.1 (#1641605) +- Split udev rules to a separate subpackage (#1748432) + * Wed Apr 15 2020 Vitaly Kuznetsov - 2.2.46-1 - Update to 2.2.46 diff --git a/sources b/sources index 465cdff..74fc3c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (WALinuxAgent-2.2.46.tar.gz) = a2f0bd162e6edcf35b5e56695dcbf66d3b71a57717aa8d6470f9d9652ba9363d6e1d93a06bb6c8a918c80310b3825e5cac266d02a1ba5423dab3983899acf750 +SHA512 (v2.2.48.1.tar.gz) = 139c0b8d8696efdc570f44a63ee828d35ec162ee6a279ceba1a2b7d6ca4d6f99b7c428a4726286ca12b641c5957c3f1050b25a9d233e7a5bb559c8cef97bce0d