File size: 178 Bytes
e808781
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
maybe_create_mtab ()
{
  local MTAB="${SYSCONFDIR}/mtab"
  # Create /etc/mtab as symlink to /proc/mounts
  [ ! -L "${MTAB}" ] && ln -sf /proc/mounts ${MTAB}
}

maybe_create_mtab