mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2024-12-04 11:20:35 -08:00
9 lines
178 B
Plaintext
9 lines
178 B
Plaintext
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
|