From 5744685eca5ee24ae719de8075777f4e09ad0a23 Mon Sep 17 00:00:00 2001 From: Wentao Zhang Date: Wed, 26 Oct 2022 13:18:32 +0800 Subject: [PATCH] Debian: fix the bug of getting the dev's fd Some pipe files are generated when assigning variables and getting the process's fd, and are removed when done. Since the pipe's fd is not the dev's fd, filter out the pipe fd. Test Plan: PASS: qemu iso installed successful PASS: lab iso installed successful Closes-Bug: 1991816 Signed-off-by: Wentao Zhang Change-Id: Icfdd4922dcc7e3c2e5003296c90519f8b7624d88 --- kickstart/files/kickstart.cfg | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/kickstart/files/kickstart.cfg b/kickstart/files/kickstart.cfg index ef489e76..ef11e5e6 100644 --- a/kickstart/files/kickstart.cfg +++ b/kickstart/files/kickstart.cfg @@ -805,7 +805,15 @@ export prefix="" # Assume there is no Platform Backup (persistent) Partition export BACKUP_PART_FOUND=0 -export STOR_DEV_FDS="$(ls -1 /proc/$$/fd | egrep -v "^(0|1|2|255)$" | xargs)" +export STOR_DEV_FDS="" + +export PROC_SELF_FDS="$(ls -1 /proc/$$/fd | egrep -v "^(0|1|2|255)$" | xargs)" +for fd in ${PROC_SELF_FDS}; do + export realpath=$(readlink -f /proc/$$/fd/"${fd}") + if [ -e "${realpath}" ]; then + STOR_DEV_FDS="${STOR_DEV_FDS} ${fd}" + fi +done ########################################################################## # Local Kickstart variables #