2009-03-06 12:27:33 +00:00
|
|
|
{pkgs, config, ...}:
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-05-27 23:14:38 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
fileSystems = pkgs.lib.mkOption {
|
|
|
|
example = [
|
|
|
|
{ mountPoint = "/";
|
|
|
|
device = "/dev/hda1";
|
|
|
|
}
|
|
|
|
{ mountPoint = "/data";
|
|
|
|
device = "/dev/hda2";
|
|
|
|
fsType = "ext3";
|
|
|
|
options = "data=journal";
|
|
|
|
}
|
|
|
|
{ mountPoint = "/bigdisk";
|
|
|
|
label = "bigdisk";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
The file systems to be mounted. It must include an entry for
|
|
|
|
the root directory (<literal>mountPoint = \"/\"</literal>). Each
|
|
|
|
entry in the list is an attribute set with the following fields:
|
|
|
|
<literal>mountPoint</literal>, <literal>device</literal>,
|
|
|
|
<literal>fsType</literal> (a file system type recognised by
|
|
|
|
<command>mount</command>; defaults to
|
|
|
|
<literal>\"auto\"</literal>), and <literal>options</literal>
|
|
|
|
(the mount options passed to <command>mount</command> using the
|
|
|
|
<option>-o</option> flag; defaults to <literal>\"defaults\"</literal>).
|
|
|
|
|
|
|
|
Instead of specifying <literal>device</literal>, you can also
|
|
|
|
specify a volume label (<literal>label</literal>) for file
|
|
|
|
systems that support it, such as ext2/ext3 (see <command>mke2fs
|
|
|
|
-L</command>).
|
|
|
|
|
|
|
|
<literal>autocreate</literal> forces <literal>mountPoint</literal> to be created with
|
|
|
|
<command>mkdir -p</command> .
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
system.sbin.mount = pkgs.lib.mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = pkgs.utillinuxng.override {
|
|
|
|
buildMountOnly = true;
|
|
|
|
mountHelpers = pkgs.buildEnv {
|
|
|
|
name = "mount-helpers";
|
|
|
|
paths = [
|
|
|
|
pkgs.ntfs3g
|
|
|
|
pkgs.mount_cifs
|
|
|
|
pkgs.nfsUtils
|
|
|
|
];
|
|
|
|
pathsToLink = "/sbin";
|
|
|
|
} + "/sbin";
|
|
|
|
};
|
|
|
|
description = "
|
|
|
|
A patched `mount' command that looks in a directory in the Nix
|
|
|
|
store instead of in /sbin for mount helpers (like mount.ntfs-3g or
|
|
|
|
mount.cifs).
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
###### implementation
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
inherit (pkgs) e2fsprogs;
|
|
|
|
fileSystems = config.fileSystems;
|
2009-05-27 23:14:38 +00:00
|
|
|
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;
|
2009-03-06 12:27:33 +00:00
|
|
|
mount = config.system.sbin.mount;
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
job = ''
|
2009-05-27 23:14:38 +00:00
|
|
|
start on startup
|
|
|
|
start on new-devices
|
|
|
|
start on ip-up
|
|
|
|
|
|
|
|
script
|
|
|
|
PATH=${e2fsprogs}/sbin:$PATH
|
|
|
|
|
|
|
|
mountPoints=(${toString mountPoints})
|
|
|
|
devices=(${toString devices})
|
|
|
|
fsTypes=(${toString fsTypes})
|
|
|
|
optionss=(${toString optionss})
|
|
|
|
autocreates=(${toString autocreates})
|
|
|
|
|
|
|
|
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]}
|
|
|
|
autocreate=''${autocreates[$n]}
|
|
|
|
|
|
|
|
isLabel=
|
|
|
|
if echo "$device" | grep -q '^LABEL='; then isLabel=1; fi
|
|
|
|
|
|
|
|
isPseudo=
|
|
|
|
if test "$fsType" = "nfs" || test "$fsType" = "tmpfs" ||
|
|
|
|
test "$fsType" = "ext3cow"; then isPseudo=1; fi
|
|
|
|
|
|
|
|
if ! test -n "$isLabel" -o -n "$isPseudo" -o -e "$device"; then
|
|
|
|
echo "skipping $device, doesn't exist (yet)"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# !!! 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
|
2009-03-06 12:27:33 +00:00
|
|
|
echo "remounting $device on $mountPoint"
|
|
|
|
${mount}/bin/mount -t "$fsType" \
|
|
|
|
-o remount,"$options" \
|
|
|
|
"$device" "$mountPoint" || true
|
|
|
|
continue
|
|
|
|
fi
|
2009-05-27 23:14:38 +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.
|
|
|
|
|
|
|
|
# !!! not very smart about labels yet; should resolve the label somehow.
|
|
|
|
if test -z "$isLabel" -a -z "$isPseudo"; then
|
|
|
|
|
|
|
|
device=$(readlink -f "$device")
|
|
|
|
|
|
|
|
prevMountPoint=$(
|
|
|
|
cat /etc/mtab \
|
|
|
|
| grep "^$device " \
|
|
|
|
| sed 's|^[^ ]\+ \+\([^ ]\+\).*|\1|' \
|
|
|
|
)
|
|
|
|
|
|
|
|
if test "$prevMountPoint" = "$mountPoint"; then
|
|
|
|
echo "remounting $device on $mountPoint"
|
|
|
|
${mount}/bin/mount -t "$fsType" \
|
|
|
|
-o remount,"$options" \
|
|
|
|
"$device" "$mountPoint" || true
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$prevMountPoint"; then
|
|
|
|
echo "unmount $device from $prevMountPoint"
|
|
|
|
${mount}/bin/umount "$prevMountPoint" || true
|
|
|
|
fi
|
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
fi
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
echo "mounting $device on $mountPoint"
|
|
|
|
|
|
|
|
# !!! should do something with the result; also prevent repeated fscks.
|
|
|
|
if test -z "$isPseudo"; then
|
|
|
|
fsck -a "$device" || true
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$autocreate" = 1; then mkdir -p "$mountPoint"; fi
|
|
|
|
|
|
|
|
if ${mount}/bin/mount -t "$fsType" -o "$options" "$device" "$mountPoint"; then
|
|
|
|
newDevices=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
done
|
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
done
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
end script
|
2009-03-06 12:27:33 +00:00
|
|
|
'';
|
|
|
|
in
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
{
|
2009-05-27 23:14:38 +00:00
|
|
|
require = [options];
|
2009-03-06 12:27:33 +00:00
|
|
|
services = {
|
|
|
|
extraJobs = [{
|
|
|
|
name = "filesystems";
|
|
|
|
inherit job;
|
|
|
|
}];
|
|
|
|
};
|
2006-12-21 14:22:40 +00:00
|
|
|
}
|