public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] rootfs: fix base-apt.list cleanup
@ 2025-02-19 19:50 Vidyasagar G C
  2025-02-27  7:49 ` Uladzimir Bely
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Vidyasagar G C @ 2025-02-19 19:50 UTC (permalink / raw)
  To: isar-users; +Cc: cedric.hombourger, shrikant.bobade, Vidyasagar G C

Ensure proper removal of all files matching *base-apt.list by
removing incorrect quoting, which prevented wildcard expansion.

Signed-off-by: Vidyasagar G C <vidyasagar.gc@siemens.com>
---
 meta/classes/rootfs.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/rootfs.bbclass b/meta/classes/rootfs.bbclass
index 205da640..2348e269 100644
--- a/meta/classes/rootfs.bbclass
+++ b/meta/classes/rootfs.bbclass
@@ -368,7 +368,7 @@ rootfs_cleanup_base_apt[weight] = "2"
 rootfs_cleanup_base_apt() {
     sudo -s <<'EOSUDO'
         set -e
-        rm -f "${ROOTFSDIR}/etc/apt/sources.list.d/*base-apt.list"
+        rm -f "${ROOTFSDIR}/etc/apt/sources.list.d/"*base-apt.list
 EOSUDO
 }
 
-- 
2.39.5

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20250219195046.15038-1-vidyasagar.gc%40siemens.com.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-03-13  4:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-19 19:50 [PATCH] rootfs: fix base-apt.list cleanup Vidyasagar G C
2025-02-27  7:49 ` Uladzimir Bely
2025-02-27 16:10 ` 'MOESSBAUER, Felix' via isar-users
2025-03-03 11:42 ` [PATCH v2 1/3] " Vidyasagar G C
2025-03-03 15:31   ` 'MOESSBAUER, Felix' via isar-users
2025-03-04  6:59 ` [PATCH v2 3/3] fix(rootfs): cleanup leftover 0000bootstrap.list Vidyasagar G C
2025-03-13  4:38   ` Uladzimir Bely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox