fix(steps-guix): initialize /proc and mtab before delegating finalize_fhs

This commit is contained in:
vxtls 2026-02-24 11:53:39 -05:00
parent 685f8aefa2
commit 3bea5b5ce6

View file

@ -2,4 +2,10 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
mkdir -p /proc /etc
if [ ! -r /proc/mounts ]; then
mount -t proc proc /proc
fi
ln -snf /proc/mounts /etc/mtab
exec /steps/improve/finalize_fhs.sh