2014-05-01 15:40:11 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2014-06-18 13:00:40 +00:00
|
|
|
# Create /etc/mtab symlink, replacing a regular file if necessary
|
2014-05-01 15:40:11 +00:00
|
|
|
|
|
|
|
if [ ! -L /etc/mtab ]
|
|
|
|
then
|
2014-06-18 13:00:40 +00:00
|
|
|
rm -f /etc/mtab
|
2014-08-22 15:11:30 +00:00
|
|
|
ln -s /proc/mounts /etc/mtab
|
2014-05-01 15:40:11 +00:00
|
|
|
fi
|