module Fstab: sig
.. end
Line structure for the file system table /etc/fstab
records. See fstab(5).
val file_system : Line.t -> string
The filesystem to mount. (accessor, required)
val set_file_system : string -> Line.t -> Line.t
val mount_point : Line.t -> string
The mount point for the filesystem. (accessor, required)
val set_mount_point : string -> Line.t -> Line.t
val fstype : Line.t -> string
The filesystem type (accessor, required)
val set_fstype : string -> Line.t -> Line.t
val options : Line.t -> string list
Mount options (e.g. ro, user, noauto) (accessor, required)
val set_options : string list -> Line.t -> Line.t
val dump : Line.t -> int
Used by dump(8) to determine which filesystem to dump. (accessor, required)
val set_dump : int -> Line.t -> Line.t
val pass : Line.t -> int
Pass on which to mount this filesystem (accessor, required)
val set_pass : int -> Line.t -> Line.t
val create : file_system:string ->
mount_point:string ->
fstype:string ->
options:string list -> dump:int -> pass:int -> Line.t -> Line.t