diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-22 22:53:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-23 02:02:06 +0200 |
commit | 4e469051a77d02435eafb1df93224a2ce1bb3146 (patch) | |
tree | e0bb010dec21062caf959ba0cfdb7cfe3e28dc12 /doc/guix.texi | |
parent | 5ac12a4f778f1cce8aff10fe3ef30be1a85e4647 (diff) | |
download | gnu-guix-4e469051a77d02435eafb1df93224a2ce1bb3146.tar gnu-guix-4e469051a77d02435eafb1df93224a2ce1bb3146.tar.gz |
system: Add 'create-mount-point?' file system option.
* gnu/system/file-systems.scm (<file-system>)[create-mount-point?]: New
field.
* gnu/services/base.scm (file-system-service): Add #:create-mount-point?
parameter and honor it.
* gnu/system.scm (other-file-system-services): Update
'file-system-service' call accordingly.
* doc/guix.texi (File Systems): Document it.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 2b05a75be4..a88b546380 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -3054,6 +3054,9 @@ instance, for the root file system. This Boolean indicates whether the file system needs to be checked for errors before being mounted. +@item @code{create-mount-point?} (default: @code{#f}) +When true, the mount point is created if it does not exist yet. + @end table @end deftp |