python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / autofs.nix
blob55ab15ff003d17370787cbc3d6f4fd09ff2930f2
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   cfg = config.services.autofs;
9   autoMaster = pkgs.writeText "auto.master" cfg.autoMaster;
15   ###### interface
17   options = {
19     services.autofs = {
21       enable = mkOption {
22         type = types.bool;
23         default = false;
24         description = lib.mdDoc ''
25           Mount filesystems on demand. Unmount them automatically.
26           You may also be interested in afuse.
27         '';
28       };
30       autoMaster = mkOption {
31         type = types.str;
32         example = literalExpression ''
33           let
34             mapConf = pkgs.writeText "auto" '''
35              kernel    -ro,soft,intr       ftp.kernel.org:/pub/linux
36              boot      -fstype=ext2        :/dev/hda1
37              windoze   -fstype=smbfs       ://windoze/c
38              removable -fstype=ext2        :/dev/hdd
39              cd        -fstype=iso9660,ro  :/dev/hdc
40              floppy    -fstype=auto        :/dev/fd0
41              server    -rw,hard,intr       / -ro myserver.me.org:/ \
42                                            /usr myserver.me.org:/usr \
43                                            /home myserver.me.org:/home
44             ''';
45           in '''
46             /auto file:''${mapConf}
47           '''
48         '';
49         description = lib.mdDoc ''
50           Contents of `/etc/auto.master` file. See {command}`auto.master(5)` and {command}`autofs(5)`.
51         '';
52       };
54       timeout = mkOption {
55         type = types.int;
56         default = 600;
57         description = lib.mdDoc "Set the global minimum timeout, in seconds, until directories are unmounted";
58       };
60       debug = mkOption {
61         type = types.bool;
62         default = false;
63         description = lib.mdDoc ''
64           Pass -d and -7 to automount and write log to the system journal.
65         '';
66       };
68     };
70   };
73   ###### implementation
75   config = mkIf cfg.enable {
77     boot.kernelModules = [ "autofs4" ];
79     systemd.services.autofs =
80       { description = "Automounts filesystems on demand";
81         after = [ "network.target" "ypbind.service" "sssd.service" "network-online.target" ];
82         wants = [ "network-online.target" ];
83         wantedBy = [ "multi-user.target" ];
85         preStart = ''
86           # There should be only one autofs service managed by systemd, so this should be safe.
87           rm -f /tmp/autofs-running
88         '';
90         serviceConfig = {
91           Type = "forking";
92           PIDFile = "/run/autofs.pid";
93           ExecStart = "${pkgs.autofs5}/bin/automount ${optionalString cfg.debug "-d"} -p /run/autofs.pid -t ${builtins.toString cfg.timeout} ${autoMaster}";
94           ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
95         };
96       };
98   };