From 047419e52503567da16478e8c611e987848b2b50 Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Mon, 1 Dec 2025 18:54:34 +0900 Subject: [PATCH] Temporarily only look at /etc/group --- build_files/cleanup.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build_files/cleanup.sh b/build_files/cleanup.sh index 25b0bc3..cfcca7b 100755 --- a/build_files/cleanup.sh +++ b/build_files/cleanup.sh @@ -15,13 +15,13 @@ cat /usr/lib/group ## Handle files that rpm-ostree would normally remove ## Borrowed from: https://github.com/hhd-dev/rechunk/blob/master/1_prune.sh#L33 -if [ -f /etc/passwd ]; then - echo - echo Appending the following passwd users to /usr/lib/passwd - out=$(grep -v "root" /etc/passwd) - echo "$out" - echo "$out" >>/usr/lib/passwd -fi +# if [ -f /etc/passwd ]; then +# echo +# echo Appending the following passwd users to /usr/lib/passwd +# out=$(grep -v "root" /etc/passwd) +# echo "$out" +# echo "$out" >>/usr/lib/passwd +# fi if [ -f /etc/group ]; then echo echo Appending the following group entries to /usr/lib/group