Codebase list live-build / debian/4.0.3-1 share / hooks / 0020-create-mtab-symlink.hook.chroot
debian/4.0.3-1

Tree @debian/4.0.3-1 (Download .tar.gz)

0020-create-mtab-symlink.hook.chroot @debian/4.0.3-1raw · history · blame

#!/bin/sh

set -e

# Create /etc/mtab symlink, replacing a regular file if necessary

if [ ! -L /etc/mtab ]
then
	rm -f /etc/mtab
	ln -s /proc/mounts /etc/mtab
fi