diff options
Diffstat (limited to 'share/hooks/live/0020-create-mtab-symlink.hook.chroot')
-rwxr-xr-x | share/hooks/live/0020-create-mtab-symlink.hook.chroot | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/share/hooks/live/0020-create-mtab-symlink.hook.chroot b/share/hooks/live/0020-create-mtab-symlink.hook.chroot deleted file mode 100755 index 5c2fa64ae..000000000 --- a/share/hooks/live/0020-create-mtab-symlink.hook.chroot +++ /dev/null @@ -1,11 +0,0 @@ -#!/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 |