mount: prefix with /mnt

This commit is contained in:
lassulus 2018-08-05 11:44:34 +02:00
parent 107a37f527
commit fab04d2a5e

View File

@ -82,9 +82,9 @@ let {
mount.filesystem = q: x: {
fs.${x.mountpoint} = ''
if ! [ "$(mount | sed -n 's:\([^ ]\+\) on ${x.mountpoint} .*:\1:p')" = ${q.device} ]; then
mkdir -p ${x.mountpoint}
mount ${q.device} ${x.mountpoint}
if ! [ "$(mount | sed -n 's:\([^ ]\+\) on /mnt${x.mountpoint} .*:\1:p')" = ${q.device} ]; then
mkdir -p /mnt${x.mountpoint}
mount ${q.device} /mnt${x.mountpoint}
fi
'';
};