Parses AFS configuration file CellAlias
Author: Pat Riehecky rieh@fnal .gov ecky
AFS_cellalias | Parses AFS configuration file CellAlias |
Reference | This lens is targeted at the OpenAFS CellAlias file |
Lens Usage | Sample usage of this lens in augtool |
License | This file is licensed under the LGPL v2+, like the rest of Augeas. |
USEFUL PRIMITIVES | |
Comments and empty lines | |
eol | |
comment | |
empty | |
separators | |
space | Separation between key and value |
ENTRIES | |
entry | |
lns |
let eol = Util.eol
let comment = Util.comment
let empty = Util.empty
Separation between key and value
let space = Util.del_ws_spc
let entry = [ label "target" . store target . space . [ label "linkname" . store linkname . eol ] ]
let lns = (empty | comment | entry)*