Skip to content

Commit

Permalink
autofs service: fix the manual
Browse files Browse the repository at this point in the history
Fixes #27202.
  • Loading branch information
abbradar committed Jul 26, 2017
1 parent 4a787b2 commit 358abce
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions nixos/modules/services/misc/autofs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ in

enable = mkOption {
default = false;
description = "
description = ''
Mount filesystems on demand. Unmount them automatically.
You may also be interested in afuse.
";
'';
};

autoMaster = mkOption {
Expand All @@ -45,10 +45,9 @@ in
/auto file:''${mapConf}
'''
'';
description = "
file contents of /etc/auto.master. See man auto.master
See man 5 auto.master and man 5 autofs.
";
description = ''
Contents of <literal>/etc/auto.master</literal> file. See <command>auto.master(5)</command> and <command>autofs(5)</command>.
'';
};

timeout = mkOption {
Expand All @@ -58,9 +57,9 @@ in

debug = mkOption {
default = false;
description = "
pass -d and -7 to automount and write log to /var/log/autofs
";
description = ''
Pass -d and -7 to automount and write log to the system journal.
'';
};

};
Expand Down

0 comments on commit 358abce

Please sign in to comment.