2008-08-09 12:03:08 +00:00
|
|
|
{utillinux, e2fsprogs, fileSystems, mount}:
|
2006-12-21 14:22:40 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
# !!! use XML
|
|
|
|
mountPoints = map (fs: fs.mountPoint) fileSystems;
|
2007-01-10 13:58:48 +00:00
|
|
|
devices = map (fs: if fs ? device then fs.device else "LABEL=" + fs.label) fileSystems;
|
2006-12-21 14:44:22 +00:00
|
|
|
fsTypes = map (fs: if fs ? fsType then fs.fsType else "auto") fileSystems;
|
|
|
|
optionss = map (fs: if fs ? options then fs.options else "defaults") fileSystems;
|
2007-12-31 08:55:40 +00:00
|
|
|
autocreates = map (fs: if fs ? autocreate then fs.autocreate else "0") fileSystems;
|
2006-12-21 14:22:40 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "filesystems";
|
|
|
|
|
|
|
|
job = "
|
|
|
|
start on startup
|
|
|
|
start on new-devices
|
2007-01-10 17:07:21 +00:00
|
|
|
start on ip-up
|
2006-12-21 14:22:40 +00:00
|
|
|
|
|
|
|
script
|
2006-12-21 20:08:15 +00:00
|
|
|
PATH=${e2fsprogs}/sbin:$PATH
|
|
|
|
|
2006-12-21 14:22:40 +00:00
|
|
|
mountPoints=(${toString mountPoints})
|
|
|
|
devices=(${toString devices})
|
2006-12-21 14:44:22 +00:00
|
|
|
fsTypes=(${toString fsTypes})
|
|
|
|
optionss=(${toString optionss})
|
2007-12-31 08:55:40 +00:00
|
|
|
autocreates=(${toString autocreates})
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2006-12-21 18:10:33 +00:00
|
|
|
newDevices=1
|
|
|
|
|
|
|
|
# If we mount any file system, we repeat this loop, because new
|
|
|
|
# mount opportunities may have become available (such as images
|
|
|
|
# for loopback mounts).
|
|
|
|
|
|
|
|
while test -n \"$newDevices\"; do
|
|
|
|
|
|
|
|
newDevices=
|
|
|
|
|
|
|
|
for ((n = 0; n < \${#mountPoints[*]}; n++)); do
|
|
|
|
mountPoint=\${mountPoints[$n]}
|
|
|
|
device=\${devices[$n]}
|
|
|
|
fsType=\${fsTypes[$n]}
|
|
|
|
options=\${optionss[$n]}
|
2007-12-31 08:55:40 +00:00
|
|
|
autocreate=\${autocreates[$n]}
|
2006-12-21 18:10:33 +00:00
|
|
|
|
2007-01-09 16:29:27 +00:00
|
|
|
isLabel=
|
|
|
|
if echo \"$device\" | grep -q '^LABEL='; then isLabel=1; fi
|
|
|
|
|
2007-01-10 14:34:31 +00:00
|
|
|
isPseudo=
|
2007-12-31 08:55:40 +00:00
|
|
|
if test \"$fsType\" = \"nfs\" || test \"$fsType\" = \"tmpfs\" ||
|
2008-07-23 14:13:27 +00:00
|
|
|
test \"$fsType\" = \"ext3cow\"; then isPseudo=1; fi
|
2007-01-10 14:34:31 +00:00
|
|
|
|
|
|
|
if ! test -n \"$isLabel\" -o -n \"$isPseudo\" -o -e \"$device\"; then
|
2006-12-21 20:08:15 +00:00
|
|
|
echo \"skipping $device, doesn't exist (yet)\"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2007-02-08 15:24:13 +00:00
|
|
|
# !!! quick hack: if mount point already exists, try a
|
|
|
|
# remount to change the options but nothing else.
|
|
|
|
if cat /proc/mounts | grep -F -q \" $mountPoint \"; then
|
|
|
|
echo \"remounting $device on $mountPoint\"
|
2008-08-09 12:03:08 +00:00
|
|
|
${mount}/bin/mount -t \"$fsType\" \\
|
2007-02-08 15:24:13 +00:00
|
|
|
-o remount,\"$options\" \\
|
|
|
|
\"$device\" \"$mountPoint\" || true
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2006-12-21 18:10:33 +00:00
|
|
|
# If $device is already mounted somewhere else, unmount it first.
|
|
|
|
# !!! Note: we use /etc/mtab, not /proc/mounts, because mtab
|
|
|
|
# contains more accurate info when using loop devices.
|
|
|
|
|
2007-01-09 16:29:27 +00:00
|
|
|
# !!! not very smart about labels yet; should resolve the label somehow.
|
2007-01-10 14:34:31 +00:00
|
|
|
if test -z \"$isLabel\" -a -z \"$isPseudo\"; then
|
2007-01-09 16:29:27 +00:00
|
|
|
|
|
|
|
device=$(readlink -f \"$device\")
|
|
|
|
|
|
|
|
prevMountPoint=$(
|
|
|
|
cat /etc/mtab \\
|
|
|
|
| grep \"^$device \" \\
|
|
|
|
| sed 's|^[^ ]\\+ \\+\\([^ ]\\+\\).*|\\1|' \\
|
|
|
|
)
|
|
|
|
|
|
|
|
if test \"$prevMountPoint\" = \"$mountPoint\"; then
|
2007-02-08 15:24:13 +00:00
|
|
|
echo \"remounting $device on $mountPoint\"
|
2008-08-09 12:03:08 +00:00
|
|
|
${mount}/bin/mount -t \"$fsType\" \\
|
2007-02-08 15:24:13 +00:00
|
|
|
-o remount,\"$options\" \\
|
|
|
|
\"$device\" \"$mountPoint\" || true
|
|
|
|
continue
|
2007-01-09 16:29:27 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n \"$prevMountPoint\"; then
|
|
|
|
echo \"unmount $device from $prevMountPoint\"
|
2008-08-09 12:03:08 +00:00
|
|
|
${mount}/bin/umount \"$prevMountPoint\" || true
|
2007-01-09 16:29:27 +00:00
|
|
|
fi
|
|
|
|
|
2006-12-21 18:10:33 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo \"mounting $device on $mountPoint\"
|
|
|
|
|
2006-12-21 20:08:15 +00:00
|
|
|
# !!! should do something with the result; also prevent repeated fscks.
|
2007-01-10 14:34:31 +00:00
|
|
|
if test -z \"$isPseudo\"; then
|
|
|
|
fsck -a \"$device\" || true
|
|
|
|
fi
|
2006-12-21 20:08:15 +00:00
|
|
|
|
2007-12-31 08:55:40 +00:00
|
|
|
if test \"\$autocreate\" = 1; then mkdir -p \"\$mountPoint\"; fi
|
|
|
|
|
2008-08-09 12:03:08 +00:00
|
|
|
if ${mount}/bin/mount -t \"$fsType\" -o \"$options\" \"$device\" \"$mountPoint\"; then
|
2006-12-21 18:10:33 +00:00
|
|
|
newDevices=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
done
|
|
|
|
|
2006-12-21 14:22:40 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
end script
|
|
|
|
";
|
|
|
|
|
|
|
|
}
|