mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
101 lines
2.7 KiB
Nix
101 lines
2.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.autofs;
|
|
|
|
autoMaster = pkgs.writeText "auto.master" cfg.autoMaster;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.autofs = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Mount filesystems on demand. Unmount them automatically.
|
|
You may also be interested in afuse.
|
|
'';
|
|
};
|
|
|
|
autoMaster = mkOption {
|
|
type = types.str;
|
|
example = literalExpression ''
|
|
let
|
|
mapConf = pkgs.writeText "auto" '''
|
|
kernel -ro,soft,intr ftp.kernel.org:/pub/linux
|
|
boot -fstype=ext2 :/dev/hda1
|
|
windoze -fstype=smbfs ://windoze/c
|
|
removable -fstype=ext2 :/dev/hdd
|
|
cd -fstype=iso9660,ro :/dev/hdc
|
|
floppy -fstype=auto :/dev/fd0
|
|
server -rw,hard,intr / -ro myserver.me.org:/ \
|
|
/usr myserver.me.org:/usr \
|
|
/home myserver.me.org:/home
|
|
''';
|
|
in '''
|
|
/auto file:''${mapConf}
|
|
'''
|
|
'';
|
|
description = lib.mdDoc ''
|
|
Contents of `/etc/auto.master` file. See {command}`auto.master(5)` and {command}`autofs(5)`.
|
|
'';
|
|
};
|
|
|
|
timeout = mkOption {
|
|
type = types.int;
|
|
default = 600;
|
|
description = lib.mdDoc "Set the global minimum timeout, in seconds, until directories are unmounted";
|
|
};
|
|
|
|
debug = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Pass -d and -7 to automount and write log to the system journal.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
boot.kernelModules = [ "autofs4" ];
|
|
|
|
systemd.services.autofs =
|
|
{ description = "Automounts filesystems on demand";
|
|
after = [ "network.target" "ypbind.service" "sssd.service" "network-online.target" ];
|
|
wants = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
|
# There should be only one autofs service managed by systemd, so this should be safe.
|
|
rm -f /tmp/autofs-running
|
|
'';
|
|
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
PIDFile = "/run/autofs.pid";
|
|
ExecStart = "${pkgs.autofs5}/bin/automount ${optionalString cfg.debug "-d"} -p /run/autofs.pid -t ${builtins.toString cfg.timeout} ${autoMaster}";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|