Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-azure-agent for 
openSUSE:Factory checked in at 2024-07-15 19:46:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-agent (Old)
 and      /work/SRC/openSUSE:Factory/.python-azure-agent.new.17339 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-azure-agent"

Mon Jul 15 19:46:34 2024 rev:36 rq:1187232 version:2.9.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-azure-agent/python-azure-agent.changes    
2024-07-11 20:30:56.895968380 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-azure-agent.new.17339/python-azure-agent.changes
 2024-07-15 19:46:58.178587606 +0200
@@ -1,0 +2,7 @@
+Fri Jul 12 15:41:55 UTC 2024 - Robert Schweikert <rjsch...@suse.com>
+
+- Add agent-btrfs-use-f.patch (bsc#1227711)
+  + Use the proper option to force btrfs to overwrite a file system on the
+    resource disk if one already exists.
+
+-------------------------------------------------------------------

New:
----
  agent-btrfs-use-f.patch

BETA DEBUG BEGIN:
  New:
- Add agent-btrfs-use-f.patch (bsc#1227711)
  + Use the proper option to force btrfs to overwrite a file system on the
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-azure-agent.spec ++++++
--- /var/tmp/diff_new_pack.5cZyiW/_old  2024-07-15 19:46:58.702606807 +0200
+++ /var/tmp/diff_new_pack.5cZyiW/_new  2024-07-15 19:46:58.702606807 +0200
@@ -31,6 +31,8 @@
 # PATCH-FIX-UPSTREAM gh#Azure/WALinuxAgent#2741
 Patch9:         remove-mock.patch
 Patch10:        agent-micro-is-sles.patch
+# PATCH-FIX-UPSTREAM gh#Azure/WALinuxAgent#3158
+Patch11:        agent-btrfs-use-f.patch
 BuildRequires:  dos2unix
 
 BuildRequires:  distribution-release
@@ -150,6 +152,7 @@
 %patch -P 8
 %patch -P 9 -p1
 %patch -P 10
+%patch -P 11
 
 %build
 %if 0%{?suse_version} > 1315

++++++ agent-btrfs-use-f.patch ++++++
--- azurelinuxagent/daemon/resourcedisk/default.py.orig
+++ azurelinuxagent/daemon/resourcedisk/default.py
@@ -124,7 +124,7 @@ class ResourceDiskHandler(object):
                                     "{0}: {1}".format(device, ret[1]))
 
         force_option = 'F'
-        if self.fs == 'xfs':
+        if self.fs in ('btrfs', 'xfs'):
             force_option = 'f'
         mkfs_string = "mkfs.{0} -{2} {1}".format(
             self.fs, partition, force_option)

Reply via email to