From 1dcf439c30bac6485965a0cd899de74db2f2ef39 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Mon, 3 Oct 2011 21:12:56 -0300 Subject: [archiso] Create /etc/mtab as symlink. This is now supported since util-linux pkg enable it. Signed-off-by: Gerardo Exequiel Pozzi --- archiso/mkarchiso | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archiso/mkarchiso') diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 6fb5d06..e434bb2 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -201,9 +201,9 @@ _cleanup () { if [[ -d "${work_dir}/root-image/tmp" ]]; then find "${work_dir}/root-image/tmp" -mindepth 1 -delete fi - # Delete etc/mtab if not is a symlink. + # Create etc/mtab if not is a symlink. if [[ ! -L "${work_dir}/root-image/etc/mtab" ]]; then - rm -f "${work_dir}/root-image/etc/mtab" + ln -sf "/proc/self/mounts" "${work_dir}/root-image/etc/mtab" fi } -- cgit v1.2.2