mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
lib.mount.filesystem: don't mount if already mounted
This commit is contained in:
parent
348d4f164f
commit
107a37f527
1 changed files with 4 additions and 2 deletions
|
|
@ -82,8 +82,10 @@ let {
|
|||
|
||||
mount.filesystem = q: x: {
|
||||
fs.${x.mountpoint} = ''
|
||||
mkdir -p ${x.mountpoint}
|
||||
mount ${q.device} ${x.mountpoint}
|
||||
if ! [ "$(mount | sed -n 's:\([^ ]\+\) on ${x.mountpoint} .*:\1:p')" = ${q.device} ]; then
|
||||
mkdir -p ${x.mountpoint}
|
||||
mount ${q.device} ${x.mountpoint}
|
||||
fi
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue