2009-10-12 16:36:19 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-05-27 23:14:38 +00:00
|
|
|
let
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
fileSystems = config.fileSystems;
|
|
|
|
mount = config.system.sbin.mount;
|
|
|
|
|
|
|
|
task =
|
|
|
|
''
|
|
|
|
PATH=${pkgs.e2fsprogs}/sbin:${pkgs.utillinuxng}/sbin:$PATH
|
|
|
|
|
|
|
|
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=
|
|
|
|
|
2009-10-27 10:45:18 +00:00
|
|
|
${flip concatMapStrings fileSystems (fs: ''
|
2009-10-30 08:49:35 +00:00
|
|
|
for dummy in x; do # make `continue' work
|
2009-10-22 07:46:30 +00:00
|
|
|
mountPoint='${fs.mountPoint}'
|
|
|
|
device='${if fs.device != null then fs.device else "/dev/disk/by-label/${fs.label}"}'
|
|
|
|
fsType='${fs.fsType}'
|
|
|
|
|
|
|
|
# A device is a pseudo-device (i.e. not an actual device
|
|
|
|
# node) if it's not an absolute path (e.g. an NFS server
|
|
|
|
# such as machine:/path), if it starts with // (a CIFS FS),
|
|
|
|
# a known pseudo filesystem (such as tmpfs), or the device
|
|
|
|
# is a directory (e.g. a bind mount).
|
|
|
|
isPseudo=
|
|
|
|
test "''${device:0:1}" != / -o "''${device:0:2}" = // -o "$fsType" = "tmpfs" \
|
|
|
|
-o -d "$device" && isPseudo=1
|
|
|
|
|
|
|
|
if ! test -n "$isPseudo" -o -e "$device"; then
|
|
|
|
echo "skipping $device, doesn't exist (yet)"
|
|
|
|
continue
|
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
# !!! quick hack: if the mount point is already mounted, try
|
|
|
|
# a remount to change the options but nothing else.
|
|
|
|
if cat /proc/mounts | grep -F -q " $mountPoint "; then
|
|
|
|
if test "''${device:0:2}" != //; then
|
|
|
|
echo "remounting $device on $mountPoint"
|
|
|
|
${mount}/bin/mount -t "$fsType" \
|
|
|
|
-o remount,"${fs.options}" \
|
|
|
|
"$device" "$mountPoint" || true
|
|
|
|
fi
|
|
|
|
continue
|
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +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.
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
if test -z "$isPseudo"; then
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
device=$(readlink -f "$device")
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
prevMountPoint=$(
|
|
|
|
cat /etc/mtab \
|
|
|
|
| grep "^$device " \
|
|
|
|
| sed 's|^[^ ]\+ \+\([^ ]\+\).*|\1|' \
|
|
|
|
)
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
if test "$prevMountPoint" = "$mountPoint"; then
|
|
|
|
echo "remounting $device on $mountPoint"
|
|
|
|
${mount}/bin/mount -t "$fsType" \
|
|
|
|
-o remount,"${fs.options}" \
|
|
|
|
"$device" "$mountPoint" || true
|
|
|
|
continue
|
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
if test -n "$prevMountPoint"; then
|
|
|
|
echo "unmount $device from $prevMountPoint"
|
|
|
|
${mount}/bin/umount "$prevMountPoint" || true
|
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
echo "mounting $device on $mountPoint"
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
# !!! should do something with the result; also prevent repeated fscks.
|
|
|
|
if test -z "$isPseudo"; then
|
|
|
|
fsck -a "$device" || true
|
|
|
|
fi
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-22 07:46:30 +00:00
|
|
|
${optionalString fs.autocreate
|
|
|
|
''
|
|
|
|
mkdir -p "$mountPoint"
|
|
|
|
''
|
|
|
|
}
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-30 08:49:35 +00:00
|
|
|
if ${mount}/bin/mount -t "$fsType" -o "${fs.options}" "$device" "$mountPoint"; then
|
2009-10-22 07:46:30 +00:00
|
|
|
newDevices=1
|
|
|
|
fi
|
2009-10-27 10:45:18 +00:00
|
|
|
done
|
|
|
|
'')}
|
2009-10-12 16:36:19 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2009-06-11 16:03:57 +00:00
|
|
|
fileSystems = mkOption {
|
2009-05-27 23:14:38 +00:00
|
|
|
example = [
|
|
|
|
{ mountPoint = "/";
|
|
|
|
device = "/dev/hda1";
|
|
|
|
}
|
|
|
|
{ mountPoint = "/data";
|
|
|
|
device = "/dev/hda2";
|
|
|
|
fsType = "ext3";
|
|
|
|
options = "data=journal";
|
|
|
|
}
|
|
|
|
{ mountPoint = "/bigdisk";
|
|
|
|
label = "bigdisk";
|
|
|
|
}
|
|
|
|
];
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-05-27 23:14:38 +00:00
|
|
|
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> .
|
|
|
|
";
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-06-11 16:03:57 +00:00
|
|
|
type = types.nullOr (types.list types.optionSet);
|
|
|
|
|
2009-07-15 13:41:00 +00:00
|
|
|
options = {
|
2009-06-11 16:03:57 +00:00
|
|
|
|
|
|
|
mountPoint = mkOption {
|
|
|
|
example = "/mnt/usb";
|
|
|
|
type = types.uniq types.string;
|
|
|
|
description = "
|
|
|
|
Location of the mounted the file system.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
device = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = "/dev/sda";
|
|
|
|
type = types.uniq (types.nullOr types.string);
|
|
|
|
description = "
|
|
|
|
Location of the device.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
label = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = "root-partition";
|
|
|
|
type = types.uniq (types.nullOr types.string);
|
|
|
|
description = "
|
|
|
|
Label of the device (if any).
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
fsType = mkOption {
|
|
|
|
default = "auto";
|
|
|
|
example = "ext3";
|
|
|
|
type = types.uniq types.string;
|
|
|
|
description = "
|
|
|
|
Type of the file system.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
options = mkOption {
|
2009-07-14 12:07:17 +00:00
|
|
|
default = "defaults,relatime";
|
2009-06-11 16:03:57 +00:00
|
|
|
example = "data=journal";
|
|
|
|
type = types.string;
|
|
|
|
merge = pkgs.lib.concatStringsSep ",";
|
|
|
|
description = "
|
|
|
|
Option used to mount the file system.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
autocreate = mkOption {
|
2009-06-14 11:07:44 +00:00
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
2009-06-11 16:03:57 +00:00
|
|
|
description = "
|
|
|
|
Automatically create the mount point defined in
|
|
|
|
<option>fileSystems.*.mountPoint</option>.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
};
|
2009-05-27 23:14:38 +00:00
|
|
|
};
|
|
|
|
|
2009-06-11 16:03:57 +00:00
|
|
|
system.sbin.mount = mkOption {
|
2009-05-27 23:14:38 +00:00
|
|
|
internal = true;
|
2009-08-11 21:10:33 +00:00
|
|
|
default = pkgs.utillinuxng;
|
2009-05-27 23:14:38 +00:00
|
|
|
description = "
|
2009-08-11 21:10:33 +00:00
|
|
|
Package containing mount and umount.
|
2009-05-27 23:14:38 +00:00
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### implementation
|
2009-05-27 23:14:38 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
config = {
|
2009-05-27 23:14:38 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
# Add the mount helpers to the system path so that `mount' can find them.
|
2010-06-03 14:32:23 +00:00
|
|
|
environment.systemPackages = [pkgs.ntfs3g pkgs.cifs_utils pkgs.nfsUtils];
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2009-10-12 18:09:34 +00:00
|
|
|
jobs.filesystems =
|
2010-01-10 18:23:13 +00:00
|
|
|
{ startOn = [ "new-devices" "ip-up" ];
|
2009-05-27 23:14:38 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
script = task;
|
2009-05-27 23:14:38 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
task = true;
|
|
|
|
};
|
2006-12-21 14:22:40 +00:00
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
};
|
2009-08-11 21:10:33 +00:00
|
|
|
|
2006-12-21 14:22:40 +00:00
|
|
|
}
|